Note
Go to the end to download the full example code.
Dusty wave SPH test#
Test that the dust/gas wave evolution match the eigen mode analysis.
9 import os
10
11 import matplotlib as mpl
12 import matplotlib.pyplot as plt
13 import numpy as np
14
15 import shamrock
16
17 shamrock.enable_experimental_features()
18
19 # If we use the shamrock executable to run this script instead of the python interpreter,
20 # we should not initialize the system as the shamrock executable needs to handle specific MPI logic
21 if not shamrock.sys.is_initialized():
22 shamrock.change_loglevel(1)
23 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
28 rho = 1
29 epsilon_0 = 0.5
30 cs_g_list = np.logspace(-4, -1, 3).tolist()
31 ts = 1
32
33 ampl_perturbation = 0.001
34 plot_scaling = 1e3
35 label_scaling = "10^3 \\cdot"
36 delta_v_0_list = [cs * ampl_perturbation for cs in cs_g_list]
37
38 lx = int(os.environ.get("LZ", "18"))
39 ly = 12
40 lz = 12
Use shamrock documentation style for matplotlib
44 shamrock.matplotlib.set_shamrock_mpl_style()
Do setup
50 lmin = (-(lx // 2), -(ly // 2), -(lz // 2))
51 lmax = (lx // 2, ly // 2, lz // 2)
52
53 # Call with dr = 1 as we will rescale on next call
54 (xm, ym, zm), (xM, yM, zM) = shamrock.math.get_periodic_hcp_box(1.0, lmin, lmax)
55 print(f"base lattice : xM = {xM}, yM = {yM}, zM = {zM}")
56 dr = 1.0 / (xM - xm)
57 print(f"dr = {dr}")
58 bmin, bmax = shamrock.math.get_periodic_hcp_box(dr, lmin, lmax)
59 print(f"new lattice : bmin = {bmin}, bmax = {bmax}")
60 xm, ym, zm = bmin
61 xM, yM, zM = bmax
62
63 vol_b = (xM - xm) * (yM - ym) * (zM - zm)
64 totmass = rho * vol_b
65
66
67 def do_setup(model, cs, delta_v_0):
68
69 cfg = model.gen_default_config()
70 # cfg.set_artif_viscosity_Constant(alpha_u = 1, alpha_AV = 1, beta_AV = 2)
71 # cfg.set_artif_viscosity_VaryingMM97(alpha_min = 0.1,alpha_max = 1,sigma_decay = 0.1, alpha_u = 1, beta_AV = 2)
72 cfg.set_artif_viscosity_VaryingCD10(
73 alpha_min=0.0, alpha_max=1, sigma_decay=0.1, alpha_u=1, beta_AV=2
74 )
75 cfg.set_dust_mode_monofluid_tva(nvar=1)
76 cfg.set_dust_drag_constant([ts])
77 cfg.set_boundary_periodic()
78 cfg.set_eos_isothermal(cs)
79 cfg.print_status()
80 model.set_solver_config(cfg)
81
82 scheduler_split_val = int(2e7)
83 scheduler_merge_val = 1
84
85 model.init_scheduler(scheduler_split_val, scheduler_merge_val)
86
87 model.resize_simulation_box(bmin, bmax)
88
89 setup = model.get_setup()
90 gen = setup.make_generator_lattice_hcp(dr, bmin, bmax)
91 setup.apply_setup(gen, insert_step=scheduler_split_val)
92
93 def func_s(r):
94 return np.sqrt(rho * epsilon_0)
95
96 model.set_field_value_lambda_f64("s_j", func_s, 0)
97
98 print(delta_v_0)
99
100 def vel_func(r):
101 global mm, MM
102 x, y, z = r
103
104 f = 2 * np.pi / (xM - xm)
105
106 vel = delta_v_0 * np.sin(x * f)
107
108 return (vel, 0.0, 0.0)
109
110 model.set_field_value_lambda_f64_3("vxyz", vel_func)
111
112 pmass = model.total_mass_to_part_mass(totmass)
113 model.set_particle_mass(pmass)
114
115 model.set_cfl_cour(0.1)
116 model.set_cfl_force(0.1)
117
118 model.timestep()
base lattice : xM = 18.0, yM = 10.392304845413264, zM = 9.797958971132712
dr = 0.027777777777777776
new lattice : bmin = (-0.5, -0.28867513459481287, -0.2721655269759086), bmax = (0.5, 0.28867513459481287, 0.2721655269759086)
Field recovery for plots
123 def get_field_results(model):
124 def custom_getter_x(size: int, dic_out: dict) -> np.array:
125 return dic_out["xyz"][:, 0]
126
127 def custom_getter_vx(size: int, dic_out: dict) -> np.array:
128 return dic_out["vxyz"][:, 0]
129
130 x_field = model.compute_field("custom", "f64", custom_getter_x)
131 vx_field = model.compute_field("custom", "f64", custom_getter_vx)
132 rho_field = model.compute_field("rho", "f64")
133 s_j_field = model.compute_field("s_j", "f64")
134
135 def internal_eps(size: int, s: np.array, rho: np.array) -> np.array:
136 return (s**2) / rho
137
138 eps_field = shamrock.map_fields_f64(internal_eps, s=s_j_field, rho=rho_field)
139
140 def internal_rho_g(size: int, rho: np.array, eps: np.array) -> np.array:
141 return rho * (1 - eps)
142
143 def internal_rho_d(size: int, rho: np.array, eps: np.array) -> np.array:
144 return rho * eps
145
146 rho_g_field = shamrock.map_fields_f64(internal_rho_g, rho=rho_field, eps=eps_field)
147 rho_d_field = shamrock.map_fields_f64(internal_rho_d, rho=rho_field, eps=eps_field)
148
149 x_data = np.asarray(x_field.collect_data())
150 vx_data = np.asarray(vx_field.collect_data())
151 eps_data = np.asarray(eps_field.collect_data())
152 rho_data = np.asarray(rho_field.collect_data())
153 rho_g_data = np.asarray(rho_g_field.collect_data())
154 rho_d_data = np.asarray(rho_d_field.collect_data())
155 return x_data, rho_data, rho_g_data, rho_d_data, vx_data, eps_data
Analytics
162 def dustywave_tva_matrix(k, cs, ts, eps):
163 a = k * cs
164 b = k * k * ts * cs * cs * eps
165
166 return np.array(
167 [
168 [0, 0, -1j * a],
169 [b * (1 - eps), -b, 0],
170 [-1j * a * (1 - eps), 1j * a, 0],
171 ],
172 dtype=complex,
173 )
174
175
176 def eigensystem_dustywave_tva(k, cs, ts, eps):
177 M = dustywave_tva_matrix(k, cs, ts, eps)
178 vals, vecs = np.linalg.eig(M)
179 return 1j * vals, vecs
180
181
182 def dustywave_dispersion_relation(omega_k: float, k: float, cs: float, ts: float, eps: float):
183 # w^4 + i w^3 / ts - cs^2 k^2 w^2 - i cs^2 k^2 (1-eps) w / ts = 0
184 return (
185 omega_k**4
186 + 1j * (omega_k**3 / ts)
187 - (cs**2 * k**2 * omega_k**2)
188 - 1j * (cs**2 * k**2 * (1 - eps) * omega_k / ts)
189 )
190
191
192 def get_dustywave_omega_k(k: float, cs: float, ts: float, eps: float) -> np.ndarray:
193 # w^4 + i w^3/ts - cs^2 k^2 w^2 - i cs^2 k^2 (1-eps) w/ts = 0
194 coeffs = [
195 1.0,
196 1j / ts,
197 -(cs**2 * k**2),
198 -1j * (cs**2 * k**2 * (1.0 - eps) / ts),
199 0.0,
200 ]
201 return np.roots(coeffs)
202
203
204 def eigen_model(x, t, offset, ampl, omega, k):
205 return offset + np.real(ampl * np.exp(1j * (k * x - omega * t)))
206
207
208 def project_eigenmode(
209 eigenvec: complex, eigenval: complex, rho_on_rho_0: complex, eps: complex, v_on_cs: complex
210 ):
211 v = np.array([rho_on_rho_0, eps, v_on_cs], dtype=complex)
212 print(f"eigenvec={eigenvec}")
213 print(f"v={v}")
214
215 c = np.linalg.solve(eigenvec, v)
216
217 print(f"c={c}")
218 return c
219
220
221 def find_eigen_decomp(x_data, rho_data, eps_data, vx_data, eigval, eigvec):
222
223 offset_rho, ampl_rho, phi_rho = fit_sine_wave(x_data, rho_data)
224 offset_eps, ampl_eps, phi_eps = fit_sine_wave(x_data, eps_data)
225 offset_vx, ampl_vx, phi_vx = fit_sine_wave(x_data, vx_data)
226
227 print(f"offset_rho={offset_rho:.6g}, ampl_rho={ampl_rho:.6g}, phi_rho={phi_rho:.6g} rad")
228 print(f"offset_eps={offset_eps:.6g}, ampl_eps={ampl_eps:.6g}, phi_eps={phi_eps:.6g} rad")
229 print(f"offset_vx={offset_vx:.6g}, ampl_vx={ampl_vx:.6g}, phi_vx={phi_vx:.6g} rad")
230
231 print(f"eigenval = {eigval}")
232 print(f"eigenvec = {eigvec}")
233
234 coefs = project_eigenmode(eigvec, eigval, ampl_rho / rho, ampl_eps, -1j * ampl_vx / cs)
235 print(f"coefs={coefs}")
236
237 return coefs
Curve fitting
242 from scipy.linalg import lstsq
243 from scipy.optimize import curve_fit
244
245
246 def fit_sine_wave(x, y, prev_phi=None):
247 offset = np.mean(y)
248 y0 = y - offset
249
250 z = np.exp(1j * k * x)
251
252 lam = np.vdot(z, y0) / np.vdot(z, z)
253
254 ampl = 2 * np.abs(lam)
255 phi = np.angle(lam)
256
257 # enforce continuity with previous phase if available
258 if prev_phi is not None:
259 # candidate 1
260 phi1 = phi
261 a1 = ampl
262
263 # candidate 2 (flip sign via phase shift)
264 phi2 = phi + np.pi
265 a2 = -ampl
266
267 # choose whichever is closer to previous phase
268 if abs(np.angle(np.exp(1j * (phi1 - prev_phi)))) > abs(
269 np.angle(np.exp(1j * (phi2 - prev_phi)))
270 ):
271 phi, ampl = phi2, a2
272
273 # wrap phase
274 phi = np.mod(phi, 2 * np.pi)
275
276 return offset, ampl, phi
Perform the simulation
282 all_case_plot = []
283
284 for ics, cs in enumerate(cs_g_list):
285 ctx = shamrock.Context()
286 ctx.pdata_layout_new()
287
288 model = shamrock.get_Model_SPH(context=ctx, vector_type="f64_3", sph_kernel="M6")
289 do_setup(model, cs, delta_v_0_list[ics])
290
291 k = 2 * np.pi / (xM - xm)
292
293 # Compute Omega
294 omega_k = get_dustywave_omega_k(k, cs, ts, epsilon_0)
295 print(omega_k)
296
297 print(f"k={k} cs={cs} ts={ts} epsilon_0={epsilon_0}")
298 eigval, eigvec = eigensystem_dustywave_tva(k, cs, ts, epsilon_0)
299
300 print(f"eigenval = {eigval}")
301 print(f"eigenvec = {eigvec}")
302
303 Twave = 2 * np.pi / np.max(np.abs(np.real(eigval)))
304 print(Twave)
305
306 Twave_cnt = 40
307 nwave = 2.0
308
309 t_list = []
310 rho_t_list = []
311 eps_t_list = []
312 vx_t_list = []
313 rho_t_list_analytic = []
314 eps_t_list_analytic = []
315 vx_t_list_analytic = []
316
317 rho_last_phi = np.pi
318 eps_last_phi = 0
319 vx_last_phi = 3 * np.pi / 2
320
321 os.makedirs("_to_trash", exist_ok=True)
322 for i in range(int(Twave_cnt * nwave)):
323 t = Twave * i / (Twave_cnt)
324 model.evolve_until(t)
325
326 x_data, rho_data, rho_g_data, rho_d_data, vx_data, eps_data = get_field_results(model)
327
328 x_ana = np.linspace(xm, xM, 256)
329
330 if i == 0:
331 coefs = find_eigen_decomp(x_data, rho_data, eps_data, vx_data, eigval, eigvec)
332 print(f"coefs={coefs}")
333
334 decomp = np.array(eigvec[0] * 0)
335 for ieig in range(len(eigval)):
336 decomp += coefs[ieig] * eigvec[:, ieig]
337 print(f"decomp={decomp}")
338
339 model_rho_on_rho_0 = np.zeros_like(x_ana, dtype=complex)
340 model_eps = np.zeros_like(x_ana, dtype=complex)
341 model_vx_on_cs = np.zeros_like(x_ana, dtype=complex)
342
343 for ieig in range(len(eigval)):
344 model_rho_on_rho_0 += eigen_model(
345 x_ana, model.get_time(), 0.0, coefs[ieig] * eigvec[0, ieig], eigval[ieig], k
346 )
347 model_eps += eigen_model(
348 x_ana, model.get_time(), 0.0, coefs[ieig] * eigvec[1, ieig], eigval[ieig], k
349 )
350 model_vx_on_cs += eigen_model(
351 x_ana, model.get_time(), 0.0, coefs[ieig] * eigvec[2, ieig], eigval[ieig], k
352 )
353
354 model_rho = rho * np.real(model_rho_on_rho_0)
355 model_eps = np.real(model_eps)
356 model_vx = cs * np.real(model_vx_on_cs)
357
358 model_rho += 1
359 model_eps += 0.5
360 model_vx += 0
361
362 _, rho_t_ampl, rho_t_phi = fit_sine_wave(x_data, rho_data, rho_last_phi)
363 _, eps_t_ampl, eps_t_phi = fit_sine_wave(x_data, eps_data, eps_last_phi)
364 _, vx_t_ampl, vx_t_phi = fit_sine_wave(x_data, vx_data, vx_last_phi)
365 _, rho_ana_ampl, _ = fit_sine_wave(x_ana, model_rho, rho_last_phi)
366 _, eps_ana_ampl, _ = fit_sine_wave(x_ana, model_eps, eps_last_phi)
367 _, vx_ana_ampl, _ = fit_sine_wave(x_ana, model_vx, vx_last_phi)
368
369 print(f"rho_t_ampl={rho_t_ampl:.6g}, rho_t_phi={rho_t_phi:.6g} rad")
370 print(f"eps_t_ampl={eps_t_ampl:.6g}, eps_t_phi={eps_t_phi:.6g} rad")
371 print(f"vx_t_ampl={vx_t_ampl:.6g}, vx_t_phi={vx_t_phi:.6g} rad")
372
373 t_list.append(model.get_time())
374 rho_t_list.append(rho_t_ampl)
375 eps_t_list.append(eps_t_ampl)
376 vx_t_list.append(vx_t_ampl)
377 rho_t_list_analytic.append(rho_ana_ampl)
378 eps_t_list_analytic.append(eps_ana_ampl)
379 vx_t_list_analytic.append(vx_ana_ampl)
380
381 rho_last_phi = rho_t_phi
382 eps_last_phi = eps_t_phi
383 vx_last_phi = vx_t_phi
384
385 fig, axs = plt.subplots(1, 1, figsize=(10, 5))
386
387 axs.plot(x_data, rho_data - 1, ".", label=r"$\delta \rho$")
388 axs.plot(x_data, eps_data - 0.5, ".", label=r"$\delta \epsilon$")
389 axs.plot(x_data, vx_data / cs, ".", label=r"$\delta v_x / c_s$")
390
391 axs.plot(x_ana, model_rho - 1, "-", label=r"$\delta \rho$ analytic")
392 axs.plot(x_ana, model_eps - 0.5, "-", label=r"$\delta \epsilon$ analytic")
393 axs.plot(x_ana, model_vx / cs, "-", label=r"$\delta v_x / c_s$ analytic")
394
395 axs.set_xlabel(r"$x$ [code unit]")
396 axs.set_ylabel(r"$\delta$ fields [code unit]")
397 axs.set_xlim(xm, xM)
398 # axs.set_ylim(rho / 2 - 1e-3, rho / 2 + 1e-3)
399 axs.set_ylim(-ampl_perturbation * 1.1, +ampl_perturbation * 1.1)
400 axs.text(
401 0.02,
402 0.98,
403 f"t = {t:.2f} | cs = {cs:e}",
404 transform=axs.transAxes,
405 verticalalignment="top",
406 horizontalalignment="left",
407 bbox=dict(boxstyle="round", facecolor="wheat", alpha=0.5),
408 )
409 plt.legend(loc="upper right")
410 plt.tight_layout()
411 plt.savefig(f"_to_trash/dump_dustywave_tva_{ics:02d}_{i:02d}.png")
412 plt.close()
413
414 # if i == 1:
415 # break
416
417 t_arr = np.asarray(t_list)
418
419 rho_t_list = np.array(rho_t_list)
420 eps_t_list = np.array(eps_t_list)
421 vx_t_list = np.array(vx_t_list)
422 rho_t_list_analytic = np.array(rho_t_list_analytic)
423 eps_t_list_analytic = np.array(eps_t_list_analytic)
424 vx_t_list_analytic = np.array(vx_t_list_analytic)
425
426 curves = []
427
428 factor = plot_scaling
429
430 def add_curve(x, y, symbol, label):
431 curves.append(
432 {
433 "x": x,
434 "y": factor * y,
435 "symbol": symbol,
436 "label": label,
437 }
438 )
439
440 add_curve(t_arr, rho_t_list, ".", r"$\delta \rho (t)$")
441 add_curve(t_arr, eps_t_list, ".", r"$\delta \epsilon (t)$")
442 add_curve(t_arr, vx_t_list / cs, ".", r"$\delta v_x / c_s (t)$")
443 add_curve(t_arr, rho_t_list_analytic, "--", r"$\delta \rho (t)$ analytic")
444 add_curve(t_arr, eps_t_list_analytic, "--", r"$\delta \epsilon (t)$ analytic")
445 add_curve(t_arr, vx_t_list_analytic / cs, "--", r"$\delta v_x / c_s(t)$ analytic")
446
447 return_dict = {
448 "curves": curves,
449 "cs": cs,
450 "ics": ics,
451 "xlabel": "$t$ [code unit]",
452 "ylabel": f"${label_scaling} \\delta$ fields [code unit]",
453 "title": f"cs={cs:.2e} [code unit]",
454 }
455
456 plt.figure(dpi=150)
457 for curve in curves:
458 plt.plot(curve["x"], curve["y"], curve["symbol"], label=curve["label"])
459 plt.xlabel(return_dict["xlabel"])
460 plt.ylabel(return_dict["ylabel"])
461 plt.title(return_dict["title"])
462 plt.legend(fontsize=12, loc="upper right")
463 plt.savefig(f"_to_trash/dustywave_tva_scan_{return_dict['ics']:04}.png")
464
465 all_case_plot.append(return_dict)
----- 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": [
1.0
],
"type": "constant_stopping_times"
},
"evol_mode": {
"type": "none"
},
"mode": {
"C_1_fluid": 0.1,
"C_drift": 1.0,
"cfl_density_threshold": 2.220446049250313e-16,
"clamp_dust_frac": null,
"dust_corrected_av": false,
"ensure_s_j_positivity": true,
"ndust": 1,
"pure_diffusion_mode": false,
"smooth_s_positivity_limiter": false,
"type": "monofluid_tva"
}
},
"enable_particle_reordering": false,
"eos_config": {
"Tvec": "f64_3",
"cs": 0.0001,
"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"
},
"neigh_cache_strategy": "two_stage",
"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
}
]
------------------------------------
---------------------------- 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 = 2592 ( 2.6e+03 ) Ntotal = 2592 ( 2.6e+03 rank min = 1.8e+06 max = 2.6e+03) rate = 2.592000e+03 N.s^-1
SPH setup: the generation step took : 0.0020381320000000002 s
SPH setup: final particle count = 2592 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 : 11.01 us (84.3%)
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (0.1%)
patch tree reduce : 711.00 ns (0.1%)
gen split merge : 911.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.1%)
LB compute : 648.63 us (98.5%)
LB move op cnt : 0
LB apply : 3.43 us (0.5%)
Info: patch count stable after 1 runs npatch = 1 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
SPH setup: injected 2592 / 2592 => 100.0% | ranks with patchs = 1 / 1 <- global loop -> (msg count : 0)
SPH setup: the injection step took : 0.006639168000000001 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 | 1.3% 0.0% | 2.15 GB | 2.15 GB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 0.010153545 s
1.0000000000000001e-07
---------------- t = 0, dt = 0 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (1.0%)
patch tree reduce : 641.00 ns (0.3%)
gen split merge : 531.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.1%)
LB compute : 239.26 us (96.5%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (66.0%)
Info: defaulting reduction implementation to impl : {"implementation":"group_reduction","parameters":{"group_size":128}} [algs][rank=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: 1.183256172839506
Info: defaulting sort by key (pow2 len) implementation to impl : {"implementation":"bitonic_sort","parameters":{"stencil_size":16}} [algs][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.030555555555555558 unconverged cnt = 2592
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.3290895061728396
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.03361111111111112 unconverged cnt = 2592
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.3290895061728396
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.03697222222222223 unconverged cnt = 2592
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.5088734567901234
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.04066944444444446 unconverged cnt = 2592
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.579861111111111
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.04473638888888891 unconverged cnt = 2592
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1840277777777777
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.049210027777777804 unconverged cnt = 2592
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5674843145230745e-25,0,0)
sum a = (-2.0020922787294212e-26,2.5579711602280574e-25,2.3249939174558728e-26)
sum e = 7.856742013183866e-16
sum de = -2.9274135154685985e-32
Info: cfl dt = 0.49416049735100015 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 | 1.0540e+04 | 2592 | 1 | 2.459e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [sph::Model][rank=0]
[-1.11022302e-16-9.99999803e-01j -4.44288327e-04-9.86960440e-08j
4.44288327e-04-9.86960440e-08j 0.00000000e+00+0.00000000e+00j]
k=6.283185307179586 cs=0.0001 ts=1 epsilon_0=0.5
eigenval = [-0.00044429-9.86960440e-08j 0.00044429-9.86960440e-08j
0. +1.69300148e-21j]
eigenvec = [[ 8.16496567e-01+0.00000000e+00j 8.16496567e-01+0.00000000e+00j
8.94427191e-01+0.00000000e+00j]
[ 4.02924906e-08-1.81379929e-04j 4.02924906e-08+1.81379929e-04j
4.47213595e-01-6.31490503e-17j]
[-5.77350245e-01-1.28254981e-04j 5.77350245e-01-1.28254981e-04j
-1.47910362e-16+4.07053332e-15j]]
14142.135972674165
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 : 8.765765817 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.0005832690000000001 s
sph::RenderFieldGetter compute custom field took : 0.000262506 s
offset_rho=0.999981, ampl_rho=1.5987e-16, phi_rho=5.96884 rad
offset_eps=0.500009, ampl_eps=7.71362e-17, phi_eps=2.839 rad
offset_vx=0, ampl_vx=1e-07, phi_vx=4.71239 rad
eigenval = [-0.00044429-9.86960440e-08j 0.00044429-9.86960440e-08j
0. +1.69300148e-21j]
eigenvec = [[ 8.16496567e-01+0.00000000e+00j 8.16496567e-01+0.00000000e+00j
8.94427191e-01+0.00000000e+00j]
[ 4.02924906e-08-1.81379929e-04j 4.02924906e-08+1.81379929e-04j
4.47213595e-01-6.31490503e-17j]
[-5.77350245e-01-1.28254981e-04j 5.77350245e-01-1.28254981e-04j
-1.47910362e-16+4.07053332e-15j]]
eigenvec=[[ 8.16496567e-01+0.00000000e+00j 8.16496567e-01+0.00000000e+00j
8.94427191e-01+0.00000000e+00j]
[ 4.02924906e-08-1.81379929e-04j 4.02924906e-08+1.81379929e-04j
4.47213595e-01-6.31490503e-17j]
[-5.77350245e-01-1.28254981e-04j 5.77350245e-01-1.28254981e-04j
-1.47910362e-16+4.07053332e-15j]]
v=[1.59870093e-16+0.j 7.71362122e-17+0.j 0.00000000e+00-0.001j]
c=[ 3.84764955e-07+8.66025354e-04j 3.84764955e-07-8.66025354e-04j
-7.02481473e-07-6.07335744e-23j]
coefs=[ 3.84764955e-07+8.66025354e-04j 3.84764955e-07-8.66025354e-04j
-7.02481473e-07-6.07335744e-23j]
coefs=[ 3.84764955e-07+8.66025354e-04j 3.84764955e-07-8.66025354e-04j
-7.02481473e-07-6.07335744e-23j]
decomp=[1.59870057e-16-1.08474539e-19j 7.71363788e-17+3.61599721e-26j
1.12600601e-23-1.00000000e-03j]
rho_t_ampl=-1.5987e-16, rho_t_phi=2.82724 rad
eps_t_ampl=-7.71362e-17, eps_t_phi=5.98059 rad
vx_t_ampl=1e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 353.55s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0, dt = 0.49416049735100015 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.70 us (3.5%)
patch tree reduce : 1.39 us (0.5%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 255.69 us (91.8%)
LB move op cnt : 0
LB apply : 3.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.8268705113033804e-24,1.26404830053609e-25,1.1489201505880408e-26)
sum a = (6.811841947065152e-25,6.846986891644136e-26,8.627752080581692e-26)
sum e = 7.856742013183864e-16
sum de = -1.494521636844495e-31
Info: cfl dt = 16.801455314939325 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 | 3.7888e+04 | 2592 | 1 | 6.841e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26003.58942394651 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.49416049735100015, dt = 16.801455314939325 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.46 us (1.9%)
patch tree reduce : 1.14 us (0.5%)
gen split merge : 861.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 213.34 us (91.5%)
LB move op cnt : 0
LB apply : 2.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.215949806473838e-24,1.2305134148070216e-24,1.476649982551432e-24)
sum a = (-1.036610626628742e-25,-8.406417296049491e-26,2.3094847271393273e-26)
sum e = 7.85674201322218e-16
sum de = -1.8488927466117464e-32
Info: cfl dt = 27.672895979801314 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 | 3.6153e+04 | 2592 | 1 | 7.169e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 843648.0524545963 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.295615812290325, dt = 27.672895979801314 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (2.5%)
patch tree reduce : 1.37 us (0.7%)
gen split merge : 872.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.4%)
LB compute : 191.16 us (91.8%)
LB move op cnt : 0
LB apply : 2.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.721533373394459e-24,-2.377182433740958e-24,1.5849708557286047e-24)
sum a = (-4.50686816101955e-25,3.2019385701958373e-25,9.629136038893772e-26)
sum e = 7.856742138702657e-16
sum de = -6.933347799794049e-32
Info: cfl dt = 34.920380535989175 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 | 4.0980e+04 | 2592 | 1 | 6.325e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1575050.765016744 (tsim/hr) [sph::Model][rank=0]
---------------- t = 44.96851179209164, dt = 34.920380535989175 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.04 us (2.1%)
patch tree reduce : 861.00 ns (0.4%)
gen split merge : 701.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.5%)
LB compute : 178.26 us (92.7%)
LB move op cnt : 0
LB apply : 2.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.899938392747075e-23,1.4397606583037028e-23,5.960281549631391e-24)
sum a = (-3.1675930292732034e-26,-2.8809991132102954e-25,1.0780093393048532e-25)
sum e = 7.856743279594568e-16
sum de = 7.549645381997965e-32
Info: cfl dt = 39.75188966404617 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 | 4.4650e+04 | 2592 | 1 | 5.805e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2165536.391182388 (tsim/hr) [sph::Model][rank=0]
---------------- t = 79.88889232808081, dt = 39.75188966404617 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (2.1%)
patch tree reduce : 691.00 ns (0.4%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 182.54 us (92.7%)
LB move op cnt : 0
LB apply : 2.55 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.859139767768607e-24,-7.675837663702646e-24,1.0446531724856125e-23)
sum a = (1.1149219148277171e-25,1.2617131285718216e-25,-1.3331456307167087e-25)
sum e = 7.856746922935254e-16
sum de = -2.465190328815662e-32
Info: cfl dt = 42.97276165282297 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 | 4.3731e+04 | 2592 | 1 | 5.927e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2414445.471861468 (tsim/hr) [sph::Model][rank=0]
---------------- t = 119.64078199212699, dt = 42.97276165282297 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (1.9%)
patch tree reduce : 1.08 us (0.5%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 199.12 us (92.9%)
LB move op cnt : 0
LB apply : 2.77 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.54840388469784e-24,5.9801307462939435e-24,-7.476153543365977e-26)
sum a = (-1.9412839165229398e-25,5.031393387845166e-26,-4.0541482340741136e-26)
sum e = 7.856754402242276e-16
sum de = 3.389636702121535e-32
Info: cfl dt = 45.11989378331216 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 | 4.4417e+04 | 2592 | 1 | 5.836e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2650993.328614202 (tsim/hr) [sph::Model][rank=0]
---------------- t = 162.61354364494997, dt = 45.11989378331216 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (2.2%)
patch tree reduce : 1.10 us (0.6%)
gen split merge : 641.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 183.35 us (92.3%)
LB move op cnt : 0
LB apply : 2.82 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7664292083918753e-23,6.620379909479441e-24,8.936883055800813e-26)
sum a = (-1.695990752611626e-25,-1.0783168576416539e-25,3.862797101608213e-26)
sum e = 7.856766567215773e-16
sum de = 1.2017802852976352e-31
Info: cfl dt = 46.5512179641888 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 | 3.9350e+04 | 2592 | 1 | 6.587e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2465947.7776567037 (tsim/hr) [sph::Model][rank=0]
---------------- t = 207.73343742826214, dt = 46.5512179641888 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (2.0%)
patch tree reduce : 982.00 ns (0.5%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 177.12 us (92.4%)
LB move op cnt : 0
LB apply : 2.45 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.050171365653412e-23,-1.967084908647247e-24,3.673606592013762e-24)
sum a = (3.4058813989426243e-25,2.195878241524497e-25,-8.093551867928994e-26)
sum e = 7.85678381399669e-16
sum de = 2.0029671421627253e-32
Info: cfl dt = 47.50535446012688 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 | 3.2468e+04 | 2592 | 1 | 7.983e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2099176.632362177 (tsim/hr) [sph::Model][rank=0]
---------------- t = 254.28465539245093, dt = 47.50535446012688 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (2.1%)
patch tree reduce : 921.00 ns (0.5%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 189.21 us (92.5%)
LB move op cnt : 0
LB apply : 2.59 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.0809811774276895e-25,1.6085417730068234e-23,-2.954176945944161e-24)
sum a = (1.6548238745949505e-27,2.709867139315476e-26,-9.014074804532287e-26)
sum e = 7.856806234678575e-16
sum de = 1.8488927466117464e-32
Info: cfl dt = 48.14138226981298 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 | 3.7688e+04 | 2592 | 1 | 6.878e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2486631.768515162 (tsim/hr) [sph::Model][rank=0]
---------------- t = 301.7900098525778, dt = 48.14138226981298 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.28 us (2.2%)
patch tree reduce : 991.00 ns (0.5%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.6%)
LB compute : 179.50 us (91.9%)
LB move op cnt : 0
LB apply : 2.69 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.137606394374147e-24,1.2817811282874197e-23,-7.512325997641438e-24)
sum a = (3.0205550329159647e-25,-1.994530563189178e-25,-8.688986916239183e-26)
sum e = 7.856833756886789e-16
sum de = 3.8518598887744717e-32
Info: cfl dt = 48.565353087569314 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 | 4.4464e+04 | 2592 | 1 | 5.829e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2973025.6271884586 (tsim/hr) [sph::Model][rank=0]
---------------- t = 349.9313921223908, dt = 3.622007194463322 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (2.0%)
patch tree reduce : 1.15 us (0.5%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 201.22 us (92.7%)
LB move op cnt : 0
LB apply : 2.78 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.0809811774276894e-24,6.642213868802103e-24,-7.748790827365566e-24)
sum a = (-2.7589173491068996e-25,-5.248224800488283e-26,1.0049557761943285e-25)
sum e = 7.856762585760285e-16
sum de = 2.465190328815662e-32
Info: cfl dt = 48.84813730970769 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 | 4.4896e+04 | 2592 | 1 | 5.773e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 225852.02973296706 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 12 [SPH][rank=0]
Info: time since start : 9.761195933 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000323056 s
sph::RenderFieldGetter compute custom field took : 0.000275916 s
rho_t_ampl=0.000216233, rho_t_phi=3.14159 rad
eps_t_ampl=-1.22466e-08, eps_t_phi=6.28319 rad
vx_t_ampl=9.87347e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 707.11s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 353.5533993168541, dt = 48.84813730970769 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.57 us (4.0%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 238.37 us (91.0%)
LB move op cnt : 0
LB apply : 3.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.689404678956183e-23,4.3446335221207536e-24,-2.500413334602455e-24)
sum a = (-1.2724592672074807e-26,-5.168033765176787e-26,-6.215570344423603e-26)
sum e = 7.856857294994188e-16
sum de = 1.6948183510607676e-32
Info: cfl dt = 49.036474843621704 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 | 3.1731e+04 | 2592 | 1 | 8.169e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2152811.657873717 (tsim/hr) [sph::Model][rank=0]
---------------- t = 402.4015366265618, dt = 49.036474843621704 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 us (1.7%)
patch tree reduce : 1.00 us (0.4%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 243.64 us (93.6%)
LB move op cnt : 0
LB apply : 3.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.010551061311993e-24,1.8300471571344474e-24,-9.520915978431754e-24)
sum a = (-7.294388419947514e-26,1.2110530930203793e-25,1.56191260258045e-26)
sum e = 7.856901425542188e-16
sum de = -8.782240546405795e-32
Info: cfl dt = 49.1620282750389 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 | 3.2689e+04 | 2592 | 1 | 7.929e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2226328.175781161 (tsim/hr) [sph::Model][rank=0]
---------------- t = 451.4380114701835, dt = 49.1620282750389 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.54 us (2.0%)
patch tree reduce : 1.00 us (0.4%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 207.10 us (92.8%)
LB move op cnt : 0
LB apply : 2.83 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.010551061311993e-24,1.2020355418670241e-23,-6.84614632873294e-24)
sum a = (-1.6673604190994575e-25,-2.7432701744972113e-26,1.2830016243466518e-25)
sum e = 7.856943749613943e-16
sum de = 1.5407439555097887e-33
Info: cfl dt = 49.24572734007322 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 | 3.3446e+04 | 2592 | 1 | 7.750e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2283702.359701832 (tsim/hr) [sph::Model][rank=0]
---------------- t = 500.6000397452224, dt = 49.24572734007322 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.91 us (2.2%)
patch tree reduce : 1.04 us (0.5%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 202.26 us (92.5%)
LB move op cnt : 0
LB apply : 2.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2285763850060288e-23,7.01809551561268e-24,2.241902637208677e-24)
sum a = (-3.5032746790620143e-25,-2.2896823236435103e-26,-4.596786957364457e-26)
sum e = 7.856990522567956e-16
sum de = -1.232595164407831e-32
Info: cfl dt = 49.30153712186139 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 | 3.3539e+04 | 2592 | 1 | 7.728e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2293989.0993101974 (tsim/hr) [sph::Model][rank=0]
---------------- t = 549.8457670852956, dt = 49.30153712186139 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (2.0%)
patch tree reduce : 1.26 us (0.5%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.6%)
LB compute : 218.54 us (92.6%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.616336797512488e-23,6.000861489700209e-24,-4.315361985175962e-24)
sum a = (-2.4299584213086306e-25,1.609731491080301e-26,1.1810878901580998e-26)
sum e = 7.85704162449592e-16
sum de = -1.7872629883913549e-31
Info: cfl dt = 49.33876759018904 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 | 3.3411e+04 | 2592 | 1 | 7.758e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2287787.3492255993 (tsim/hr) [sph::Model][rank=0]
---------------- t = 599.147304207157, dt = 49.33876759018904 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (1.9%)
patch tree reduce : 861.00 ns (0.4%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 217.45 us (93.4%)
LB move op cnt : 0
LB apply : 2.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.201723221223749e-23,7.756366353210856e-24,-2.3083372196121793e-24)
sum a = (-1.9610289741175388e-25,-3.1558742984141076e-26,1.0042065519052433e-26)
sum e = 7.857096936759386e-16
sum de = -3.0814879110195774e-32
Info: cfl dt = 49.363625326950924 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 | 4.3205e+04 | 2592 | 1 | 5.999e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2960670.1346254884 (tsim/hr) [sph::Model][rank=0]
---------------- t = 648.4860717973461, dt = 49.363625326950924 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (1.8%)
patch tree reduce : 1.27 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 591.00 ns (0.3%)
LB compute : 202.42 us (94.2%)
LB move op cnt : 0
LB apply : 2.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.434115692194824e-23,5.0230172866209e-24,-1.856259996015734e-24)
sum a = (-1.2887567750633403e-25,9.518777873325948e-26,5.505473735823637e-26)
sum e = 7.857156339653347e-16
sum de = 4.930380657631324e-32
Info: cfl dt = 49.380248002292625 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 | 4.4595e+04 | 2592 | 1 | 5.812e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3057440.2895639604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 697.849697124297, dt = 9.2571015094112 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (2.1%)
patch tree reduce : 731.00 ns (0.4%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 751.00 ns (0.4%)
LB compute : 181.43 us (93.1%)
LB move op cnt : 0
LB apply : 2.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.336551288242948e-23,9.032404803874374e-24,-2.356183698996458e-25)
sum a = (-7.866054849353042e-26,8.883312185402951e-26,-9.315388229935217e-28)
sum e = 7.856840950946666e-16
sum de = 6.471124613141112e-32
Info: cfl dt = 49.39131740237549 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 | 4.5637e+04 | 2592 | 1 | 5.680e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 586763.8882962128 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 20 [SPH][rank=0]
Info: time since start : 10.566421887 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000295004 s
sph::RenderFieldGetter compute custom field took : 0.00024977800000000003 s
rho_t_ampl=0.000427001, rho_t_phi=3.14159 rad
eps_t_ampl=-3.4517e-08, eps_t_phi=6.28319 rad
vx_t_ampl=9.49728e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 1060.66s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 707.1067986337082, dt = 49.39131740237549 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.29 us (3.8%)
patch tree reduce : 1.52 us (0.6%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 249.28 us (91.3%)
LB move op cnt : 0
LB apply : 3.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.61383959421144e-23,1.3390709427777294e-23,-5.407636204507332e-25)
sum a = (1.802943147915703e-25,9.395755684743926e-26,1.6175257261070873e-25)
sum e = 7.857207463365903e-16
sum de = -6.162975822039155e-33
Info: cfl dt = 49.3987754431138 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 | 3.2049e+04 | 2592 | 1 | 8.088e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2198561.0920973723 (tsim/hr) [sph::Model][rank=0]
---------------- t = 756.4981160360837, dt = 49.3987754431138 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (2.0%)
patch tree reduce : 1.36 us (0.6%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 209.06 us (92.8%)
LB move op cnt : 0
LB apply : 2.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.909030009368118e-23,1.8158582960642464e-23,1.1467206683364907e-23)
sum a = (-3.8326097031954186e-25,-4.85700748281643e-26,-1.1096856608863698e-25)
sum e = 7.857287558114466e-16
sum de = -1.5407439555097887e-32
Info: cfl dt = 49.403839291715606 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 | 3.2709e+04 | 2592 | 1 | 7.924e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2244159.495692779 (tsim/hr) [sph::Model][rank=0]
---------------- t = 805.8968914791975, dt = 49.403839291715606 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (2.1%)
patch tree reduce : 1.25 us (0.6%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 206.47 us (92.8%)
LB move op cnt : 0
LB apply : 2.83 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.683231951717038e-23,1.2238613524357586e-23,-7.511116667103059e-25)
sum a = (2.9077261323754e-25,-1.195634734833337e-25,-2.173473025396599e-26)
sum e = 7.857359178268844e-16
sum de = -4.3140830754274083e-32
Info: cfl dt = 49.407308585962674 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 | 4.4327e+04 | 2592 | 1 | 5.847e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3041560.460744459 (tsim/hr) [sph::Model][rank=0]
---------------- t = 855.3007307709131, dt = 49.407308585962674 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (1.9%)
patch tree reduce : 771.00 ns (0.4%)
gen split merge : 641.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 751.00 ns (0.4%)
LB compute : 195.77 us (93.4%)
LB move op cnt : 0
LB apply : 1.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.132401144731626e-23,4.577694152731795e-24,3.7928085107889663e-25)
sum a = (-3.935597416299945e-25,-1.7145911159570338e-25,-3.426611544464218e-27)
sum e = 7.857434317877125e-16
sum de = -6.162975822039155e-32
Info: cfl dt = 49.40972805135935 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 | 4.5005e+04 | 2592 | 1 | 5.759e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3088290.6544335205 (tsim/hr) [sph::Model][rank=0]
---------------- t = 904.7080393568758, dt = 49.40972805135935 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (1.9%)
patch tree reduce : 1.06 us (0.5%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 186.46 us (93.1%)
LB move op cnt : 0
LB apply : 2.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.019572396919561e-23,-5.17641444517805e-24,6.622503418826821e-25)
sum a = (-6.373203129756325e-25,7.548640316091854e-27,-1.6462127064659875e-25)
sum e = 7.8575128582444175e-16
sum de = -4.1600086798764294e-32
Info: cfl dt = 49.41146081381333 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 | 4.4844e+04 | 2592 | 1 | 5.780e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3077411.966389694 (tsim/hr) [sph::Model][rank=0]
---------------- t = 954.1177674082352, dt = 49.41146081381333 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.36 us (2.2%)
patch tree reduce : 1.17 us (0.6%)
gen split merge : 821.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.4%)
LB compute : 181.27 us (92.8%)
LB move op cnt : 0
LB apply : 2.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2470271315638574e-22,-3.810231971254873e-25,-1.1454219256576867e-23)
sum a = (1.2454430138002677e-25,2.903507781033141e-26,5.069587733151487e-26)
sum e = 7.857594648058325e-16
sum de = 3.8518598887744717e-32
Info: cfl dt = 49.41274890003756 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 | 4.4839e+04 | 2592 | 1 | 5.781e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3077136.5258922647 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1003.5292282220485, dt = 49.41274890003756 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.87 us (1.8%)
patch tree reduce : 932.00 ns (0.4%)
gen split merge : 431.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.4%)
LB compute : 197.61 us (94.2%)
LB move op cnt : 0
LB apply : 2.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0444526191479867e-22,1.5847696639037641e-24,-3.629629189794366e-24)
sum a = (-1.5950872400309736e-25,1.1341255993774046e-25,-1.243414891027973e-25)
sum e = 7.857679527966864e-16
sum de = -4.0059342843254506e-32
Info: cfl dt = 49.41375359653153 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 | 4.4038e+04 | 2592 | 1 | 5.886e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3022279.620376598 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1052.941977122086, dt = 7.718220828476433 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (1.9%)
patch tree reduce : 781.00 ns (0.4%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 178.36 us (92.8%)
LB move op cnt : 0
LB apply : 2.42 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1099234691683252e-22,4.5450615273865625e-24,-8.913862978703659e-24)
sum a = (1.2122838535858463e-25,-8.81341115561493e-27,3.1660652180154463e-26)
sum e = 7.856946622185241e-16
sum de = 4.622231866529366e-33
Info: cfl dt = 49.41426066018379 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 | 4.5689e+04 | 2592 | 1 | 5.673e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 489776.8388041035 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 28 [SPH][rank=0]
Info: time since start : 11.308492928000001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00031227 s
sph::RenderFieldGetter compute custom field took : 0.00025989300000000003 s
rho_t_ampl=0.00062697, rho_t_phi=3.14159 rad
eps_t_ampl=-6.34642e-08, eps_t_phi=6.28319 rad
vx_t_ampl=8.88098e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 1414.21s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 1060.6601979505624, dt = 49.41426066018379 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.98 us (3.9%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 232.06 us (90.8%)
LB move op cnt : 0
LB apply : 3.60 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.910489454059068e-23,3.637378095626728e-24,-6.747345771133935e-24)
sum a = (-3.25994035022953e-25,-1.6676030697948476e-25,-1.4368351742007992e-25)
sum e = 7.857747026738888e-16
sum de = 7.472608184222475e-32
Info: cfl dt = 49.41493532122788 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 | 4.4316e+04 | 2592 | 1 | 5.849e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3041453.9996094923 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1110.0744586107462, dt = 49.41493532122788 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (2.2%)
patch tree reduce : 671.00 ns (0.3%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 183.75 us (93.2%)
LB move op cnt : 0
LB apply : 2.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.302741541189008e-22,-8.505594130705973e-24,-1.817970874210729e-23)
sum a = (6.268899079478825e-26,-8.822054515400264e-27,2.8145891323554753e-26)
sum e = 7.857854781726609e-16
sum de = 5.777789833161708e-32
Info: cfl dt = 49.415570051559584 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 | 4.4625e+04 | 2592 | 1 | 5.808e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3062668.914844618 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1159.489393931974, dt = 49.415570051559584 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (1.9%)
patch tree reduce : 681.00 ns (0.3%)
gen split merge : 631.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 182.02 us (86.5%)
LB move op cnt : 0
LB apply : 2.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.187461495466922e-22,-5.038838405785588e-24,-1.2543393918070583e-23)
sum a = (-3.114328385809679e-25,5.182127583568963e-26,5.262840036771237e-26)
sum e = 7.857948376476239e-16
sum de = 3.004450713244088e-32
Info: cfl dt = 49.416179959089064 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 | 4.1558e+04 | 2592 | 1 | 6.237e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2852244.449309152 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1208.9049639835337, dt = 49.416179959089064 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (1.8%)
patch tree reduce : 1.36 us (0.7%)
gen split merge : 550.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 192.99 us (93.1%)
LB move op cnt : 0
LB apply : 2.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.399535699846528e-22,-9.799566108283187e-25,-9.337790844186662e-24)
sum a = (4.276215330487406e-26,6.287503115640006e-26,-9.965216540454763e-26)
sum e = 7.858044261443093e-16
sum de = 8.628166150854817e-32
Info: cfl dt = 49.416785993051576 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 | 3.7726e+04 | 2592 | 1 | 6.871e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2589293.711626815 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1258.3211439426227, dt = 49.416785993051576 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (2.0%)
patch tree reduce : 1.46 us (0.7%)
gen split merge : 891.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 661.00 ns (0.3%)
LB compute : 181.19 us (92.9%)
LB move op cnt : 0
LB apply : 2.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.312754730015648e-22,2.4003220300999755e-24,-1.8024842496963164e-23)
sum a = (-9.949001718776914e-26,-2.1392212629860175e-25,-6.386688387921203e-26)
sum e = 7.858142321524148e-16
sum de = 1.9259299443872359e-32
Info: cfl dt = 49.4174020714632 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 | 4.4615e+04 | 2592 | 1 | 5.810e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3062155.892568361 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1307.7379299356744, dt = 49.4174020714632 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.28 us (2.1%)
patch tree reduce : 781.00 ns (0.4%)
gen split merge : 541.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 191.97 us (93.3%)
LB move op cnt : 0
LB apply : 2.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.386184781411008e-22,-1.501025546613656e-23,-2.0296781177255552e-23)
sum a = (1.133554354097541e-25,-2.452620184335606e-25,9.311571098327027e-26)
sum e = 7.8582423663955435e-16
sum de = -3.389636702121535e-32
Info: cfl dt = 49.41803737089574 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 | 4.4799e+04 | 2592 | 1 | 5.786e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3074804.1791492095 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1357.1553320071375, dt = 49.41803737089574 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.18 us (2.2%)
patch tree reduce : 922.00 ns (0.5%)
gen split merge : 701.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 176.60 us (92.2%)
LB move op cnt : 0
LB apply : 2.58 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2683372513743989e-22,-2.7904843681692486e-23,-1.1816349487794207e-23)
sum a = (-9.304623331245244e-26,6.77493473956818e-26,1.3183701876922623e-26)
sum e = 7.85834419971914e-16
sum de = -2.311115933264683e-32
Info: cfl dt = 49.41869789950251 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 | 4.4684e+04 | 2592 | 1 | 5.801e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3066972.433703121 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1406.5733693780332, dt = 7.640227889383141 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (1.9%)
patch tree reduce : 1.47 us (0.8%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.3%)
LB compute : 182.26 us (93.0%)
LB move op cnt : 0
LB apply : 2.65 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3374025794350694e-22,-1.9653616038982963e-23,-1.3690664507602505e-23)
sum a = (2.8360170978096186e-25,-6.904624313049767e-26,1.3918125102224075e-25)
sum e = 7.857082609676154e-16
sum de = 1.4637067577342992e-32
Info: cfl dt = 49.41883165132527 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 | 4.5722e+04 | 2592 | 1 | 5.669e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 485178.84750668926 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 36 [SPH][rank=0]
Info: time since start : 12.02412267 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00029868900000000004 s
sph::RenderFieldGetter compute custom field took : 0.00025709800000000004 s
rho_t_ampl=0.000811084, rho_t_phi=3.14159 rad
eps_t_ampl=-9.81955e-08, eps_t_phi=6.28319 rad
vx_t_ampl=8.04017e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 1767.77s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 1414.2135972674164, dt = 49.41883165132527 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.54 us (3.7%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 261.71 us (92.0%)
LB move op cnt : 0
LB apply : 2.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.191569470370159e-22,-2.3588009947010476e-23,-6.331164699825971e-24)
sum a = (7.785194137298971e-27,1.1592190113003619e-26,-6.827785174059458e-26)
sum e = 7.858423656367634e-16
sum de = -7.703719777548943e-32
Info: cfl dt = 49.4195063587475 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 | 4.3681e+04 | 2592 | 1 | 5.934e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2998155.3800994125 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1463.6324289187417, dt = 49.4195063587475 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.23 us (1.9%)
patch tree reduce : 1.25 us (0.6%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 207.97 us (93.1%)
LB move op cnt : 0
LB apply : 2.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2580673141163065e-22,-2.102263177196416e-23,-1.4831615665065902e-23)
sum a = (1.7338041049733457e-26,1.5187049146758756e-25,-5.783869824377549e-26)
sum e = 7.858548094716464e-16
sum de = -1.4637067577342992e-32
Info: cfl dt = 49.42022947853487 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 | 3.6085e+04 | 2592 | 1 | 7.183e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2476794.029510955 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1513.051935277489, dt = 49.42022947853487 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.31 us (1.6%)
patch tree reduce : 1.37 us (0.5%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.3%)
LB compute : 236.34 us (89.4%)
LB move op cnt : 0
LB apply : 2.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (57.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2619185405880911e-22,-1.0050171632928287e-23,-1.743206849870968e-23)
sum a = (-2.625904611914078e-25,1.3041581158706351e-25,2.568437670233444e-25)
sum e = 7.858654382398339e-16
sum de = 1.0014835710813626e-32
Info: cfl dt = 49.420987003451195 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 | 2.9239e+04 | 2592 | 1 | 8.865e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2006912.8948633776 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1562.4721647560239, dt = 49.420987003451195 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (2.1%)
patch tree reduce : 1.30 us (0.6%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.4%)
LB compute : 213.06 us (92.6%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4642363045725095e-22,-4.1349535470106185e-24,3.0372437964566976e-24)
sum a = (-1.858041261013012e-25,-1.6020984004868732e-25,2.5852707026409987e-26)
sum e = 7.85876147417202e-16
sum de = -5.854827030937197e-32
Info: cfl dt = 49.42177929056361 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 | 2.8936e+04 | 2592 | 1 | 8.958e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1986154.6779881238 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1611.8931517594751, dt = 49.42177929056361 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (2.0%)
patch tree reduce : 1.33 us (0.6%)
gen split merge : 902.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 211.81 us (92.8%)
LB move op cnt : 0
LB apply : 2.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5171264814516848e-22,-1.9236073887715847e-23,-1.3929725098295317e-24)
sum a = (-4.257159782840555e-25,1.633356511257291e-25,6.11973157425806e-26)
sum e = 7.858869292105351e-16
sum de = -6.471124613141112e-32
Info: cfl dt = 49.422606505234725 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 | 2.9684e+04 | 2592 | 1 | 8.732e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2037581.617757291 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1661.3149310500387, dt = 49.422606505234725 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.58 us (1.9%)
patch tree reduce : 1.47 us (0.6%)
gen split merge : 872.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 223.21 us (92.8%)
LB move op cnt : 0
LB apply : 3.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7795233783959428e-22,-3.167082165084645e-24,2.504955070832226e-24)
sum a = (-9.83868012713725e-26,6.880011550284278e-26,-2.4307590651456965e-26)
sum e = 7.858977626531729e-16
sum de = 1.4637067577342992e-32
Info: cfl dt = 49.423468612247646 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 | 2.9904e+04 | 2592 | 1 | 8.668e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2052656.4754946942 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1710.7375375552733, dt = 49.423468612247646 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.92 us (2.3%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 194.71 us (92.0%)
LB move op cnt : 0
LB apply : 2.70 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7512810509361892e-22,-2.1042840681705425e-24,-8.093480442588676e-25)
sum a = (3.8788068696945276e-26,1.7976596799993307e-25,-7.154715418419572e-27)
sum e = 7.859086264470484e-16
sum de = 3.543711097672514e-32
Info: cfl dt = 49.42436543578114 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 | 2.9484e+04 | 2592 | 1 | 8.791e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2023883.7858190672 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1760.161006167521, dt = 7.6059904167495915 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.63 us (2.2%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 871.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 196.11 us (92.7%)
LB move op cnt : 0
LB apply : 2.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.691972163270706e-22,2.0049946356948455e-24,-4.398894458188555e-25)
sum a = (-9.762207205659756e-26,1.1214037001035632e-26,4.9343656468511565e-26)
sum e = 7.857231914354544e-16
sum de = -2.619264724366641e-32
Info: cfl dt = 49.42452047564791 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 | 3.1356e+04 | 2592 | 1 | 8.266e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 331245.006208112 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 44 [SPH][rank=0]
Info: time since start : 12.915261225 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000290507 s
sph::RenderFieldGetter compute custom field took : 0.00026939600000000003 s
rho_t_ampl=0.00097469, rho_t_phi=3.14159 rad
eps_t_ampl=-1.37848e-07, eps_t_phi=6.28319 rad
vx_t_ampl=6.99612e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 2121.32s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 1767.7669965842706, dt = 49.42452047564791 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.28 us (4.1%)
patch tree reduce : 1.56 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 226.61 us (91.2%)
LB move op cnt : 0
LB apply : 2.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7756721519241582e-22,1.918843501859872e-24,2.213760151216833e-24)
sum a = (1.5925172484075496e-25,9.309402888837587e-26,4.11270002281298e-29)
sum e = 7.859169914009437e-16
sum de = -4.391120273202898e-32
Info: cfl dt = 49.425443722544706 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 | 4.2704e+04 | 2592 | 1 | 6.070e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2931433.716512476 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1817.1915170599186, dt = 49.425443722544706 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (1.5%)
patch tree reduce : 1.23 us (0.5%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 611.00 ns (0.3%)
LB compute : 212.91 us (94.7%)
LB move op cnt : 0
LB apply : 1.83 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.647554684629457e-22,8.544658003382017e-24,9.974159328443954e-25)
sum a = (1.891012373059866e-25,-1.845477782526171e-25,-1.0715953039699835e-26)
sum e = 7.859298497257902e-16
sum de = 1.232595164407831e-32
Info: cfl dt = 49.426414045065854 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 | 4.3660e+04 | 2592 | 1 | 5.937e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2997119.9642235544 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1866.6169607824634, dt = 49.426414045065854 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (1.7%)
patch tree reduce : 701.00 ns (0.3%)
gen split merge : 831.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.4%)
LB compute : 202.84 us (93.8%)
LB move op cnt : 0
LB apply : 2.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5538415071493647e-22,-7.438684047194392e-24,2.0192807395236828e-25)
sum a = (-1.0090664671677845e-25,-1.282782328072911e-26,1.838266779173285e-26)
sum e = 7.859406898002867e-16
sum de = 3.0814879110195774e-33
Info: cfl dt = 49.42741816671433 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 | 4.3822e+04 | 2592 | 1 | 5.915e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3008274.107390184 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1916.0433748275293, dt = 49.42741816671433 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (1.9%)
patch tree reduce : 1.13 us (0.5%)
gen split merge : 521.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.4%)
LB compute : 207.73 us (93.6%)
LB move op cnt : 0
LB apply : 2.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6431899612947677e-22,-3.8278082066501925e-24,1.8296561225944318e-24)
sum a = (-4.001414274948608e-25,8.268331015316812e-26,-2.743668798372017e-26)
sum e = 7.8595145122546e-16
sum de = 4.622231866529366e-33
Info: cfl dt = 49.42845549655906 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 | 4.4077e+04 | 2592 | 1 | 5.881e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3025835.5143604362 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1965.4707929942435, dt = 49.42845549655906 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (1.9%)
patch tree reduce : 1.45 us (0.7%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 188.39 us (93.8%)
LB move op cnt : 0
LB apply : 2.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9464098588399428e-22,2.61923517023768e-24,-6.588632174006013e-25)
sum a = (3.06518513135201e-26,-5.365028911966947e-26,5.200039857090651e-26)
sum e = 7.859621329162048e-16
sum de = 4.776306262080345e-32
Info: cfl dt = 49.429525545117365 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 | 4.4787e+04 | 2592 | 1 | 5.787e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3074660.592598104 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2014.8992484908026, dt = 49.429525545117365 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (1.9%)
patch tree reduce : 681.00 ns (0.3%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 202.02 us (93.4%)
LB move op cnt : 0
LB apply : 2.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8082792027186014e-22,-3.404474171821993e-24,3.8747180608838105e-24)
sum a = (8.449630996037853e-26,-1.9113969903077025e-26,-7.275822804116008e-26)
sum e = 7.859727140755e-16
sum de = 3.8518598887744717e-32
Info: cfl dt = 49.430627800758785 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 | 4.4545e+04 | 2592 | 1 | 5.819e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3058110.622293582 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2064.32877403592, dt = 49.430627800758785 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.28 us (2.0%)
patch tree reduce : 931.00 ns (0.4%)
gen split merge : 841.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 203.49 us (93.3%)
LB move op cnt : 0
LB apply : 2.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7574430132910446e-22,-3.4936842225160665e-24,-2.805146689410905e-24)
sum a = (1.2724592672074807e-26,8.745155547293124e-26,1.1802211021334127e-25)
sum e = 7.859831738766094e-16
sum de = -5.46964104205975e-32
Info: cfl dt = 49.43176173095154 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 | 4.3631e+04 | 2592 | 1 | 5.941e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2995430.2725657723 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2113.759401836679, dt = 7.560994064445822 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (1.9%)
patch tree reduce : 1.43 us (0.7%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 661.00 ns (0.3%)
LB compute : 193.92 us (93.4%)
LB move op cnt : 0
LB apply : 2.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.735362648186146e-22,-2.0173807416652986e-25,2.8024137313649076e-24)
sum a = (1.5738377970958338e-25,1.5238096388913044e-25,2.0414625716209282e-25)
sum e = 7.857379375485295e-16
sum de = -2.1570415377137042e-32
Info: cfl dt = 49.431949084396415 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 | 4.6736e+04 | 2592 | 1 | 5.546e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 490793.6209185349 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 52 [SPH][rank=0]
Info: time since start : 13.621580544 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000316476 s
sph::RenderFieldGetter compute custom field took : 0.00025106900000000003 s
rho_t_ampl=0.00111365, rho_t_phi=3.14159 rad
eps_t_ampl=-1.81419e-07, eps_t_phi=6.28319 rad
vx_t_ampl=5.77525e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 2474.87s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 2121.320395901125, dt = 49.431949084396415 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.39 us (4.2%)
patch tree reduce : 1.53 us (0.6%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 225.33 us (90.6%)
LB move op cnt : 0
LB apply : 3.46 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.68683719464166e-22,7.57788983737244e-24,1.3219353203117036e-23)
sum a = (1.7943556149301154e-25,-2.259199911564309e-25,1.1159988217736507e-25)
sum e = 7.859911274374362e-16
sum de = -1.3866695599588098e-32
Info: cfl dt = 49.43310807080794 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 | 4.3891e+04 | 2592 | 1 | 5.905e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3013378.867579712 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2170.752344985521, dt = 49.43310807080794 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (2.1%)
patch tree reduce : 1.28 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.6%)
LB compute : 184.19 us (92.1%)
LB move op cnt : 0
LB apply : 2.90 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5705301551937646e-22,-1.2938917436923863e-23,1.644870839139168e-23)
sum a = (1.3852881677480456e-25,1.0106511647465574e-25,1.5125795132780696e-25)
sum e = 7.860031042973891e-16
sum de = -6.933347799794049e-33
Info: cfl dt = 49.434308143467625 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 | 4.4807e+04 | 2592 | 1 | 5.785e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3076344.7639626483 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2220.185453056329, dt = 49.434308143467625 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.63 us (1.5%)
patch tree reduce : 1.39 us (0.6%)
gen split merge : 571.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 229.93 us (94.9%)
LB move op cnt : 0
LB apply : 2.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5068565441935925e-22,1.3820286661768738e-25,2.4906251375573156e-23)
sum a = (1.685413043185948e-25,2.8495173891729097e-26,1.7988305595437421e-25)
sum e = 7.86013075482356e-16
sum de = 1.8488927466117464e-32
Info: cfl dt = 49.435538248006296 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 | 4.4740e+04 | 2592 | 1 | 5.793e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3071802.3668754976 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2269.619761199797, dt = 49.435538248006296 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (2.0%)
patch tree reduce : 681.00 ns (0.4%)
gen split merge : 671.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.4%)
LB compute : 178.66 us (93.4%)
LB move op cnt : 0
LB apply : 1.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4259807882861155e-22,-2.457162722883411e-25,3.4506398189741365e-23)
sum a = (7.533209592758376e-26,-1.2660137203805932e-25,4.975717902424662e-26)
sum e = 7.860228144546755e-16
sum de = -8.474091755303838e-33
Info: cfl dt = 49.43679762672564 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 | 4.4823e+04 | 2592 | 1 | 5.783e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3077592.4874265506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2319.055299447803, dt = 49.43679762672564 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (2.3%)
patch tree reduce : 1.07 us (0.6%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 179.40 us (92.2%)
LB move op cnt : 0
LB apply : 2.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4044139200441217e-22,-1.0338537229620961e-23,3.374981239662521e-23)
sum a = (-1.1325514305371804e-25,-9.340166393750601e-26,-1.9697175058555063e-25)
sum e = 7.860323291439586e-16
sum de = 3.389636702121535e-32
Info: cfl dt = 49.438085658404326 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 | 4.4724e+04 | 2592 | 1 | 5.796e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3070848.1337383203 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2368.492097074529, dt = 49.438085658404326 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (2.0%)
patch tree reduce : 1.40 us (0.7%)
gen split merge : 992.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 177.30 us (92.7%)
LB move op cnt : 0
LB apply : 2.86 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.51494411978434e-22,-1.413510436736592e-23,1.791316203800785e-23)
sum a = (-6.18051644072205e-26,8.381424358593018e-26,-5.339059481149629e-26)
sum e = 7.860416009984607e-16
sum de = -2.465190328815662e-32
Info: cfl dt = 49.439401708257456 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 | 4.4967e+04 | 2592 | 1 | 5.764e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3087638.277979875 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2417.930182732933, dt = 49.439401708257456 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (2.0%)
patch tree reduce : 831.00 ns (0.4%)
gen split merge : 630.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 620.00 ns (0.3%)
LB compute : 179.69 us (93.2%)
LB move op cnt : 0
LB apply : 2.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.529835528808574e-22,-5.61446638325454e-24,1.8822751712711954e-23)
sum a = (4.1846985556045033e-26,8.835164019165329e-26,-1.2694962944922014e-25)
sum e = 7.860506117450503e-16
sum de = -8.08890576642639e-33
Info: cfl dt = 49.440745127231565 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 | 4.4036e+04 | 2592 | 1 | 5.886e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3023788.3633388886 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2467.3695844411905, dt = 7.504210776788568 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.76 us (1.9%)
patch tree reduce : 801.00 ns (0.4%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 182.74 us (93.0%)
LB move op cnt : 0
LB apply : 2.49 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5100658995867464e-22,-4.8349941921423005e-24,1.6051737603933383e-23)
sum a = (3.8814395440404743e-25,-7.748696142692685e-26,4.912679973721758e-26)
sum e = 7.857510307892911e-16
sum de = -2.2340787354891936e-32
Info: cfl dt = 49.440959934405726 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 | 3.3050e+04 | 2592 | 1 | 7.843e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 344466.4314104468 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 60 [SPH][rank=0]
Info: time since start : 14.345123165 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00030884500000000003 s
sph::RenderFieldGetter compute custom field took : 0.000262246 s
rho_t_ampl=0.00122446, rho_t_phi=3.14159 rad
eps_t_ampl=-2.27807e-07, eps_t_phi=6.28319 rad
vx_t_ampl=4.40845e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 2828.43s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 2474.873795217979, dt = 49.440959934405726 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.99 us (3.7%)
patch tree reduce : 1.58 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 243.75 us (91.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3131398526628264e-22,-9.289880354907944e-24,1.9141271060163683e-23)
sum a = (-2.3447099186779815e-25,7.317791602051826e-26,2.3959246499662953e-26)
sum e = 7.860573658921793e-16
sum de = -1.502225356622044e-32
Info: cfl dt = 49.44232590168062 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 | 4.4308e+04 | 2592 | 1 | 5.850e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3042552.961227393 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2524.314755152385, dt = 49.44232590168062 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.05 us (2.1%)
patch tree reduce : 691.00 ns (0.4%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 183.23 us (93.0%)
LB move op cnt : 0
LB apply : 2.32 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5623142053872907e-22,-1.9497836936969956e-24,1.970371793833373e-23)
sum a = (2.2036737930022757e-25,-1.6602498477633075e-25,-6.608886921019645e-27)
sum e = 7.860672522956878e-16
sum de = -1.771855548836257e-32
Info: cfl dt = 49.443725777097555 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 | 4.4759e+04 | 2592 | 1 | 5.791e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3073598.045461019 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2573.7570810540656, dt = 49.443725777097555 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (2.0%)
patch tree reduce : 802.00 ns (0.4%)
gen split merge : 741.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.6%)
LB compute : 180.68 us (92.8%)
LB move op cnt : 0
LB apply : 2.55 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3569154602254448e-22,-1.607164947006616e-23,1.8621270138312572e-23)
sum a = (1.520181386616543e-25,-8.488288606318548e-26,-1.2554227302330098e-25)
sum e = 7.860753603674421e-16
sum de = 0
Info: cfl dt = 49.445117960810094 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 | 4.5119e+04 | 2592 | 1 | 5.745e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3098436.72539133 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2623.200806831163, dt = 49.445117960810094 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (1.9%)
patch tree reduce : 1.38 us (0.7%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.4%)
LB compute : 182.34 us (93.3%)
LB move op cnt : 0
LB apply : 2.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2964512046184265e-22,-1.8262335402961765e-23,9.473562775509023e-24)
sum a = (-1.9053040337950043e-25,-1.25850648494098e-25,-5.3319359976484624e-27)
sum e = 7.86083103060583e-16
sum de = 1.0785207688568521e-32
Info: cfl dt = 49.44651006781 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 | 4.4699e+04 | 2592 | 1 | 5.799e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3069661.7418336915 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2672.645924791973, dt = 49.44651006781 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (2.2%)
patch tree reduce : 691.00 ns (0.4%)
gen split merge : 580.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.4%)
LB compute : 183.34 us (93.3%)
LB move op cnt : 0
LB apply : 2.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4759183582035894e-22,-2.549692450562278e-23,1.2181824295708467e-23)
sum a = (-1.9306278536941087e-27,1.0419504110536305e-25,-1.61785313136289e-25)
sum e = 7.860904988174383e-16
sum de = -6.548161810916602e-33
Info: cfl dt = 49.44792603190051 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 | 4.4361e+04 | 2592 | 1 | 5.843e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3046538.5749541004 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2722.0924348597828, dt = 49.44792603190051 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.98 us (1.8%)
patch tree reduce : 952.00 ns (0.4%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.4%)
LB compute : 212.78 us (93.7%)
LB move op cnt : 0
LB apply : 2.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4240551750502234e-22,-1.4659232220010358e-23,3.1383935478426485e-25)
sum a = (-6.829909446055522e-26,3.1021483492895186e-26,-7.428217260685127e-26)
sum e = 7.860975335158785e-16
sum de = -1.9644485432749806e-32
Info: cfl dt = 49.44936515282483 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 | 4.4075e+04 | 2592 | 1 | 5.881e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3026939.3721199543 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2771.540360891683, dt = 49.44936515282483 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.21 us (2.1%)
patch tree reduce : 992.00 ns (0.5%)
gen split merge : 831.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 182.72 us (92.5%)
LB move op cnt : 0
LB apply : 2.72 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4783574683023862e-22,-1.493262918256465e-23,-1.1959425125765756e-24)
sum a = (-1.88913189138419e-25,-1.318677980892457e-25,-6.65293311753369e-26)
sum e = 7.861041932749721e-16
sum de = 2.6963019221421302e-33
Info: cfl dt = 49.450826718632314 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 | 4.4411e+04 | 2592 | 1 | 5.836e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3050118.3533790875 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2820.9897260445077, dt = 7.437468490325045 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (1.9%)
patch tree reduce : 1.18 us (0.6%)
gen split merge : 701.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.3%)
LB compute : 183.57 us (94.0%)
LB move op cnt : 0
LB apply : 1.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (57.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5094240285081156e-22,-1.9938822426460502e-23,-1.499065773412927e-24)
sum a = (1.9167122892941057e-25,1.4279814679998987e-25,2.337167731758773e-25)
sum e = 7.857611779893713e-16
sum de = -7.318533788671496e-33
Info: cfl dt = 49.45105400900269 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 | 3.3068e+04 | 2592 | 1 | 7.838e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341586.5270044547 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 68 [SPH][rank=0]
Info: time since start : 15.221574441000001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000323056 s
sph::RenderFieldGetter compute custom field took : 0.00024999800000000003 s
rho_t_ampl=0.00130431, rho_t_phi=3.14159 rad
eps_t_ampl=-2.75838e-07, eps_t_phi=6.28319 rad
vx_t_ampl=2.9303e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 3181.98s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 2828.427194534833, dt = 49.45105400900269 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.97 us (4.2%)
patch tree reduce : 1.79 us (0.8%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.4%)
LB compute : 212.81 us (90.6%)
LB move op cnt : 0
LB apply : 2.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4123731214191433e-22,-1.1857765838855162e-23,1.1175010469941887e-23)
sum a = (2.232006383582462e-25,5.413745140377431e-26,1.771884119376355e-26)
sum e = 7.861090821818707e-16
sum de = 1.1555579666323415e-32
Info: cfl dt = 49.4525353380744 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 | 3.1061e+04 | 2592 | 1 | 8.345e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2133365.3826531405 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2877.8782485438355, dt = 49.4525353380744 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (1.9%)
patch tree reduce : 1.16 us (0.5%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 209.70 us (92.9%)
LB move op cnt : 0
LB apply : 3.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2869515126546912e-22,-1.1369542649671633e-23,6.710589390088923e-24)
sum a = (-1.6901769300976606e-25,6.328604372681541e-27,1.0819829444048442e-25)
sum e = 7.86115876104294e-16
sum de = -6.162975822039155e-33
Info: cfl dt = 49.45404252666251 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 | 3.1702e+04 | 2592 | 1 | 8.176e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2177440.3163663694 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2927.33078388191, dt = 49.45404252666251 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (2.0%)
patch tree reduce : 1.31 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 202.74 us (92.7%)
LB move op cnt : 0
LB apply : 3.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4768811648215354e-22,-1.2238475622368037e-23,1.4298651624191645e-23)
sum a = (-1.159505001221871e-25,-6.60577953633588e-26,-1.1403040929318697e-25)
sum e = 7.861213114217429e-16
sum de = -1.925929944387236e-33
Info: cfl dt = 49.45557002481608 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 | 3.1641e+04 | 2592 | 1 | 8.192e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2173298.2644415936 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2976.7848264085724, dt = 49.45557002481608 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.77 us (2.4%)
patch tree reduce : 1.28 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 183.82 us (91.8%)
LB move op cnt : 0
LB apply : 2.68 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5163562361573278e-22,-1.729932820030354e-23,3.1641588498732334e-24)
sum a = (-1.7119905175355032e-25,-1.3751345461169342e-25,7.279759428394215e-26)
sum e = 7.861262832375054e-16
sum de = 1.5407439555097887e-33
Info: cfl dt = 49.45711689590888 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 | 4.4538e+04 | 2592 | 1 | 5.820e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3059242.3042111765 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3026.2403964333885, dt = 49.45711689590888 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (2.0%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 182.90 us (92.3%)
LB move op cnt : 0
LB apply : 2.50 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6216872801606369e-22,-2.586810651531223e-23,1.1384360686874573e-23)
sum a = (-2.3781824925050157e-26,-1.2600681662075767e-25,-1.5122012609482263e-25)
sum e = 7.861308207243586e-16
sum de = -1.8681520460556188e-32
Info: cfl dt = 49.45868237287137 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 | 4.4844e+04 | 2592 | 1 | 5.780e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3080346.350262454 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3075.697513329297, dt = 49.45868237287137 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (1.6%)
patch tree reduce : 781.00 ns (0.3%)
gen split merge : 441.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.2%)
LB compute : 213.82 us (95.1%)
LB move op cnt : 0
LB apply : 2.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5921612105436215e-22,-3.181343738112972e-23,-1.634422789799141e-24)
sum a = (2.982443937622263e-26,-3.3711355823143507e-26,5.619219310931872e-26)
sum e = 7.86134914998775e-16
sum de = -7.51112678311022e-33
Info: cfl dt = 49.46026567961113 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 | 4.4473e+04 | 2592 | 1 | 5.828e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3054941.6621328187 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3125.1561957021686, dt = 49.46026567961113 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (1.9%)
patch tree reduce : 801.00 ns (0.4%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 183.04 us (93.2%)
LB move op cnt : 0
LB apply : 2.28 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.566550554506254e-22,-3.1199246992764907e-23,6.274028018381761e-24)
sum a = (5.850805320253511e-26,1.760796852359613e-27,-3.32761451233949e-26)
sum e = 7.861385579691712e-16
sum de = 3.4666738998970245e-33
Info: cfl dt = 49.461866030987416 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 | 4.5721e+04 | 2592 | 1 | 5.669e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3140799.189301529 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3174.6164613817796, dt = 7.3641324699074175 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (2.3%)
patch tree reduce : 1.16 us (0.6%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.5%)
LB compute : 181.68 us (92.3%)
LB move op cnt : 0
LB apply : 2.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5553178106302155e-22,-3.0308349994096605e-23,3.8164141881539275e-24)
sum a = (1.9227298306562692e-25,2.131796298619715e-25,-9.206519369513245e-26)
sum e = 7.857673930014489e-16
sum de = 4.622231866529366e-33
Info: cfl dt = 49.46210841402662 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 | 4.6515e+04 | 2592 | 1 | 5.572e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 475755.15272656025 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 76 [SPH][rank=0]
Info: time since start : 15.987171034000001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00029197 s
sph::RenderFieldGetter compute custom field took : 0.00027390300000000004 s
rho_t_ampl=0.00135119, rho_t_phi=3.14159 rad
eps_t_ampl=-3.24295e-07, eps_t_phi=6.28319 rad
vx_t_ampl=1.37817e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 3535.53s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 3181.980593851687, dt = 49.46210841402662 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.30 us (4.2%)
patch tree reduce : 1.40 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 220.90 us (90.4%)
LB move op cnt : 0
LB apply : 3.46 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4479327791752878e-22,-1.8987850306526605e-23,-9.537895742847449e-25)
sum a = (1.7200139060183879e-25,-6.130859971473728e-27,-6.066196531977481e-27)
sum e = 7.861411079037307e-16
sum de = 1.2518544638517033e-32
Info: cfl dt = 49.46372508678392 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 | 4.5007e+04 | 2592 | 1 | 5.759e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3091834.708190339 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3231.4427022657137, dt = 49.46372508678392 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.11 us (2.0%)
patch tree reduce : 841.00 ns (0.4%)
gen split merge : 751.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 186.28 us (92.8%)
LB move op cnt : 0
LB apply : 2.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3714538401564319e-22,-2.471213681964063e-23,8.729996087273788e-25)
sum a = (-4.125275334653139e-25,6.716718161025375e-26,9.185299436949195e-26)
sum e = 7.861441176626811e-16
sum de = -2.0222264416065976e-33
Info: cfl dt = 49.46535918124515 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 | 4.5738e+04 | 2592 | 1 | 5.667e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3142203.991076762 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3280.9064273524978, dt = 49.46535918124515 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.32 us (2.1%)
patch tree reduce : 1.22 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.4%)
LB compute : 196.28 us (93.5%)
LB move op cnt : 0
LB apply : 2.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.724033623648313e-22,-1.9579876084207452e-23,7.838264936822594e-24)
sum a = (-4.04002683202249e-25,-9.058481012327257e-26,6.721505145147296e-26)
sum e = 7.861463393379277e-16
sum de = -3.4666738998970245e-33
Info: cfl dt = 49.466999564413214 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 | 4.5727e+04 | 2592 | 1 | 5.668e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3141510.033533128 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3330.371786533743, dt = 49.466999564413214 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (2.0%)
patch tree reduce : 651.00 ns (0.3%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.4%)
LB compute : 182.08 us (94.0%)
LB move op cnt : 0
LB apply : 1.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9203017527166363e-22,-2.796331412526151e-23,1.0553829509736643e-23)
sum a = (-2.3737947019284385e-25,1.3809101713468622e-26,-9.50826636110513e-26)
sum e = 7.861480429816168e-16
sum de = -8.185202263645752e-34
Info: cfl dt = 49.468557207586414 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 | 4.6660e+04 | 2592 | 1 | 5.555e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3205747.0627843994 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3379.838786098156, dt = 49.468557207586414 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (2.0%)
patch tree reduce : 701.00 ns (0.4%)
gen split merge : 701.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.4%)
LB compute : 185.55 us (93.2%)
LB move op cnt : 0
LB apply : 2.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (55.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9965078965270744e-22,-2.4700803783408555e-23,1.836036825278248e-24)
sum a = (-3.1283693156547267e-25,-1.6642262829733307e-26,-4.00147725790046e-26)
sum e = 7.861492664866158e-16
sum de = 1.0592614694129797e-33
Info: cfl dt = 49.46998695776424 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 | 4.6490e+04 | 2592 | 1 | 5.575e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3194161.185069422 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3429.3073433057425, dt = 49.46998695776424 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (2.0%)
patch tree reduce : 1.32 us (0.7%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 701.00 ns (0.4%)
LB compute : 179.40 us (93.1%)
LB move op cnt : 0
LB apply : 2.46 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1704549588360125e-22,-2.6270780324797e-23,1.2185711065916392e-24)
sum a = (1.8154170096976875e-25,-3.384396895798025e-26,3.2806394353565785e-26)
sum e = 7.861500066740689e-16
sum de = -1.8168440686309276e-34
Info: cfl dt = 49.47022280386447 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 | 4.6502e+04 | 2592 | 1 | 5.574e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3195069.60808541 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3478.777330263507, dt = 49.47022280386447 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.59 us (1.9%)
patch tree reduce : 781.00 ns (0.4%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 671.00 ns (0.3%)
LB compute : 180.11 us (93.7%)
LB move op cnt : 0
LB apply : 2.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9578833043704678e-22,-2.8373911030873125e-23,4.6427418338606245e-24)
sum a = (1.856286144782381e-25,1.719533501715305e-25,-2.2182085768191625e-26)
sum e = 7.861502451817994e-16
sum de = 1.3240768367662246e-33
Info: cfl dt = 49.47015036198972 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 | 4.6441e+04 | 2592 | 1 | 5.581e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3190922.0152813196 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3528.2475530673714, dt = 7.286440101169774 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (1.7%)
patch tree reduce : 711.00 ns (0.3%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.4%)
LB compute : 201.70 us (93.8%)
LB move op cnt : 0
LB apply : 2.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9431684098928574e-22,-2.203563471410636e-23,3.120967212952953e-24)
sum a = (3.2419504088655617e-26,1.0374597816354145e-25,-3.0421127694341786e-26)
sum e = 7.85769089083232e-16
sum de = -1.4444474582904269e-34
Info: cfl dt = 49.470104286954104 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 | 4.4872e+04 | 2592 | 1 | 5.776e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 454111.48157198547 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 84 [SPH][rank=0]
Info: time since start : 16.67409264 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00028924500000000004 s
sph::RenderFieldGetter compute custom field took : 0.000231081 s
rho_t_ampl=0.00136391, rho_t_phi=3.14159 rad
eps_t_ampl=-3.71953e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-2.0868e-09, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 3889.09s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 3535.533993168541, dt = 49.470104286954104 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.44 us (3.9%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.4%)
LB compute : 244.85 us (91.4%)
LB move op cnt : 0
LB apply : 3.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9329626597426283e-22,-1.7147987035045128e-23,1.5860142106420022e-24)
sum a = (1.9331351625950103e-26,8.906685984981081e-26,1.2368932877188336e-26)
sum e = 7.861501851664419e-16
sum de = -1.925929944387236e-34
Info: cfl dt = 49.468940683070535 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 | 4.6137e+04 | 2592 | 1 | 5.618e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3170013.2641282296 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3585.0040974554954, dt = 49.468940683070535 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (2.0%)
patch tree reduce : 801.00 ns (0.4%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.6%)
LB compute : 178.41 us (92.5%)
LB move op cnt : 0
LB apply : 2.58 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9252281132451275e-22,-1.3106205086792007e-23,3.256306596924555e-24)
sum a = (2.2014172149914643e-25,-1.5591396780818385e-25,-9.362353830398962e-28)
sum e = 7.861490507286643e-16
sum de = -1.3481509610710651e-33
Info: cfl dt = 49.46737430453776 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 | 4.6773e+04 | 2592 | 1 | 5.542e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3213595.6430325992 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3634.473038138566, dt = 49.46737430453776 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (2.3%)
patch tree reduce : 1.15 us (0.6%)
gen split merge : 841.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.5%)
LB compute : 180.27 us (92.2%)
LB move op cnt : 0
LB apply : 2.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7645998758177776e-22,-2.68807584342083e-23,2.8808972010724127e-24)
sum a = (-1.4551167206381507e-25,1.7562425608013347e-25,-2.882023320468422e-25)
sum e = 7.861477866932783e-16
sum de = -9.62964972193618e-35
Info: cfl dt = 49.46578495670764 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 | 3.8345e+04 | 2592 | 1 | 6.760e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2634467.500582287 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3683.940412443104, dt = 49.46578495670764 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (1.7%)
patch tree reduce : 1.31 us (0.6%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 711.00 ns (0.3%)
LB compute : 209.43 us (93.9%)
LB move op cnt : 0
LB apply : 2.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9329626597426283e-22,-9.993932694281068e-24,-1.8480407144317976e-23)
sum a = (8.455899268290106e-26,1.1432598922043703e-25,-4.6850961004030373e-26)
sum e = 7.861460002655481e-16
sum de = 5.7777898331617076e-34
Info: cfl dt = 49.46414277827948 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2860e+04 | 2592 | 1 | 7.888e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2257588.116651478 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3733.4061973998114, dt = 49.46414277827948 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.41 us (2.2%)
patch tree reduce : 1.27 us (0.6%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 188.71 us (92.7%)
LB move op cnt : 0
LB apply : 2.63 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.828883264342649e-22,-5.8478466957504464e-24,-1.4828532259225485e-23)
sum a = (3.9080170183900296e-25,3.721453647812174e-26,-1.9069636105679978e-25)
sum e = 7.861437389625003e-16
sum de = -1.5792625543975334e-32
Info: cfl dt = 49.46251601009535 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.1270e+04 | 2592 | 1 | 6.281e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2835252.005381683 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3782.870340178091, dt = 49.46251601009535 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.42 us (2.1%)
patch tree reduce : 832.00 ns (0.4%)
gen split merge : 590.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 198.70 us (93.0%)
LB move op cnt : 0
LB apply : 2.77 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5627635151423324e-22,-5.9164466672791096e-24,-2.78184487741579e-23)
sum a = (1.0086903708326493e-25,-1.3451134396987971e-25,3.278743327133499e-26)
sum e = 7.861410084945503e-16
sum de = 1.1940765655200862e-32
Info: cfl dt = 49.46090545601917 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3275e+04 | 2592 | 1 | 5.990e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2972914.2189240074 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3832.3328561881863, dt = 49.46090545601917 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.10 us (2.0%)
patch tree reduce : 701.00 ns (0.3%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 185.84 us (92.6%)
LB move op cnt : 0
LB apply : 2.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5833675767663801e-22,-1.682484506389695e-23,-2.06697172595039e-23)
sum a = (1.9916808254310588e-25,5.1555021177599764e-26,-5.46781949321956e-26)
sum e = 7.861378144665888e-16
sum de = -9.62964972193618e-34
Info: cfl dt = 49.45931191161338 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4228e+04 | 2592 | 1 | 5.861e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3038289.8053481323 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3881.7937616442055, dt = 7.293630841189497 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (2.1%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 186.01 us (92.9%)
LB move op cnt : 0
LB apply : 2.54 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5435073827834094e-22,-1.184151847717732e-23,-2.3231584412015113e-23)
sum a = (-9.540310367929979e-26,3.028868818699286e-25,-1.4878072925021628e-25)
sum e = 7.857663298082192e-16
sum de = -1.1362986671884692e-32
Info: cfl dt = 49.45908158793109 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4341e+04 | 2592 | 1 | 5.846e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 449180.32089289266 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 92 [SPH][rank=0]
Info: time since start : 17.406916824 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000299621 s
sph::RenderFieldGetter compute custom field took : 0.00022665400000000002 s
rho_t_ampl=0.00134216, rho_t_phi=3.14159 rad
eps_t_ampl=-4.17606e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-1.79011e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 4242.64s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 3889.087392485395, dt = 49.45908158793109 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.17 us (3.9%)
patch tree reduce : 1.30 us (0.5%)
gen split merge : 762.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 234.71 us (91.0%)
LB move op cnt : 0
LB apply : 3.43 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.599157605300697e-22,4.054619369825736e-24,-3.0933317211980566e-23)
sum a = (1.0731282095858163e-26,-1.628393802585077e-25,-5.289535590773017e-26)
sum e = 7.861351701686406e-16
sum de = -5.970382827600431e-33
Info: cfl dt = 49.45750493189662 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0064e+04 | 2592 | 1 | 8.622e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2065162.765901944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3938.546474073326, dt = 49.45750493189662 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 us (2.0%)
patch tree reduce : 1.26 us (0.6%)
gen split merge : 971.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 210.52 us (93.0%)
LB move op cnt : 0
LB apply : 2.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5745097558812755e-22,-1.5517032741186758e-23,-3.1178188286049466e-23)
sum a = (2.2684877280905778e-25,-5.362604853556896e-26,1.0916956873867285e-26)
sum e = 7.861300381389838e-16
sum de = 7.318533788671496e-33
Info: cfl dt = 49.4559507539907 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0866e+04 | 2592 | 1 | 8.398e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2120227.8490004735 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3988.0039790052224, dt = 49.4559507539907 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (2.0%)
patch tree reduce : 1.25 us (0.5%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 210.79 us (92.6%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.399535699846528e-22,-1.5468290656153235e-23,-2.906028091744228e-23)
sum a = (-7.022972231424933e-26,3.9468470061576615e-26,1.3246448348978955e-25)
sum e = 7.861254750056743e-16
sum de = 7.318533788671496e-33
Info: cfl dt = 49.454415837317256 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1035e+04 | 2592 | 1 | 8.352e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2131751.265580901 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4037.459929759213, dt = 49.454415837317256 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (1.7%)
patch tree reduce : 1.25 us (0.5%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 247.41 us (94.0%)
LB move op cnt : 0
LB apply : 2.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5141738744899833e-22,-1.1214290082527816e-23,-1.9503703021972584e-23)
sum a = (-1.4305450934093166e-25,-2.5621954598102354e-26,-1.0465791745283333e-25)
sum e = 7.861204378365345e-16
sum de = 5.3926038442842604e-33
Info: cfl dt = 49.452901129416254 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1064e+04 | 2592 | 1 | 8.344e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2133685.8456096756 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4086.9143455965304, dt = 49.452901129416254 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.71 us (2.1%)
patch tree reduce : 1.40 us (0.6%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 210.53 us (92.3%)
LB move op cnt : 0
LB apply : 2.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6012115927523154e-22,-1.4089070175945372e-23,-3.0542715576463696e-23)
sum a = (-2.2450443898671496e-25,-2.3565471590593467e-26,-1.4126353840759175e-25)
sum e = 7.861149802745481e-16
sum de = 5.007417855406813e-33
Info: cfl dt = 49.45140737462028 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0952e+04 | 2592 | 1 | 8.374e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2125902.783278986 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4136.367246725947, dt = 49.45140737462028 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.73 us (1.9%)
patch tree reduce : 1.31 us (0.5%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 234.27 us (93.1%)
LB move op cnt : 0
LB apply : 2.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7290723116155646e-22,-1.5205524683338764e-23,-3.843352343835885e-23)
sum a = (-2.3967365783716863e-25,-2.12825717334104e-25,-1.6546116963234827e-25)
sum e = 7.861091131661844e-16
sum de = 2.6963019221421302e-33
Info: cfl dt = 49.44993530689493 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0936e+04 | 2592 | 1 | 8.379e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2124754.3395652873 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4185.818654100567, dt = 49.44993530689493 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (2.0%)
patch tree reduce : 1.57 us (0.7%)
gen split merge : 520.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 205.71 us (92.7%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.860527508519146e-22,-3.0406034748875724e-23,-4.721387103208411e-23)
sum a = (3.8111095293701887e-26,-2.1704686001635016e-25,-9.84775523533057e-26)
sum e = 7.861028483089323e-16
sum de = 1.4251881588465545e-32
Info: cfl dt = 49.448485648867276 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0694e+04 | 2592 | 1 | 8.445e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2108065.9728744505 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4235.268589407462, dt = 7.372202394787564 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (1.8%)
patch tree reduce : 1.27 us (0.5%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 236.06 us (93.4%)
LB move op cnt : 0
LB apply : 2.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7891514445754045e-22,-3.211180714033699e-23,-4.628369970884395e-23)
sum a = (2.2489307186635465e-25,1.2836001417183222e-25,2.9657887715815214e-27)
sum e = 7.857593778421514e-16
sum de = 2.3496345321524277e-32
Info: cfl dt = 49.44827751403298 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2204e+04 | 2592 | 1 | 8.049e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329738.1583892338 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 100 [SPH][rank=0]
Info: time since start : 18.307662649 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.0002851 s
sph::RenderFieldGetter compute custom field took : 0.000218191 s
rho_t_ampl=0.00128649, rho_t_phi=3.14159 rad
eps_t_ampl=-4.601e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-3.32612e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 4596.19s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 4242.64079180225, dt = 49.44827751403298 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.63 us (2.2%)
patch tree reduce : 1.68 us (0.3%)
gen split merge : 681.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.03 us (0.2%)
LB compute : 463.61 us (95.1%)
LB move op cnt : 0
LB apply : 3.60 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6620609710065123e-22,-2.4497410885367428e-23,-4.5763116141427735e-23)
sum a = (-4.3363907441090403e-26,9.782912092442981e-26,-2.0564732234521276e-25)
sum e = 7.86097914958768e-16
sum de = -9.629649721936179e-33
Info: cfl dt = 49.44684805781796 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0776e+04 | 2592 | 1 | 8.422e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2113653.036298164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4292.089069316283, dt = 49.44684805781796 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.74 us (2.1%)
patch tree reduce : 1.56 us (0.7%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 211.30 us (92.7%)
LB move op cnt : 0
LB apply : 2.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.761165865547103e-22,-2.0413706732291236e-23,-6.108950754870933e-23)
sum a = (1.520181386616543e-25,7.328374208565202e-26,7.874033935701557e-26)
sum e = 7.860893081722023e-16
sum de = -2.4266717299279172e-32
Info: cfl dt = 49.44544913716429 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0660e+04 | 2592 | 1 | 8.454e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2105635.036027671 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4341.535917374101, dt = 49.44544913716429 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (1.8%)
patch tree reduce : 1.44 us (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 253.43 us (93.8%)
LB move op cnt : 0
LB apply : 2.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6266296874660938e-22,-1.738708401183509e-23,-5.0165119355140454e-23)
sum a = (-1.9268668903427565e-26,1.2929761058231383e-25,-1.1749943168383094e-25)
sum e = 7.860819165480585e-16
sum de = 1.6948183510607676e-32
Info: cfl dt = 49.44407463922805 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0788e+04 | 2592 | 1 | 8.419e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2114311.0004165396 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4390.981366511265, dt = 49.44407463922805 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (1.8%)
patch tree reduce : 1.56 us (0.7%)
gen split merge : 841.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 220.09 us (93.1%)
LB move op cnt : 0
LB apply : 2.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6858102009158506e-22,-9.612621156631976e-24,-6.082635183422082e-23)
sum a = (2.886539372162783e-25,1.3353143672169538e-25,-9.93703766900994e-26)
sum e = 7.860741438141546e-16
sum de = 4.2755644765396636e-32
Info: cfl dt = 49.442718689657504 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0296e+04 | 2592 | 1 | 8.556e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2080515.654533086 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4440.4254411504935, dt = 49.442718689657504 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (1.8%)
patch tree reduce : 1.45 us (0.6%)
gen split merge : 881.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 217.31 us (93.3%)
LB move op cnt : 0
LB apply : 2.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4642363045725095e-22,-2.9032631225317952e-24,-6.529130624087019e-23)
sum a = (9.635588106164233e-26,1.8193939346164808e-25,-2.3635229877767156e-26)
sum e = 7.860660459753382e-16
sum de = 4.1600086798764294e-32
Info: cfl dt = 49.441339048566846 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0542e+04 | 2592 | 1 | 8.487e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2097318.3221226814 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4489.868159840151, dt = 49.441339048566846 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.21 us (1.9%)
patch tree reduce : 1.38 us (0.6%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 207.15 us (92.9%)
LB move op cnt : 0
LB apply : 2.80 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4625674397680694e-22,7.289248436700666e-24,-6.458758787537016e-23)
sum a = (-3.397654291611541e-25,-1.552704415139115e-25,-5.195915998604608e-26)
sum e = 7.86057638467712e-16
sum de = -1.5407439555097887e-33
Info: cfl dt = 49.439986074370886 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0575e+04 | 2592 | 1 | 8.478e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2099524.026584671 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4539.309498888718, dt = 49.439986074370886 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (1.7%)
patch tree reduce : 1.44 us (0.6%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 238.90 us (93.5%)
LB move op cnt : 0
LB apply : 2.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7464028307385952e-22,-8.729446669378453e-24,-6.78566345373608e-23)
sum a = (3.5180051188548105e-25,2.0091722432674645e-26,-1.081809125522716e-25)
sum e = 7.860489387501474e-16
sum de = 3.3125995043460457e-32
Info: cfl dt = 49.43866042659893 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0604e+04 | 2592 | 1 | 8.469e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2101486.1121598063 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4588.749484963088, dt = 7.4447061560158545 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.79 us (1.9%)
patch tree reduce : 1.39 us (0.6%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 233.02 us (93.3%)
LB move op cnt : 0
LB apply : 2.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5284234124355863e-22,-4.2411631520528035e-24,-7.00518109749747e-23)
sum a = (5.284153508649785e-26,-2.9051874821132375e-26,9.429133225636924e-27)
sum e = 7.857487821732598e-16
sum de = -5.3926038442842604e-33
Info: cfl dt = 49.4384721908313 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2334e+04 | 2592 | 1 | 8.016e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 334324.68546432286 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 108 [SPH][rank=0]
Info: time since start : 19.216028775 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000278791 s
sph::RenderFieldGetter compute custom field took : 0.00021536700000000003 s
rho_t_ampl=0.00119831, rho_t_phi=3.14159 rad
eps_t_ampl=-4.98362e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-4.77787e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 4949.75s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 4596.194191119104, dt = 49.4384721908313 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.21 us (3.8%)
patch tree reduce : 1.51 us (0.6%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 245.78 us (91.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5350988716533462e-22,-5.859280024338557e-24,-6.914786291830562e-23)
sum a = (-1.1376914137840284e-25,5.446663363877157e-26,-1.0832622441334187e-25)
sum e = 7.860422139374891e-16
sum de = -3.0814879110195774e-33
Info: cfl dt = 49.437169421314806 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3440e+04 | 2592 | 1 | 5.967e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2982813.631251286 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4645.632663309935, dt = 49.437169421314806 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.08 us (1.8%)
patch tree reduce : 952.00 ns (0.4%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 691.00 ns (0.3%)
LB compute : 219.26 us (94.4%)
LB move op cnt : 0
LB apply : 2.14 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6267580616818201e-22,-1.1064252717897874e-24,-7.741402731437509e-23)
sum a = (-3.829162153456679e-25,2.913110970007102e-26,-5.82411692778124e-26)
sum e = 7.860309934190323e-16
sum de = 1.0014835710813626e-32
Info: cfl dt = 49.435904890317445 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4017e+04 | 2592 | 1 | 5.889e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3022330.6157971374 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4695.06983273125, dt = 49.435904890317445 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (1.8%)
patch tree reduce : 821.00 ns (0.4%)
gen split merge : 862.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 204.19 us (93.6%)
LB move op cnt : 0
LB apply : 2.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8809390088196045e-22,-2.880396465355574e-25,-7.905520054138936e-23)
sum a = (3.142660976389865e-25,2.6807196733424965e-25,7.17840139504395e-26)
sum e = 7.860215242586268e-16
sum de = 2.0029671421627253e-32
Info: cfl dt = 49.434669491373874 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3314e+04 | 2592 | 1 | 5.984e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2973982.4099184335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4744.505737621567, dt = 49.434669491373874 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.16 us (2.1%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 881.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 186.68 us (92.4%)
LB move op cnt : 0
LB apply : 2.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.544085066754177e-22,1.8871410881168743e-23,-7.229262524127805e-23)
sum a = (1.2875031206128894e-26,-6.256940391322573e-26,-9.446816151352668e-26)
sum e = 7.860118027333097e-16
sum de = 9.244463733058732e-33
Info: cfl dt = 49.433464003826664 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4437e+04 | 2592 | 1 | 5.833e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3051020.059433724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4793.940407112941, dt = 49.433464003826664 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (1.5%)
patch tree reduce : 1.54 us (0.6%)
gen split merge : 541.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 451.00 ns (0.2%)
LB compute : 236.43 us (94.9%)
LB move op cnt : 0
LB apply : 2.20 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6290687975648907e-22,7.601358248684877e-24,-8.107182437610171e-23)
sum a = (-1.5646861196075437e-25,-4.832583257927278e-26,-7.311050768164268e-26)
sum e = 7.860018839621124e-16
sum de = 3.851859888774472e-33
Info: cfl dt = 49.43228901035153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4644e+04 | 2592 | 1 | 5.806e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3065129.3732086387 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4843.373871116768, dt = 49.43228901035153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (1.7%)
patch tree reduce : 691.00 ns (0.3%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.4%)
LB compute : 222.96 us (94.1%)
LB move op cnt : 0
LB apply : 2.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7505108056418321e-22,5.569836284818495e-24,-8.415795271555927e-23)
sum a = (1.382655493402099e-25,-1.1060621037661724e-25,8.349830185311715e-26)
sum e = 7.859917874348744e-16
sum de = -1.232595164407831e-32
Info: cfl dt = 49.431145079338776 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.1878e+04 | 2592 | 1 | 6.189e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2875170.554278473 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4892.806160127119, dt = 49.431145079338776 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (1.7%)
patch tree reduce : 951.00 ns (0.4%)
gen split merge : 782.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 216.11 us (93.5%)
LB move op cnt : 0
LB apply : 2.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (63.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.575665123822811e-22,-1.4426052492226525e-24,-7.615977007554215e-23)
sum a = (9.189287121803777e-26,-8.82180966101541e-26,3.6174213938876336e-26)
sum e = 7.859815332337111e-16
sum de = -4.622231866529366e-33
Info: cfl dt = 49.43003276336581 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3782e+04 | 2592 | 1 | 5.920e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3005818.233348229 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4942.237305206458, dt = 7.510285229500369 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (1.8%)
patch tree reduce : 1.38 us (0.6%)
gen split merge : 882.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 200.45 us (93.1%)
LB move op cnt : 0
LB apply : 2.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6051911934398263e-22,-1.5507204090295225e-24,-7.705773333862409e-23)
sum a = (-8.643947435857714e-26,6.076801020385738e-26,1.7816772155546893e-26)
sum e = 7.857356398613119e-16
sum de = -1.0014835710813626e-32
Info: cfl dt = 49.42987805442205 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6728e+04 | 2592 | 1 | 5.547e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 487415.45325574384 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 116 [SPH][rank=0]
Info: time since start : 19.923485448 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00028853500000000003 s
sph::RenderFieldGetter compute custom field took : 0.000216669 s
rho_t_ampl=0.00107986, rho_t_phi=3.14159 rad
eps_t_ampl=-5.31427e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-6.10864e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 5303.30s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 4949.747590435958, dt = 49.42987805442205 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.90 us (4.0%)
patch tree reduce : 1.52 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 225.74 us (91.2%)
LB move op cnt : 0
LB apply : 2.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.65345989855286e-22,2.0194868811420557e-24,-7.624598727559786e-23)
sum a = (1.8880036023787841e-26,9.395772824550866e-26,8.484335107037648e-26)
sum e = 7.859736985459143e-16
sum de = 4.622231866529366e-33
Info: cfl dt = 49.42879098275582 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.1762e+04 | 2592 | 1 | 6.207e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2867050.6928564934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4999.17746849038, dt = 49.42879098275582 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (1.7%)
patch tree reduce : 1.40 us (0.6%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 217.07 us (93.9%)
LB move op cnt : 0
LB apply : 2.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.61674487285518e-22,7.481007421441608e-24,-7.039572519817171e-23)
sum a = (1.3673609091066003e-25,1.621518781167156e-26,-9.24540443185226e-27)
sum e = 7.859609870335362e-16
sum de = -5.007417855406813e-32
Info: cfl dt = 49.42774866367344 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4407e+04 | 2592 | 1 | 5.837e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3048567.0347615853 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5048.606259473137, dt = 49.42774866367344 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (1.8%)
patch tree reduce : 1.46 us (0.7%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 188.53 us (93.7%)
LB move op cnt : 0
LB apply : 2.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5276531671412293e-22,6.361142973942989e-24,-7.31780514394977e-23)
sum a = (1.7651454662346137e-25,8.663486815769036e-27,-2.2418025161018877e-25)
sum e = 7.859503995005678e-16
sum de = -1.3866695599588098e-32
Info: cfl dt = 49.42673943258206 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4477e+04 | 2592 | 1 | 5.828e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3053315.061293172 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5098.03400813681, dt = 49.42673943258206 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (1.9%)
patch tree reduce : 570.00 ns (0.3%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.4%)
LB compute : 186.99 us (93.5%)
LB move op cnt : 0
LB apply : 2.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4234133039715924e-22,6.602446382565744e-24,-8.957042312446331e-23)
sum a = (-8.198900105947709e-26,1.979868070488179e-26,-3.0728189218057004e-26)
sum e = 7.859397111256562e-16
sum de = 1.0168910106364605e-31
Info: cfl dt = 49.42576393822492 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4526e+04 | 2592 | 1 | 5.821e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3056646.9520299463 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5147.460747569393, dt = 49.42576393822492 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (2.0%)
patch tree reduce : 871.00 ns (0.4%)
gen split merge : 641.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 203.06 us (93.3%)
LB move op cnt : 0
LB apply : 2.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5417743308711063e-22,7.85850784956133e-24,-8.63083350107296e-23)
sum a = (-4.177176628901799e-26,3.408167359479618e-26,2.0318735896422093e-26)
sum e = 7.85928972736855e-16
sum de = 3.4666738998970245e-32
Info: cfl dt = 49.42482264663816 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4211e+04 | 2592 | 1 | 5.863e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3034970.1719835848 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5196.886511507618, dt = 49.42482264663816 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (1.9%)
patch tree reduce : 1.15 us (0.6%)
gen split merge : 861.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.4%)
LB compute : 191.31 us (93.4%)
LB move op cnt : 0
LB apply : 2.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5384366012622263e-22,9.896047354789876e-24,-8.404256845740288e-23)
sum a = (-3.7371439167935965e-26,-6.948933162532885e-26,-2.2108694844156426e-27)
sum e = 7.859182053838843e-16
sum de = 3.3125995043460457e-32
Info: cfl dt = 49.42391600822109 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5192e+04 | 2592 | 1 | 7.365e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2415778.2852550233 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5246.311334154256, dt = 49.42391600822109 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (1.9%)
patch tree reduce : 1.25 us (0.6%)
gen split merge : 721.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 711.00 ns (0.3%)
LB compute : 199.48 us (93.1%)
LB move op cnt : 0
LB apply : 2.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5430580730283677e-22,3.905986098180299e-24,-8.470859916023224e-23)
sum a = (1.8923913929553618e-25,-1.3486231824512893e-25,7.644042461176698e-26)
sum e = 7.859074304351171e-16
sum de = -3.928897086549961e-32
Info: cfl dt = 49.423044456013194 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1568e+04 | 2592 | 1 | 8.211e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2166939.12787484 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5295.735250162476, dt = 7.565739590335397 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.41 us (1.9%)
patch tree reduce : 1.12 us (0.5%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.4%)
LB compute : 214.74 us (92.9%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4858031728145033e-22,1.2584684835404508e-24,-8.218664333677428e-23)
sum a = (-1.7094832086346017e-25,-1.9344039980173218e-25,-1.927026121563956e-26)
sum e = 7.857213068836526e-16
sum de = 6.162975822039155e-32
Info: cfl dt = 49.42292786496498 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6931e+04 | 2592 | 1 | 7.018e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 388072.1044425927 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 124 [SPH][rank=0]
Info: time since start : 20.680402036 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000266392 s
sph::RenderFieldGetter compute custom field took : 0.00020389 s
rho_t_ampl=0.00093413, rho_t_phi=3.14159 rad
eps_t_ampl=-5.58459e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-7.28479e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 5656.85s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 5303.300989752812, dt = 49.42292786496498 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.46 us (3.9%)
patch tree reduce : 1.49 us (0.6%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 243.02 us (91.1%)
LB move op cnt : 0
LB apply : 3.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5695031614679555e-22,-8.517829798142372e-24,-8.3501097129258e-23)
sum a = (-3.3729572989376623e-25,-1.7114542864326738e-25,-9.395804966261833e-26)
sum e = 7.8589928091068e-16
sum de = -1.617781153285278e-32
Info: cfl dt = 49.42208328097734 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8347e+04 | 2592 | 1 | 9.144e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1945825.4613999424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5352.723917617776, dt = 49.42208328097734 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (2.0%)
patch tree reduce : 1.15 us (0.5%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.39 us (0.6%)
LB compute : 199.55 us (92.5%)
LB move op cnt : 0
LB apply : 2.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8090494480129582e-22,-1.6424277393888936e-23,-8.999034427501032e-23)
sum a = (-1.7828219939859688e-25,2.3961156276516976e-26,-1.4561456108111079e-27)
sum e = 7.858863476901787e-16
sum de = -3.158525108795067e-32
Info: cfl dt = 49.42128880438318 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9972e+04 | 2592 | 1 | 8.648e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2057315.474101814 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5402.146000898753, dt = 49.42128880438318 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (2.1%)
patch tree reduce : 1.21 us (0.6%)
gen split merge : 982.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 199.72 us (92.3%)
LB move op cnt : 0
LB apply : 2.85 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8511561907711368e-22,-1.0420977546282601e-23,-8.777649046492891e-23)
sum a = (-4.447213797528884e-25,-6.779131543724571e-26,8.568607463920556e-26)
sum e = 7.858757107246863e-16
sum de = 1.771855548836257e-32
Info: cfl dt = 49.420530521347104 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6455e+04 | 2592 | 1 | 7.110e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2502329.659126804 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5451.567289703136, dt = 49.420530521347104 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.78 us (2.4%)
patch tree reduce : 1.26 us (0.6%)
gen split merge : 821.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.5%)
LB compute : 185.37 us (92.2%)
LB move op cnt : 0
LB apply : 2.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1186880563444413e-22,-1.6027922002834438e-23,-8.138849878096138e-23)
sum a = (-2.431337441204126e-25,9.796883483642731e-26,-1.921448911037435e-25)
sum e = 7.858651320998893e-16
sum de = -3.8518598887744717e-32
Info: cfl dt = 49.41980893544204 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4073e+04 | 2592 | 1 | 5.881e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3025157.4782838994 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5500.987820224484, dt = 49.41980893544204 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (2.1%)
patch tree reduce : 841.00 ns (0.4%)
gen split merge : 641.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.4%)
LB compute : 185.26 us (93.5%)
LB move op cnt : 0
LB apply : 2.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.209577001078558e-22,-7.108922780547835e-24,-9.774953944835756e-23)
sum a = (3.3322135292980135e-26,4.5281900808526064e-26,-1.8661511840165872e-25)
sum e = 7.858546554785271e-16
sum de = -2.9274135154685985e-32
Info: cfl dt = 49.41912438602375 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3744e+04 | 2592 | 1 | 5.925e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3002534.3080613823 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5550.407629159926, dt = 49.41912438602375 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (1.8%)
patch tree reduce : 791.00 ns (0.4%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 191.23 us (93.2%)
LB move op cnt : 0
LB apply : 2.69 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1145800814412041e-22,-6.1585524147501525e-24,-1.0683525504176634e-22)
sum a = (3.920177466559401e-26,-5.624437441456305e-26,1.6438577942284827e-25)
sum e = 7.858443013696521e-16
sum de = -1.3096323621833204e-32
Info: cfl dt = 49.418477195902355 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3643e+04 | 2592 | 1 | 5.939e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2995548.9398714704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5599.82675354595, dt = 49.418477195902355 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (1.7%)
patch tree reduce : 1.16 us (0.5%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.4%)
LB compute : 211.42 us (93.5%)
LB move op cnt : 0
LB apply : 2.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0809460369209518e-22,-1.1451381212197057e-23,-9.003848163543793e-23)
sum a = (-1.5959021154237666e-25,-8.79624441469284e-26,-4.620526834837692e-26)
sum e = 7.858340902976898e-16
sum de = -3.8518598887744717e-32
Info: cfl dt = 49.41786766946892 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3811e+04 | 2592 | 1 | 5.916e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3007032.579746548 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5649.2452307418525, dt = 7.60915832781302 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (1.5%)
patch tree reduce : 1.29 us (0.5%)
gen split merge : 541.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 581.00 ns (0.2%)
LB compute : 224.27 us (94.8%)
LB move op cnt : 0
LB apply : 2.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.152065352433241e-22,-1.2906623298280253e-23,-9.559360928384655e-23)
sum a = (3.005009717730376e-26,1.697696897965286e-25,-2.517650455063276e-25)
sum e = 7.857072679695814e-16
sum de = 5.777789833161708e-32
Info: cfl dt = 49.41779274233944 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4910e+04 | 2592 | 1 | 5.772e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 474619.2841584767 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 132 [SPH][rank=0]
Info: time since start : 21.591681753 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00027834 s
sph::RenderFieldGetter compute custom field took : 0.000208698 s
rho_t_ampl=0.000764811, rho_t_phi=3.14159 rad
eps_t_ampl=-5.78775e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-8.27659e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 6010.41s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 5656.854389069666, dt = 49.41779274233944 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.81 us (3.9%)
patch tree reduce : 1.50 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 227.53 us (91.0%)
LB move op cnt : 0
LB apply : 3.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1189448047758934e-22,-3.5391166598004004e-24,-1.0881735056756591e-22)
sum a = (-9.547832294632684e-26,2.027345335711303e-26,2.3721638072557526e-25)
sum e = 7.858264549753542e-16
sum de = -7.241496590896007e-32
Info: cfl dt = 49.417211225330284 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9205e+04 | 2592 | 1 | 8.875e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2004517.6434537652 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5706.272181812005, dt = 49.417211225330284 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.48 us (2.2%)
patch tree reduce : 1.28 us (0.6%)
gen split merge : 570.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 188.67 us (92.2%)
LB move op cnt : 0
LB apply : 2.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.201104302840632e-22,-6.2275535557029604e-24,-8.501258718693926e-23)
sum a = (-3.7777623209881996e-25,2.0413044841918098e-26,3.315911134073423e-26)
sum e = 7.858145898879342e-16
sum de = 7.703719777548943e-33
Info: cfl dt = 49.41668389359733 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8895e+04 | 2592 | 1 | 8.970e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1983205.8142092067 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5755.689393037335, dt = 49.41668389359733 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (1.8%)
patch tree reduce : 1.15 us (0.5%)
gen split merge : 912.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 222.95 us (93.2%)
LB move op cnt : 0
LB apply : 2.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4896895397930252e-22,-5.211591989057697e-24,-8.841594445525647e-23)
sum a = (5.51984054533452e-26,-6.827326232295317e-26,1.434822581352451e-25)
sum e = 7.85804976211805e-16
sum de = -8.474091755303838e-33
Info: cfl dt = 49.41619494474598 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9567e+04 | 2592 | 1 | 8.767e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2029275.5348214307 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5805.106076930932, dt = 49.41619494474598 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (1.9%)
patch tree reduce : 1.28 us (0.5%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.6%)
LB compute : 220.81 us (93.2%)
LB move op cnt : 0
LB apply : 2.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.332302751312761e-22,-1.0777215994922678e-23,-7.859969518048813e-23)
sum a = (-6.608012608325745e-26,2.0491946718893342e-25,1.1809873191268545e-25)
sum e = 7.857955718500231e-16
sum de = 6.240013019814644e-32
Info: cfl dt = 49.41574472668256 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9436e+04 | 2592 | 1 | 8.805e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2020331.5181151652 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5854.522271875679, dt = 49.41574472668256 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (1.6%)
patch tree reduce : 1.31 us (0.5%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 224.54 us (88.6%)
LB move op cnt : 0
LB apply : 15.90 us (6.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.368504280147536e-22,6.106199804899331e-24,-7.339093703183866e-23)
sum a = (2.2313795563572366e-25,1.398918476789694e-25,8.288857612736732e-26)
sum e = 7.857864111468127e-16
sum de = 2.311115933264683e-32
Info: cfl dt = 49.41533344550788 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9439e+04 | 2592 | 1 | 8.804e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2020520.386000615 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5903.938016602361, dt = 49.41533344550788 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (2.0%)
patch tree reduce : 751.00 ns (0.3%)
gen split merge : 711.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 214.05 us (93.1%)
LB move op cnt : 0
LB apply : 2.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1731187238123304e-22,1.1402237957739388e-23,-7.016493843872065e-23)
sum a = (2.889360094676297e-25,1.0853288138743044e-25,-1.3027614085765427e-26)
sum e = 7.857775120289107e-16
sum de = 0
Info: cfl dt = 49.41496129029684 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9473e+04 | 2592 | 1 | 8.794e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2022831.1640640656 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5953.353350047869, dt = 49.41496129029684 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (1.8%)
patch tree reduce : 912.00 ns (0.4%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 217.44 us (93.2%)
LB move op cnt : 0
LB apply : 2.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.065284382602361e-22,1.5990613246389024e-23,-7.317856274557676e-23)
sum a = (1.25365445045072e-25,-5.66496818778113e-26,2.8033648103838323e-26)
sum e = 7.857688921366745e-16
sum de = 3.0814879110195774e-33
Info: cfl dt = 49.414628431118004 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9256e+04 | 2592 | 1 | 8.860e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2007897.4454415583 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6002.768311338165, dt = 7.63947704835482 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.9%)
patch tree reduce : 1.08 us (0.5%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 217.15 us (92.9%)
LB move op cnt : 0
LB apply : 2.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.073500332408835e-22,1.1478460148326791e-23,-7.194987999348515e-23)
sum a = (-2.2758216066257146e-25,-5.943301512675828e-26,6.864646339179279e-26)
sum e = 7.856949826576237e-16
sum de = -2.311115933264683e-32
Info: cfl dt = 49.41459751097408 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0058e+04 | 2592 | 1 | 8.623e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318925.04990737507 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 140 [SPH][rank=0]
Info: time since start : 22.532637641 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000295705 s
sph::RenderFieldGetter compute custom field took : 0.00021888200000000002 s
rho_t_ampl=0.000576187, rho_t_phi=3.14159 rad
eps_t_ampl=-5.91863e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.05897e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 6363.96s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 6010.40778838652, dt = 49.41459751097408 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.86 us (3.7%)
patch tree reduce : 1.39 us (0.5%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 242.03 us (91.4%)
LB move op cnt : 0
LB apply : 3.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2583592030544964e-22,8.533274820971925e-24,-6.840261229929555e-23)
sum a = (-5.1036272677848813e-26,-4.996856064725596e-26,-1.9979867034344669e-25)
sum e = 7.857625497364127e-16
sum de = 3.0814879110195774e-33
Info: cfl dt = 49.414292998431236 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2231e+04 | 2592 | 1 | 8.042e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2212051.002948576 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6059.822385897494, dt = 49.414292998431236 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (2.1%)
patch tree reduce : 1.12 us (0.5%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.6%)
LB compute : 206.53 us (92.4%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.192118107739801e-22,6.292543002414326e-24,-8.490807645500676e-23)
sum a = (2.531065652737481e-25,6.473504300550237e-26,5.343155175069844e-26)
sum e = 7.857529345846308e-16
sum de = -2.465190328815662e-32
Info: cfl dt = 49.41404538979366 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2499e+04 | 2592 | 1 | 7.976e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2230422.3585261893 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6109.236678895925, dt = 49.41404538979366 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (2.0%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 203.13 us (92.6%)
LB move op cnt : 0
LB apply : 2.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.016758929057875e-22,1.232893932751256e-23,-7.601121113623238e-23)
sum a = (-1.0600902033011288e-25,-5.0870408317548946e-26,-2.0768765590201108e-26)
sum e = 7.857453137417484e-16
sum de = -2.619264724366641e-32
Info: cfl dt = 49.41383739582436 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4219e+04 | 2592 | 1 | 7.575e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2348459.598137539 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6158.650724285719, dt = 49.41383739582436 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (2.1%)
patch tree reduce : 1.21 us (0.5%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 206.33 us (92.6%)
LB move op cnt : 0
LB apply : 2.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (55.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1607947991026196e-22,6.963699449007623e-24,-7.88707444665404e-23)
sum a = (-3.437708551303442e-25,2.4169211495870975e-25,1.4337876875016812e-25)
sum e = 7.857380299587624e-16
sum de = 1.6948183510607676e-32
Info: cfl dt = 49.41366920225029 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4151e+04 | 2592 | 1 | 5.871e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3030116.6316761165 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6208.064561681543, dt = 49.41366920225029 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (1.9%)
patch tree reduce : 1.20 us (0.6%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.5%)
LB compute : 184.23 us (93.2%)
LB move op cnt : 0
LB apply : 2.32 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3502751415144222e-22,2.6130772195770664e-23,-6.773029363148918e-23)
sum a = (-8.023388482884608e-26,-6.568381701865256e-26,-6.245379345349317e-26)
sum e = 7.85731107038293e-16
sum de = -5.39260384428426e-32
Info: cfl dt = 49.4135408786637 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4608e+04 | 2592 | 1 | 5.811e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3061477.4234974203 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6257.478230883793, dt = 49.4135408786637 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.63 us (1.7%)
patch tree reduce : 641.00 ns (0.3%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 651.00 ns (0.3%)
LB compute : 198.63 us (94.3%)
LB move op cnt : 0
LB apply : 2.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.350788638377327e-22,1.5296790727331577e-23,-7.59018277772211e-23)
sum a = (8.969897592974902e-27,8.924865198784541e-26,5.216185497136848e-26)
sum e = 7.85724558543064e-16
sum de = -1.3866695599588098e-32
Info: cfl dt = 49.41345247754724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4246e+04 | 2592 | 1 | 5.858e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3036575.0204241676 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6306.891771762456, dt = 49.41345247754724 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (1.7%)
patch tree reduce : 882.00 ns (0.4%)
gen split merge : 821.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 217.72 us (94.0%)
LB move op cnt : 0
LB apply : 2.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3292217701353333e-22,2.3528987895483256e-23,-7.049254792105146e-23)
sum a = (-1.0154601048650832e-25,7.249269102450531e-27,-4.539836833790715e-26)
sum e = 7.857183974770967e-16
sum de = -2.465190328815662e-32
Info: cfl dt = 49.41340403223062 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3979e+04 | 2592 | 1 | 5.894e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3018244.2065525143 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6356.305224240004, dt = 7.655963463370426 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (2.0%)
patch tree reduce : 1.15 us (0.6%)
gen split merge : 641.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 751.00 ns (0.4%)
LB compute : 186.70 us (93.2%)
LB move op cnt : 0
LB apply : 2.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3471941603369946e-22,2.1554632574557427e-23,-7.325050989944207e-23)
sum a = (-2.4448142265464718e-25,-8.161381068556583e-26,1.5253544438693382e-26)
sum e = 7.856857336446186e-16
sum de = -1.8488927466117464e-32
Info: cfl dt = 49.4134181622098 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5413e+04 | 2592 | 1 | 5.708e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 482885.18949550693 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 148 [SPH][rank=0]
Info: time since start : 23.295259346 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000272442 s
sph::RenderFieldGetter compute custom field took : 0.000260814 s
rho_t_ampl=0.000373032, rho_t_phi=3.14159 rad
eps_t_ampl=-5.97393e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.61216e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 6717.51s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 6363.961187703374, dt = 49.4134181622098 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.92 us (4.0%)
patch tree reduce : 1.40 us (0.6%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 223.80 us (90.7%)
LB move op cnt : 0
LB apply : 3.50 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4786493572405763e-22,1.7175868310023154e-23,-7.226460571553533e-23)
sum a = (6.832730168569037e-26,-8.49698583406855e-27,1.1699754806156052e-25)
sum e = 7.857139970538891e-16
sum de = 5.238529448733282e-32
Info: cfl dt = 49.413397694184894 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3808e+04 | 2592 | 1 | 5.917e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3006564.9743819307 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6413.374605865583, dt = 49.413397694184894 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (2.2%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 186.37 us (92.5%)
LB move op cnt : 0
LB apply : 2.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3857064250548407e-22,1.8568929135363993e-23,-6.396959984567018e-23)
sum a = (4.331470150391021e-25,-7.14691629676593e-26,7.683588217838403e-26)
sum e = 7.857075879705524e-16
sum de = -2.7733391199176196e-32
Info: cfl dt = 49.41343544102475 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4915e+04 | 2592 | 1 | 5.771e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3082537.3157521132 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6462.788003559768, dt = 49.41343544102475 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (1.7%)
patch tree reduce : 1.36 us (0.6%)
gen split merge : 822.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 711.00 ns (0.3%)
LB compute : 202.26 us (94.0%)
LB move op cnt : 0
LB apply : 2.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0545009484813642e-22,1.3482100837215152e-23,-6.116513712628241e-23)
sum a = (-1.719669151044514e-25,7.153104991343107e-26,1.3864968825605648e-26)
sum e = 7.857027297852343e-16
sum de = -2.7733391199176196e-32
Info: cfl dt = 49.413513058834944 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3762e+04 | 2592 | 1 | 5.923e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3003375.5250099213 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6512.201439000793, dt = 49.413513058834944 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (2.0%)
patch tree reduce : 641.00 ns (0.3%)
gen split merge : 581.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.4%)
LB compute : 184.95 us (93.6%)
LB move op cnt : 0
LB apply : 1.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2994389520868654e-22,2.055451720016586e-23,-6.203582488895787e-23)
sum a = (2.286759741705897e-25,1.9747257611246749e-25,-1.0835521151284237e-25)
sum e = 7.856983004802968e-16
sum de = 5.854827030937197e-32
Info: cfl dt = 49.413630568438265 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4801e+04 | 2592 | 1 | 5.786e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3074693.886164453 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6561.614952059627, dt = 49.413630568438265 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (1.8%)
patch tree reduce : 882.00 ns (0.4%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 198.72 us (93.5%)
LB move op cnt : 0
LB apply : 2.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1012291630056842e-22,3.341721244650232e-23,-7.040971351941647e-23)
sum a = (-1.5828014264165564e-25,9.867520300857238e-26,6.316617494018863e-26)
sum e = 7.856943131427873e-16
sum de = -5.854827030937197e-32
Info: cfl dt = 49.413787902749206 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4102e+04 | 2592 | 1 | 5.877e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3026748.3335421234 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6611.028582628065, dt = 49.413787902749206 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (1.9%)
patch tree reduce : 1.10 us (0.5%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 751.00 ns (0.4%)
LB compute : 187.19 us (92.8%)
LB move op cnt : 0
LB apply : 2.63 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.265548159135161e-22,3.5846293309695636e-23,-6.305068633590884e-23)
sum a = (-1.7399783531418155e-25,-8.51976035253975e-26,2.390068406981675e-26)
sum e = 7.856907756224025e-16
sum de = 3.0814879110195774e-32
Info: cfl dt = 49.41398497785099 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4768e+04 | 2592 | 1 | 5.790e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3072463.9831473585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6660.4423705308145, dt = 49.41398497785099 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (1.8%)
patch tree reduce : 1.10 us (0.6%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 631.00 ns (0.3%)
LB compute : 186.82 us (94.0%)
LB move op cnt : 0
LB apply : 1.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3394917073934254e-22,2.710360804932042e-23,-6.283978661120297e-23)
sum a = (1.2795737562137887e-25,1.5455450565667825e-26,-9.010894002585392e-27)
sum e = 7.856876949956157e-16
sum de = 1.0785207688568521e-32
Info: cfl dt = 49.414221690933765 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4816e+04 | 2592 | 1 | 5.784e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3075772.578143967 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6709.856355508666, dt = 7.658231511562008 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (1.9%)
patch tree reduce : 921.00 ns (0.5%)
gen split merge : 841.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.5%)
LB compute : 182.14 us (92.8%)
LB move op cnt : 0
LB apply : 2.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.25322423442545e-22,2.9710005797985485e-23,-6.372194023584301e-23)
sum a = (-5.990431084672459e-26,4.651101778893464e-26,2.262230425567468e-25)
sum e = 7.856804937853572e-16
sum de = 1.5407439555097887e-33
Info: cfl dt = 49.414280569082585 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4424e+04 | 2592 | 1 | 5.835e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 472510.70214332687 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 156 [SPH][rank=0]
Info: time since start : 23.998130248000002 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00031256000000000003 s
sph::RenderFieldGetter compute custom field took : 0.00024755400000000004 s
rho_t_ampl=0.000160484, rho_t_phi=3.14159 rad
eps_t_ampl=-5.95224e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.92219e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 7071.07s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 6717.514587020228, dt = 49.414280569082585 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.30 us (3.6%)
patch tree reduce : 1.36 us (0.5%)
gen split merge : 801.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 234.40 us (91.7%)
LB move op cnt : 0
LB apply : 2.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.27992607129649e-22,3.212083345238024e-23,-5.164255336696626e-23)
sum a = (-2.8279310266042113e-26,6.93513676570131e-26,-6.79807188086419e-26)
sum e = 7.856856896909396e-16
sum de = -2.0029671421627253e-32
Info: cfl dt = 49.414544198486894 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4370e+04 | 2592 | 1 | 5.842e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3045155.3475458166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6766.92886758931, dt = 49.414544198486894 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.08 us (2.1%)
patch tree reduce : 551.00 ns (0.3%)
gen split merge : 481.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.4%)
LB compute : 182.09 us (93.6%)
LB move op cnt : 0
LB apply : 2.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.317411342288527e-22,3.612109436523443e-23,-6.22707232054808e-23)
sum a = (-8.59834575522257e-26,4.888744589977218e-26,-1.5459146758463914e-26)
sum e = 7.856831220379112e-16
sum de = 7.241496590896007e-32
Info: cfl dt = 49.4148659295429 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4274e+04 | 2592 | 1 | 5.854e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3038567.4849057556 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6816.343411787797, dt = 49.4148659295429 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.6%)
patch tree reduce : 671.00 ns (0.3%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.4%)
LB compute : 209.67 us (94.1%)
LB move op cnt : 0
LB apply : 2.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.338464713667616e-22,3.8024442698086736e-23,-6.173697009819768e-23)
sum a = (-2.951055564319103e-25,3.5685576939381e-26,7.998900758349621e-26)
sum e = 7.856815199895361e-16
sum de = 7.703719777548943e-32
Info: cfl dt = 49.4152268161107 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3809e+04 | 2592 | 1 | 5.917e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3006722.27789526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6865.75827771734, dt = 49.4152268161107 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (1.8%)
patch tree reduce : 1.09 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.5%)
LB compute : 180.02 us (93.0%)
LB move op cnt : 0
LB apply : 2.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.572105786289216e-22,3.945782105055407e-23,-5.542601627065705e-23)
sum a = (-2.2243630091048703e-25,-1.078372255946227e-25,9.753525067638746e-26)
sum e = 7.856803935871905e-16
sum de = -1.6948183510607676e-32
Info: cfl dt = 49.41562671494854 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4966e+04 | 2592 | 1 | 5.764e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3086142.2664563796 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6915.173504533451, dt = 49.41562671494854 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.82 us (1.9%)
patch tree reduce : 631.00 ns (0.3%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.4%)
LB compute : 183.45 us (93.7%)
LB move op cnt : 0
LB apply : 2.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.652211296902336e-22,3.05831510496354e-23,-5.0172724940575715e-23)
sum a = (2.1283791108246975e-25,2.870516713353922e-26,-1.7704680103519388e-26)
sum e = 7.856797460915606e-16
sum de = 8.16594296420188e-32
Info: cfl dt = 49.41604502824304 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4247e+04 | 2592 | 1 | 5.858e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3036815.326892476 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6964.589131248399, dt = 49.41604502824304 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.98 us (1.8%)
patch tree reduce : 781.00 ns (0.3%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 208.85 us (93.4%)
LB move op cnt : 0
LB apply : 2.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4529745140953453e-22,3.5375119821038236e-23,-5.389494691083665e-23)
sum a = (1.5326474130582125e-25,-3.112347146554635e-26,-5.34763710194973e-26)
sum e = 7.856795788560295e-16
sum de = 2.7733391199176196e-32
Info: cfl dt = 49.41559693245734 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3883e+04 | 2592 | 1 | 5.907e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3011856.912237194 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7014.0051762766425, dt = 49.41559693245734 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (2.0%)
patch tree reduce : 1.13 us (0.6%)
gen split merge : 831.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.4%)
LB compute : 187.98 us (93.1%)
LB move op cnt : 0
LB apply : 2.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.338464713667616e-22,3.235431405723218e-23,-5.742136145105432e-23)
sum a = (-1.449961066710672e-25,-2.3413196648652978e-26,-3.9989270347105424e-26)
sum e = 7.856798923168546e-16
sum de = 4.776306262080345e-32
Info: cfl dt = 49.41517711215958 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5061e+04 | 2592 | 1 | 5.752e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3092667.3591594854 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7063.4207732091, dt = 7.647213127982468 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (1.7%)
patch tree reduce : 991.00 ns (0.5%)
gen split merge : 451.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 701.00 ns (0.4%)
LB compute : 175.47 us (94.0%)
LB move op cnt : 0
LB apply : 1.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.444245067425967e-22,3.236213686100299e-23,-5.739393135891549e-23)
sum a = (2.4408260383259754e-25,1.8269612818075754e-25,4.9947573271796846e-26)
sum e = 7.856798251159263e-16
sum de = -1.0014835710813626e-31
Info: cfl dt = 49.41513477359981 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5414e+04 | 2592 | 1 | 7.319e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 376131.5522110548 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 164 [SPH][rank=0]
Info: time since start : 24.713792036 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00030488900000000003 s
sph::RenderFieldGetter compute custom field took : 0.000233834 s
rho_t_ampl=-5.608e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-5.85411e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.98125e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 7424.62s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 7071.067986337082, dt = 49.41513477359981 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.78 us (3.9%)
patch tree reduce : 1.60 us (0.6%)
gen split merge : 761.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 231.31 us (91.2%)
LB move op cnt : 0
LB apply : 2.97 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3353837324901885e-22,4.217774974625195e-23,-5.45818821884789e-23)
sum a = (-1.0056502587903063e-25,1.2473494500407383e-26,-7.736540977583564e-27)
sum e = 7.856804930589454e-16
sum de = -1.3866695599588098e-32
Info: cfl dt = 49.41474153725116 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3578e+04 | 2592 | 1 | 5.948e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2990858.4190316373 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7120.483121110682, dt = 49.41474153725116 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 us (1.9%)
patch tree reduce : 1.06 us (0.5%)
gen split merge : 821.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.4%)
LB compute : 188.12 us (92.6%)
LB move op cnt : 0
LB apply : 2.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4483530423292037e-22,3.859470503450776e-23,-5.638941550124167e-23)
sum a = (8.672468074605468e-26,8.445169749145819e-26,2.835856828967449e-26)
sum e = 7.856820179139696e-16
sum de = -9.090389337507753e-32
Info: cfl dt = 49.41440714438463 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4895e+04 | 2592 | 1 | 5.773e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3081217.502352385 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7169.897862647933, dt = 49.41440714438463 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (1.7%)
patch tree reduce : 991.00 ns (0.5%)
gen split merge : 471.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 601.00 ns (0.3%)
LB compute : 188.52 us (94.3%)
LB move op cnt : 0
LB apply : 1.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3651665505386564e-22,4.454805928880814e-23,-5.409627841413674e-23)
sum a = (-1.3706987640809252e-25,1.6459176636274759e-25,-3.5710748962752495e-26)
sum e = 7.856838394633214e-16
sum de = 1.3866695599588098e-32
Info: cfl dt = 49.414112661958406 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4498e+04 | 2592 | 1 | 5.825e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3053920.9893018208 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7219.312269792317, dt = 49.414112661958406 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (1.6%)
patch tree reduce : 641.00 ns (0.3%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 227.10 us (94.4%)
LB move op cnt : 0
LB apply : 2.19 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4868653070470498e-22,5.466755801284635e-23,-5.744386705072499e-23)
sum a = (1.472448493415632e-25,1.416567948131523e-25,-2.7593871880120073e-26)
sum e = 7.856861333848189e-16
sum de = -2.0029671421627253e-32
Info: cfl dt = 49.413858244012296 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3869e+04 | 2592 | 1 | 5.908e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3010775.844142311 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7268.726382454276, dt = 49.413858244012296 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (1.9%)
patch tree reduce : 540.00 ns (0.3%)
gen split merge : 812.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 185.41 us (92.8%)
LB move op cnt : 0
LB apply : 2.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.354896613280564e-22,6.109409160292485e-23,-5.860684258488399e-23)
sum a = (9.217180933326305e-26,-2.5983788165319847e-26,1.6032034937382602e-25)
sum e = 7.856888949041296e-16
sum de = -7.087422195345028e-32
Info: cfl dt = 49.41364401426789 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4717e+04 | 2592 | 1 | 5.796e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3068945.6285361066 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7318.140240698288, dt = 49.41364401426789 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (2.0%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 821.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 202.09 us (93.6%)
LB move op cnt : 0
LB apply : 2.73 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.272223618352921e-22,5.5670682157919e-23,-4.604204656715398e-23)
sum a = (-2.126730751105863e-25,1.6577347035220906e-25,1.2425499555262093e-25)
sum e = 7.856921186671769e-16
sum de = -9.090389337507753e-32
Info: cfl dt = 49.41347007860669 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4049e+04 | 2592 | 1 | 5.884e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3023068.5875508194 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7367.553884712555, dt = 49.41347007860669 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (1.6%)
patch tree reduce : 551.00 ns (0.3%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 631.00 ns (0.3%)
LB compute : 201.93 us (94.7%)
LB move op cnt : 0
LB apply : 1.75 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4730008917486254e-22,6.859435515672538e-23,-4.079323633976927e-23)
sum a = (-6.411815686830207e-26,1.3606526335247646e-25,1.0894535610894282e-26)
sum e = 7.85695798368177e-16
sum de = -3.697785493223493e-32
Info: cfl dt = 49.41333652275974 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6135e+04 | 2592 | 1 | 7.173e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2479965.175676457 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7416.9673547911625, dt = 7.654030862774562 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.33 us (2.0%)
patch tree reduce : 1.21 us (0.6%)
gen split merge : 792.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 203.09 us (93.1%)
LB move op cnt : 0
LB apply : 2.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.442704576837253e-22,6.891228192535968e-23,-4.35106160756981e-23)
sum a = (-1.138945068234479e-26,-1.252848144961397e-25,-7.915201730272454e-26)
sum e = 7.856838237582307e-16
sum de = -4.468157470978387e-32
Info: cfl dt = 49.41333821694015 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4050e+04 | 2592 | 1 | 5.884e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 468279.505743471 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 172 [SPH][rank=0]
Info: time since start : 25.429709209000002 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00030280600000000003 s
sph::RenderFieldGetter compute custom field took : 0.000240775 s
rho_t_ampl=-0.000271183, rho_t_phi=3.14159 rad
eps_t_ampl=-5.68206e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.78787e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 7778.17s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 7424.621385653937, dt = 49.41333821694015 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.71 us (3.9%)
patch tree reduce : 1.40 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 228.45 us (91.1%)
LB move op cnt : 0
LB apply : 3.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.50689168470033e-22,6.171349719380353e-23,-4.776639102477126e-23)
sum a = (-8.211436650452216e-28,5.573674230388445e-26,4.1599668724671766e-26)
sum e = 7.856989536464451e-16
sum de = 6.625199008692091e-32
Info: cfl dt = 49.41323269853891 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3344e+04 | 2592 | 1 | 5.980e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2974695.1702961233 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7474.034723870877, dt = 49.41323269853891 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (1.9%)
patch tree reduce : 531.00 ns (0.3%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.4%)
LB compute : 198.37 us (93.8%)
LB move op cnt : 0
LB apply : 2.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4370561113453022e-22,6.89473842499723e-23,-4.2727444962923946e-23)
sum a = (1.225948687095759e-25,6.460742490011665e-26,-6.761243990771962e-26)
sum e = 7.857044099392871e-16
sum de = -4.776306262080345e-32
Info: cfl dt = 49.41318632904844 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3913e+04 | 2592 | 1 | 5.903e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3013747.3654093794 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7523.447956569416, dt = 49.41318632904844 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (1.9%)
patch tree reduce : 881.00 ns (0.4%)
gen split merge : 762.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.5%)
LB compute : 191.91 us (93.2%)
LB move op cnt : 0
LB apply : 2.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.397516852901647e-22,7.235571967750169e-23,-4.8766652722921486e-23)
sum a = (5.672786388289508e-27,-3.5374504746823485e-26,1.584469184375518e-25)
sum e = 7.857094777094213e-16
sum de = 7.395570986446986e-32
Info: cfl dt = 49.41318050361667 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.2238e+04 | 2592 | 1 | 6.137e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2898786.5350367534 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7572.861142898465, dt = 49.41318050361667 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (1.8%)
patch tree reduce : 1.07 us (0.5%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 200.70 us (92.9%)
LB move op cnt : 0
LB apply : 2.85 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3631125630870377e-22,6.813662084377681e-23,-3.5352129944263623e-23)
sum a = (-9.510849488344387e-26,-9.442064994551298e-26,9.517908059524979e-26)
sum e = 7.857149649722614e-16
sum de = -3.697785493223493e-32
Info: cfl dt = 49.41321519968185 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3652e+04 | 2592 | 1 | 5.938e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2995784.770080538 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7622.274323402082, dt = 49.41321519968185 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (2.0%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 581.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 681.00 ns (0.4%)
LB compute : 180.75 us (93.9%)
LB move op cnt : 0
LB apply : 1.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.443218073700158e-22,6.201437426191171e-23,-3.2212158097998116e-23)
sum a = (-2.5399039166131588e-26,-1.2820989394847844e-25,1.9047917404901318e-26)
sum e = 7.857208616693255e-16
sum de = 3.389636702121535e-32
Info: cfl dt = 49.413290396369604 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3434e+04 | 2592 | 1 | 5.968e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2980874.3815004276 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7671.687538601764, dt = 49.413290396369604 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (1.9%)
patch tree reduce : 771.00 ns (0.4%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 183.59 us (92.9%)
LB move op cnt : 0
LB apply : 2.47 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4963649990107856e-22,5.483865677224386e-23,-3.315188059888351e-23)
sum a = (-4.97136672326233e-26,-2.57344039743464e-25,-1.619101179661783e-26)
sum e = 7.857271563525566e-16
sum de = -3.0814879110195774e-32
Info: cfl dt = 49.41340605468928 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3411e+04 | 2592 | 1 | 5.971e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2979293.4741098047 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7721.100828998134, dt = 49.41340605468928 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (1.9%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 601.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 181.15 us (92.4%)
LB move op cnt : 0
LB apply : 2.75 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4840410743010747e-22,3.892546922471468e-23,-3.4822569360164183e-23)
sum a = (1.861676858919319e-27,-7.254188227042241e-26,-1.996899055087211e-25)
sum e = 7.857338366769107e-16
sum de = 3.0814879110195774e-32
Info: cfl dt = 49.413562115377694 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3455e+04 | 2592 | 1 | 5.965e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2982287.2268723017 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7770.514235052823, dt = 7.660549917966819 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.04 us (1.1%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 540.00 ns (0.1%)
LB compute : 361.64 us (96.3%)
LB move op cnt : 0
LB apply : 2.45 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5012432192083793e-22,4.294959971830545e-23,-4.0885956522210604e-23)
sum a = (-1.3560780190525439e-25,1.5715258819940457e-25,1.7381747384988463e-27)
sum e = 7.856921181628191e-16
sum de = 7.395570986446986e-32
Info: cfl dt = 49.41360786514116 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.2465e+04 | 2592 | 1 | 6.104e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 451811.58680629486 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 180 [SPH][rank=0]
Info: time since start : 26.141538163 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000287914 s
sph::RenderFieldGetter compute custom field took : 0.00021532700000000002 s
rho_t_ampl=-0.000479384, rho_t_phi=3.14159 rad
eps_t_ampl=-5.44044e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.34696e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 8131.73s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 7778.17478497079, dt = 49.41360786514116 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.70 us (4.0%)
patch tree reduce : 1.61 us (0.7%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 221.53 us (90.5%)
LB move op cnt : 0
LB apply : 3.62 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5597818615795054e-22,5.158276572588929e-23,-4.0028542105488945e-23)
sum a = (8.872739373064971e-26,3.873062585825861e-26,6.413464929496247e-26)
sum e = 7.857392400677536e-16
sum de = -1.8488927466117464e-32
Info: cfl dt = 49.41379270491131 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3609e+04 | 2592 | 1 | 5.944e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2992905.136018767 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7827.588392835931, dt = 49.41379270491131 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.93 us (1.5%)
patch tree reduce : 1.16 us (0.4%)
gen split merge : 821.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 249.09 us (94.2%)
LB move op cnt : 0
LB apply : 2.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4414208346799918e-22,5.057603105599934e-23,-3.531778837706059e-23)
sum a = (-5.690337550595818e-26,1.9600385381308056e-25,-2.4197911978538972e-26)
sum e = 7.857480729286492e-16
sum de = -7.241496590896007e-32
Info: cfl dt = 49.41403548144289 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3583e+04 | 2592 | 1 | 5.947e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2991137.759584875 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7877.002185540842, dt = 49.41403548144289 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (1.7%)
patch tree reduce : 1.04 us (0.5%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 581.00 ns (0.3%)
LB compute : 186.70 us (94.1%)
LB move op cnt : 0
LB apply : 1.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.495851502147881e-22,6.41493979372073e-23,-3.8695928294083706e-23)
sum a = (3.320303812018732e-26,6.448171665893279e-26,-2.115583943208625e-25)
sum e = 7.857558848528461e-16
sum de = 4.3140830754274083e-32
Info: cfl dt = 49.41431839869934 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4021e+04 | 2592 | 1 | 5.888e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3021159.2051614127 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7926.416221022285, dt = 49.41431839869934 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (1.7%)
patch tree reduce : 671.00 ns (0.3%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 195.17 us (93.6%)
LB move op cnt : 0
LB apply : 2.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.50021622548257e-22,6.40868155070408e-23,-5.377906091211221e-23)
sum a = (8.126814975046792e-26,1.785602560380367e-25,-1.4272158598816178e-25)
sum e = 7.857640193056926e-16
sum de = 2.9274135154685985e-32
Info: cfl dt = 49.41464125774862 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3919e+04 | 2592 | 1 | 5.902e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3014226.7629276547 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7975.830539420984, dt = 49.41464125774862 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (2.0%)
patch tree reduce : 792.00 ns (0.4%)
gen split merge : 741.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 187.08 us (92.7%)
LB move op cnt : 0
LB apply : 2.55 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.409070532317001e-22,7.573035687340295e-23,-5.913083490121647e-23)
sum a = (-1.0045533111461619e-25,5.675607110803022e-26,1.8104576706341223e-26)
sum e = 7.857724641385903e-16
sum de = 9.55261252416069e-32
Info: cfl dt = 49.41500389342552 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3959e+04 | 2592 | 1 | 5.896e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3016958.8277950226 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8025.245180678732, dt = 49.41500389342552 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (2.0%)
patch tree reduce : 1.22 us (0.6%)
gen split merge : 931.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.5%)
LB compute : 187.72 us (93.2%)
LB move op cnt : 0
LB apply : 2.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5338502700028223e-22,7.55185394174548e-23,-5.42626136055826e-23)
sum a = (-1.107603706973211e-26,6.107520451509477e-26,-3.0473016013500282e-27)
sum e = 7.857812029476202e-16
sum de = -3.004450713244088e-32
Info: cfl dt = 49.415406122664585 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4221e+04 | 2592 | 1 | 5.861e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3034960.5269771577 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8074.660184572158, dt = 49.415406122664585 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (2.0%)
patch tree reduce : 631.00 ns (0.3%)
gen split merge : 450.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.4%)
LB compute : 182.94 us (93.5%)
LB move op cnt : 0
LB apply : 1.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5053511941116162e-22,7.864344864682627e-23,-5.493580732625753e-23)
sum a = (1.980711348989615e-25,-7.838464657267733e-26,5.0646445297660177e-26)
sum e = 7.857902185775484e-16
sum de = 0
Info: cfl dt = 49.41584774255965 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.9788e+04 | 2592 | 1 | 6.514e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2730781.726112561 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8124.0755906948225, dt = 7.652593592822086 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (1.6%)
patch tree reduce : 811.00 ns (0.4%)
gen split merge : 971.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 211.48 us (93.7%)
LB move op cnt : 0
LB apply : 2.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4465558033090376e-22,7.459885851260414e-23,-5.322158150883597e-23)
sum a = (2.601583715575334e-25,8.42835314999407e-26,-3.577359433715828e-26)
sum e = 7.857038971100901e-16
sum de = 1.0785207688568521e-32
Info: cfl dt = 49.415936299165246 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.0065e+04 | 2592 | 1 | 6.469e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 425839.5870527106 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 188 [SPH][rank=0]
Info: time since start : 26.858561265000002 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00028039300000000004 s
sph::RenderFieldGetter compute custom field took : 0.00022035400000000003 s
rho_t_ampl=-0.000675418, rho_t_phi=3.14159 rad
eps_t_ampl=-5.13536e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-8.66969e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 8485.28s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 8131.728184287645, dt = 49.415936299165246 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.11 us (3.9%)
patch tree reduce : 1.39 us (0.5%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 239.36 us (91.2%)
LB move op cnt : 0
LB apply : 3.57 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.331789254449856e-22,7.93805974636913e-23,-5.53200358885658e-23)
sum a = (-1.0468014661263511e-26,-1.1214183913666544e-26,-1.6619361747650566e-26)
sum e = 7.857973360334374e-16
sum de = -1.9259299443872359e-32
Info: cfl dt = 49.41640669456749 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1662e+04 | 2592 | 1 | 8.187e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2173054.221386889 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8181.14412058681, dt = 49.41640669456749 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (1.9%)
patch tree reduce : 1.19 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 199.76 us (92.5%)
LB move op cnt : 0
LB apply : 2.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.370815016030607e-22,7.647071504566112e-23,-5.566804285898043e-23)
sum a = (5.1274467023434445e-27,8.20702927152485e-26,-5.802318562289964e-27)
sum e = 7.858086532734198e-16
sum de = -1.5407439555097887e-33
Info: cfl dt = 49.41693232768356 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2246e+04 | 2592 | 1 | 8.038e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2213148.165966571 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8230.560527281377, dt = 49.41693232768356 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.18 us (1.9%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 831.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 201.36 us (93.1%)
LB move op cnt : 0
LB apply : 2.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.379287714268533e-22,8.284008199279907e-23,-5.568750594004838e-23)
sum a = (-4.066855037262136e-26,7.041889681198727e-26,9.466944717097267e-27)
sum e = 7.858184330532324e-16
sum de = 3.0814879110195774e-32
Info: cfl dt = 49.41749667040257 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2115e+04 | 2592 | 1 | 8.071e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2204205.1446002945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8279.977459609061, dt = 49.41749667040257 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (2.1%)
patch tree reduce : 1.30 us (0.6%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.6%)
LB compute : 200.14 us (92.5%)
LB move op cnt : 0
LB apply : 2.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.412408261925881e-22,8.60279748217612e-23,-5.484239315593622e-23)
sum a = (2.9138690391826083e-25,-6.863914823023999e-26,-7.879265070215543e-26)
sum e = 7.858284039674558e-16
sum de = -6.162975822039155e-33
Info: cfl dt = 49.41809935247803 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1845e+04 | 2592 | 1 | 8.139e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2185719.842495782 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8329.394956279464, dt = 49.41809935247803 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.9%)
patch tree reduce : 1.31 us (0.6%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 210.59 us (92.8%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.204442032449512e-22,7.920207706994712e-23,-6.091696032795508e-23)
sum a = (-3.766103334599008e-25,-7.38461236367839e-27,1.2830241972686268e-25)
sum e = 7.858385551750014e-16
sum de = -3.0814879110195774e-32
Info: cfl dt = 49.41874006871451 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6096e+04 | 2592 | 1 | 7.181e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2477502.28091996 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8378.813055631943, dt = 49.41874006871451 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (2.0%)
patch tree reduce : 1.08 us (0.5%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 195.68 us (92.8%)
LB move op cnt : 0
LB apply : 2.84 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5392419870633207e-22,8.034561051347024e-23,-4.945929401435036e-23)
sum a = (3.2502245282385366e-25,-6.543312285672014e-26,4.0776563568473e-26)
sum e = 7.858488669452361e-16
sum de = 4.622231866529366e-33
Info: cfl dt = 49.41941849672226 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4107e+04 | 2592 | 1 | 5.877e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3027386.80158249 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8428.231795700658, dt = 49.41941849672226 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 us (1.9%)
patch tree reduce : 1.31 us (0.7%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.4%)
LB compute : 178.59 us (92.8%)
LB move op cnt : 0
LB apply : 2.45 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.217279454022127e-22,7.567840543297628e-23,-4.9606848721898263e-23)
sum a = (1.2062663122236828e-25,3.237415705658072e-26,-2.1778532775164317e-25)
sum e = 7.858593190178992e-16
sum de = 0
Info: cfl dt = 49.42013429524591 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4205e+04 | 2592 | 1 | 5.864e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3034172.6123337746 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8477.65121419738, dt = 7.63036940711936 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (1.7%)
patch tree reduce : 781.00 ns (0.4%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 611.00 ns (0.3%)
LB compute : 196.48 us (94.3%)
LB move op cnt : 0
LB apply : 2.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2375625801068596e-22,7.834076631630946e-23,-5.765762038130243e-23)
sum a = (-6.870026388469946e-27,-2.715626114447234e-26,-5.216847746627929e-26)
sum e = 7.857179920421207e-16
sum de = 3.774822690998982e-32
Info: cfl dt = 49.42026306474661 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4268e+04 | 2592 | 1 | 5.855e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 469138.4644402335 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 196 [SPH][rank=0]
Info: time since start : 27.798954334 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000299451 s
sph::RenderFieldGetter compute custom field took : 0.00023933300000000002 s
rho_t_ampl=-0.000854329, rho_t_phi=3.14159 rad
eps_t_ampl=-4.77454e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-7.7732e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 8838.83s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 8485.2815836045, dt = 49.42026306474661 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.81 us (3.9%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 229.79 us (91.3%)
LB move op cnt : 0
LB apply : 2.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.248089265796404e-22,7.676958626664857e-23,-5.960394138752093e-23)
sum a = (-2.7101501909843663e-25,-4.22465879121262e-26,-2.321294762904917e-25)
sum e = 7.858674434185463e-16
sum de = 1.5176327961771419e-31
Info: cfl dt = 49.421006891608016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3596e+04 | 2592 | 1 | 5.945e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2992412.625270833 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8534.701846669246, dt = 49.421006891608016 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 us (1.8%)
patch tree reduce : 1.28 us (0.6%)
gen split merge : 650.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 530.00 ns (0.3%)
LB compute : 190.34 us (93.9%)
LB move op cnt : 0
LB apply : 2.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.435772369188041e-22,7.430901360365994e-23,-7.55228737866562e-23)
sum a = (-1.1101110158741124e-25,-2.1801344718599844e-26,-8.18266304473744e-26)
sum e = 7.858801043903319e-16
sum de = 3.004450713244088e-32
Info: cfl dt = 49.421801840375544 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4440e+04 | 2592 | 1 | 5.833e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3050347.2574478188 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8584.122853560853, dt = 49.421801840375544 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.08 us (2.0%)
patch tree reduce : 711.00 ns (0.4%)
gen split merge : 460.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 185.23 us (93.1%)
LB move op cnt : 0
LB apply : 2.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4670956778252223e-22,7.373594308126991e-23,-7.585283431177803e-23)
sum a = (-9.08899476576772e-26,1.9375474386100732e-25,-3.922079706208758e-26)
sum e = 7.858908788431919e-16
sum de = 8.397054557528348e-32
Info: cfl dt = 49.42263307729386 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4292e+04 | 2592 | 1 | 5.852e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3040277.9701903597 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8633.544655401229, dt = 49.42263307729386 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 us (1.7%)
patch tree reduce : 781.00 ns (0.4%)
gen split merge : 741.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 203.32 us (93.4%)
LB move op cnt : 0
LB apply : 2.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5009864707769267e-22,8.86470094072868e-23,-7.673840084657533e-23)
sum a = (2.75101932606906e-25,2.580715266063027e-25,-1.3433364720662685e-25)
sum e = 7.859016916768599e-16
sum de = 2.5422275265911513e-32
Info: cfl dt = 49.423500070555654 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4230e+04 | 2592 | 1 | 5.860e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3036077.437594092 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8682.967288478523, dt = 49.423500070555654 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (1.8%)
patch tree reduce : 1.32 us (0.6%)
gen split merge : 892.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.4%)
LB compute : 206.53 us (93.4%)
LB move op cnt : 0
LB apply : 2.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.287628524240059e-22,1.0298500521091368e-22,-8.572800361560739e-23)
sum a = (3.13438685701689e-25,-3.4116834684461166e-26,-4.1229770902134946e-26)
sum e = 7.859125366238608e-16
sum de = -4.1600086798764294e-32
Info: cfl dt = 49.42440238302026 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3561e+04 | 2592 | 1 | 5.950e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2990207.6467373497 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8732.390788549079, dt = 49.42440238302026 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (2.0%)
patch tree reduce : 641.00 ns (0.3%)
gen split merge : 671.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 721.00 ns (0.4%)
LB compute : 178.21 us (93.6%)
LB move op cnt : 0
LB apply : 2.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1040533957516597e-22,9.408024750318419e-23,-8.546500068424986e-23)
sum a = (-4.706218806992003e-26,-5.710670258714065e-26,1.0535756310908753e-25)
sum e = 7.859233925868093e-16
sum de = -2.619264724366641e-32
Info: cfl dt = 49.42533956152154 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3894e+04 | 2592 | 1 | 5.905e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3013071.679880555 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8781.815190932099, dt = 49.42533956152154 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (1.8%)
patch tree reduce : 1.07 us (0.5%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 202.77 us (93.4%)
LB move op cnt : 0
LB apply : 2.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.218049699316484e-22,9.068836002204472e-23,-7.663517166202111e-23)
sum a = (1.7230226766994695e-25,-5.0328251738605976e-26,3.8835864959880847e-26)
sum e = 7.8593423821616615e-16
sum de = -2.0800043399382147e-32
Info: cfl dt = 49.426311135510545 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4326e+04 | 2592 | 1 | 5.848e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3042801.9131005057 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8831.24053049362, dt = 7.594452427732904 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (2.2%)
patch tree reduce : 1.12 us (0.6%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.5%)
LB compute : 177.29 us (92.5%)
LB move op cnt : 0
LB apply : 2.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.143592654195315e-22,9.047353379541549e-23,-7.798416329268951e-23)
sum a = (-3.0162926077844325e-26,-2.3366356004830474e-26,1.3494797273745625e-26)
sum e = 7.857329980319551e-16
sum de = 8.011868568650901e-32
Info: cfl dt = 49.426476282349114 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5500e+04 | 2592 | 1 | 5.697e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 479931.87747781165 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 204 [SPH][rank=0]
Info: time since start : 28.503716036 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000286451 s
sph::RenderFieldGetter compute custom field took : 0.00024086500000000002 s
rho_t_ampl=-0.00101159, rho_t_phi=3.14159 rad
eps_t_ampl=-4.3671e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-6.6802e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 9192.39s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 8838.834982921353, dt = 49.426476282349114 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.65 us (3.9%)
patch tree reduce : 1.57 us (0.6%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 226.17 us (90.9%)
LB move op cnt : 0
LB apply : 3.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.190577617151087e-22,8.942086522646103e-23,-7.741338878181904e-23)
sum a = (4.207264335712616e-26,5.64109243671405e-26,-7.671310374820604e-26)
sum e = 7.859425614606189e-16
sum de = -5.315566646508771e-32
Info: cfl dt = 49.42747441744114 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3083e+04 | 2592 | 1 | 6.016e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2957529.4570469665 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8888.261459203703, dt = 49.42747441744114 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (1.9%)
patch tree reduce : 1.08 us (0.5%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 201.67 us (93.2%)
LB move op cnt : 0
LB apply : 2.82 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1315254779170563e-22,9.417712991911502e-23,-8.343445309499187e-23)
sum a = (-6.814865592650114e-26,-1.9082741174832792e-25,-4.742963897737687e-26)
sum e = 7.859552906345419e-16
sum de = -2.311115933264683e-32
Info: cfl dt = 49.42851825088446 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3956e+04 | 2592 | 1 | 5.897e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3017545.8787189093 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8937.688933621144, dt = 49.42851825088446 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (1.9%)
patch tree reduce : 1.22 us (0.6%)
gen split merge : 892.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.4%)
LB compute : 191.57 us (93.5%)
LB move op cnt : 0
LB apply : 2.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2039285355866073e-22,7.863462291949511e-23,-8.505512601790876e-23)
sum a = (-1.1442104169263722e-25,-5.514424366341557e-26,-4.9338576153956444e-26)
sum e = 7.859659866472368e-16
sum de = 8.474091755303838e-33
Info: cfl dt = 49.429595025173036 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4087e+04 | 2592 | 1 | 5.879e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3026580.7282422446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8987.117451872029, dt = 49.429595025173036 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (2.0%)
patch tree reduce : 661.00 ns (0.3%)
gen split merge : 431.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.4%)
LB compute : 187.38 us (93.4%)
LB move op cnt : 0
LB apply : 2.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.26323742325209e-22,7.92698747026275e-23,-8.754108982435773e-23)
sum a = (-1.3195966745444278e-25,-1.4813905755504874e-25,2.0224583406633785e-26)
sum e = 7.859765621315213e-16
sum de = 1.5407439555097887e-32
Info: cfl dt = 49.43070406104663 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4533e+04 | 2592 | 1 | 5.820e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3057316.338664505 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9036.547046897202, dt = 49.43070406104663 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.93 us (2.0%)
patch tree reduce : 922.00 ns (0.5%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 183.24 us (92.9%)
LB move op cnt : 0
LB apply : 2.54 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.338207965236164e-22,6.964802664924019e-23,-8.4822135024363e-23)
sum a = (-2.5436648799645109e-26,-1.2169194367998957e-25,1.1121349816949632e-25)
sum e = 7.859870182077385e-16
sum de = 3.0814879110195774e-32
Info: cfl dt = 49.43184480103072 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3702e+04 | 2592 | 1 | 5.931e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3000314.8107278775 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9085.977750958249, dt = 49.43184480103072 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (1.9%)
patch tree reduce : 1.19 us (0.5%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 206.44 us (93.3%)
LB move op cnt : 0
LB apply : 2.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.344369927591019e-22,6.428479261785598e-23,-7.707582358378578e-23)
sum a = (-1.482070291322841e-25,8.989564297166347e-26,-8.243194245077782e-26)
sum e = 7.859973345111044e-16
sum de = 1.5407439555097887e-33
Info: cfl dt = 49.43301667321494 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4304e+04 | 2592 | 1 | 5.851e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3041698.977863856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9135.40959575928, dt = 49.43301667321494 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 us (1.8%)
patch tree reduce : 1.16 us (0.6%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 661.00 ns (0.3%)
LB compute : 179.63 us (93.8%)
LB move op cnt : 0
LB apply : 2.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4324346395791606e-22,7.396521140716834e-23,-8.59368088529641e-23)
sum a = (2.0714132484797248e-25,5.552998726131402e-26,1.3641233425625866e-25)
sum e = 7.86007490730645e-16
sum de = -6.933347799794049e-33
Info: cfl dt = 49.43421909024416 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4571e+04 | 2592 | 1 | 5.815e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3060142.187531683 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9184.842612432494, dt = 7.545769805714372 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (1.8%)
patch tree reduce : 992.00 ns (0.5%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 192.06 us (93.3%)
LB move op cnt : 0
LB apply : 2.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.323830053074835e-22,7.353054433610806e-23,-7.949840639036794e-23)
sum a = (3.181649629798882e-25,1.506931826143342e-27,-2.78491232472147e-25)
sum e = 7.857474192512537e-16
sum de = 2.311115933264683e-33
Info: cfl dt = 49.43441569634302 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5357e+04 | 2592 | 1 | 5.715e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 475347.2549085549 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 212 [SPH][rank=0]
Info: time since start : 29.206880076 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00030047200000000003 s
sph::RenderFieldGetter compute custom field took : 0.00023828100000000002 s
rho_t_ampl=-0.00114323, rho_t_phi=3.14159 rad
eps_t_ampl=-3.92337e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-5.41833e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 9545.94s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 9192.388382238209, dt = 49.43441569634302 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.72 us (3.7%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 712.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 230.24 us (86.8%)
LB move op cnt : 0
LB apply : 15.72 us (5.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.186983139110755e-22,7.339595199430767e-23,-9.483084114722262e-23)
sum a = (-1.28850604417325e-25,-1.8377452810524925e-25,-1.602163185909168e-26)
sum e = 7.860151860608352e-16
sum de = 2.311115933264683e-33
Info: cfl dt = 49.43564253084745 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3959e+04 | 2592 | 1 | 5.896e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3018211.128791417 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9241.822797934552, dt = 49.43564253084745 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.89 us (1.8%)
patch tree reduce : 631.00 ns (0.3%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.4%)
LB compute : 205.43 us (93.9%)
LB move op cnt : 0
LB apply : 2.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.340261952687782e-22,5.9742752397695e-23,-8.913536514037448e-23)
sum a = (-8.483479666200022e-26,-1.035695360938159e-25,-2.4689791277442776e-25)
sum e = 7.860267001306907e-16
sum de = 9.244463733058732e-33
Info: cfl dt = 49.436908476891716 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4081e+04 | 2592 | 1 | 5.880e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3026634.9823214035 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9291.258440465399, dt = 49.436908476891716 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (2.0%)
patch tree reduce : 821.00 ns (0.4%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.4%)
LB compute : 190.81 us (93.1%)
LB move op cnt : 0
LB apply : 2.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.377490475248367e-22,5.659958995952496e-23,-1.0704799330344701e-22)
sum a = (-9.432496085191218e-26,1.2782721103039066e-26,-9.468644184781767e-26)
sum e = 7.860362516692385e-16
sum de = 6.933347799794049e-33
Info: cfl dt = 49.438203179745244 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4247e+04 | 2592 | 1 | 5.858e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3038120.54308589 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9340.69534894229, dt = 49.438203179745244 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.45 us (2.2%)
patch tree reduce : 961.00 ns (0.5%)
gen split merge : 961.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.4%)
LB compute : 185.99 us (92.7%)
LB move op cnt : 0
LB apply : 2.68 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3953344912343026e-22,6.010380487942482e-23,-1.0796668857524162e-22)
sum a = (-1.0929359499029377e-25,1.5919080506980337e-25,-8.751459118074926e-26)
sum e = 7.860455334585554e-16
sum de = 2.2340787354891936e-32
Info: cfl dt = 49.43952583068931 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3988e+04 | 2592 | 1 | 5.892e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3020423.567537007 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9390.133552122035, dt = 49.43952583068931 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.48 us (1.8%)
patch tree reduce : 1.25 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.4%)
LB compute : 185.61 us (93.6%)
LB move op cnt : 0
LB apply : 1.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4663254325308655e-22,7.159710829644494e-23,-1.1211608676124155e-22)
sum a = (-6.917665257587073e-26,-7.915716215689062e-26,3.473102145210788e-26)
sum e = 7.860545560910991e-16
sum de = 4.237045877651919e-32
Info: cfl dt = 49.44087576665827 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4037e+04 | 2592 | 1 | 5.886e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3023860.8907094374 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9439.573077952724, dt = 49.44087576665827 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.76 us (1.9%)
patch tree reduce : 962.00 ns (0.5%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.5%)
LB compute : 185.36 us (92.9%)
LB move op cnt : 0
LB apply : 2.57 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5008580965612007e-22,6.178651002899778e-23,-1.0737707208266865e-22)
sum a = (3.3298315858421574e-25,4.5024999587937606e-26,1.0819744970996166e-26)
sum e = 7.860633019674309e-16
sum de = -1.3866695599588098e-32
Info: cfl dt = 49.44225231210983 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4170e+04 | 2592 | 1 | 5.868e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3033049.414190164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9489.013953719383, dt = 49.44225231210983 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.98 us (2.0%)
patch tree reduce : 1.38 us (0.7%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.5%)
LB compute : 188.61 us (92.6%)
LB move op cnt : 0
LB apply : 2.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2365355863810502e-22,6.708655987607929e-23,-1.074332167468093e-22)
sum a = (7.159620566524062e-26,-1.1899923103887693e-28,8.093979331630149e-27)
sum e = 7.860717538454733e-16
sum de = 2.5422275265911513e-32
Info: cfl dt = 49.443617340171095 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3954e+04 | 2592 | 1 | 5.897e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3018339.912762639 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9538.456206031493, dt = 7.485575523567604 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.11 us (2.1%)
patch tree reduce : 1.20 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 591.00 ns (0.3%)
LB compute : 184.18 us (93.3%)
LB move op cnt : 0
LB apply : 2.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2969998419880685e-22,6.596850069098931e-23,-1.0744001264945983e-22)
sum a = (-2.9137436737375634e-25,-2.1322360570949125e-25,2.471156243565076e-25)
sum e = 7.857598231962215e-16
sum de = -4.622231866529366e-33
Info: cfl dt = 49.44383075670643 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5480e+04 | 2592 | 1 | 5.699e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 472835.6882266398 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 220 [SPH][rank=0]
Info: time since start : 29.911759953 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000290478 s
sph::RenderFieldGetter compute custom field took : 0.000223128 s
rho_t_ampl=-0.00124592, rho_t_phi=3.14159 rad
eps_t_ampl=-3.45458e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-4.01951e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 9899.50s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 9545.94178155506, dt = 49.44383075670643 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.78 us (3.6%)
patch tree reduce : 1.52 us (0.6%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.4%)
LB compute : 247.23 us (91.4%)
LB move op cnt : 0
LB apply : 3.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4430896994844314e-22,5.463225510352165e-23,-9.432706225364788e-23)
sum a = (-5.576254995604802e-26,-1.5111491980680614e-25,1.0069678099839503e-25)
sum e = 7.860780592455197e-16
sum de = 8.474091755303838e-33
Info: cfl dt = 49.44519808180165 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3523e+04 | 2592 | 1 | 5.955e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2988808.2973730424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9595.385612311768, dt = 49.44519808180165 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (1.8%)
patch tree reduce : 1.30 us (0.6%)
gen split merge : 881.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.4%)
LB compute : 189.23 us (93.0%)
LB move op cnt : 0
LB apply : 2.64 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4121515134944285e-22,4.869735464273191e-23,-9.296784422626805e-23)
sum a = (3.483905717802551e-25,1.1014529648256872e-27,-4.115655706779149e-27)
sum e = 7.860871944501288e-16
sum de = 1.0785207688568521e-32
Info: cfl dt = 49.44659679951004 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4261e+04 | 2592 | 1 | 5.856e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3039553.3627891038 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9644.830810393569, dt = 49.44659679951004 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (1.9%)
patch tree reduce : 521.00 ns (0.3%)
gen split merge : 560.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.4%)
LB compute : 182.65 us (93.9%)
LB move op cnt : 0
LB apply : 1.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (56.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.156044953120752e-22,5.250866475681417e-23,-9.576258524173914e-23)
sum a = (-5.503543037478661e-26,9.555706811649577e-26,-6.230959148381475e-26)
sum e = 7.860946482305089e-16
sum de = -1.4637067577342992e-32
Info: cfl dt = 49.448019443063366 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3739e+04 | 2592 | 1 | 5.926e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3003780.9624572094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9694.277407193078, dt = 49.448019443063366 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (2.0%)
patch tree reduce : 1.11 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.6%)
LB compute : 181.97 us (92.7%)
LB move op cnt : 0
LB apply : 2.47 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (57.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2777437096291457e-22,5.957406065484236e-23,-1.0028241717219329e-22)
sum a = (-2.6113622202888495e-26,2.2553987920938406e-25,8.834929426292326e-26)
sum e = 7.861017076199154e-16
sum de = 5.3926038442842604e-33
Info: cfl dt = 49.44946513029369 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3430e+04 | 2592 | 1 | 7.754e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2295881.604774192 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9743.725426636141, dt = 49.44946513029369 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (1.9%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 198.46 us (92.7%)
LB move op cnt : 0
LB apply : 2.78 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.285831285219893e-22,7.393492311564545e-23,-9.218870007040553e-23)
sum a = (-1.3768886829300258e-25,1.5434827092967564e-25,4.6437796763550945e-26)
sum e = 7.861083938318799e-16
sum de = 1.0785207688568521e-32
Info: cfl dt = 49.45093313890742 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6259e+04 | 2592 | 1 | 7.149e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2490262.202449054 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9793.174891766435, dt = 49.45093313890742 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.56 us (2.1%)
patch tree reduce : 1.30 us (0.6%)
gen split merge : 881.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 196.82 us (92.2%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.372740629266499e-22,7.980944757810148e-23,-9.09285582546173e-23)
sum a = (-2.480731426551885e-25,-4.1366483311208216e-26,9.74414327682314e-26)
sum e = 7.861146938021299e-16
sum de = 1.0400021699691074e-32
Info: cfl dt = 49.452422736296576 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.2596e+04 | 2592 | 1 | 6.085e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2925569.9918248723 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9842.625824905343, dt = 49.452422736296576 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.32 us (1.8%)
patch tree reduce : 1.43 us (0.6%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 631.00 ns (0.3%)
LB compute : 232.67 us (94.4%)
LB move op cnt : 0
LB apply : 2.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5274315592165145e-22,7.292718552219513e-23,-8.484875463237904e-23)
sum a = (1.0806501362885205e-25,-1.6736414237797235e-25,3.0766384335938785e-26)
sum e = 7.86120595093831e-16
sum de = 1.4637067577342992e-32
Info: cfl dt = 49.45393317929285 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.1771e+04 | 2592 | 1 | 6.205e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2869021.5285273995 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9892.078247641639, dt = 7.416933230277209 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.98 us (2.0%)
patch tree reduce : 631.00 ns (0.3%)
gen split merge : 711.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 671.00 ns (0.3%)
LB compute : 184.95 us (93.2%)
LB move op cnt : 0
LB apply : 2.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (57.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.432691388010613e-22,6.856767739001978e-23,-8.626918375456744e-23)
sum a = (1.4590030494345478e-25,-1.8800791350673805e-25,-7.596868740976557e-26)
sum e = 7.857689905484337e-16
sum de = 2.0029671421627253e-32
Info: cfl dt = 49.454166170681056 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3303e+04 | 2592 | 1 | 7.783e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 343063.51504041045 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 228 [SPH][rank=0]
Info: time since start : 30.673306788 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00027933200000000003 s
sph::RenderFieldGetter compute custom field took : 0.000248086 s
rho_t_ampl=-0.00131707, rho_t_phi=3.14159 rad
eps_t_ampl=-2.97258e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-2.51913e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 10253.05s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 9899.495180871916, dt = 49.454166170681056 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.89 us (3.6%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 821.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.4%)
LB compute : 247.93 us (91.5%)
LB move op cnt : 0
LB apply : 3.50 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3593897108309794e-22,5.919294970190534e-23,-9.042197529570729e-23)
sum a = (1.9704940652184417e-25,1.4837382393924642e-25,1.1256095200181595e-25)
sum e = 7.861248918954768e-16
sum de = 1.0785207688568521e-32
Info: cfl dt = 49.45569536136926 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3586e+04 | 2592 | 1 | 5.947e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2993745.9189131428 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9948.949347042597, dt = 49.45569536136926 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (2.1%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.5%)
LB compute : 186.42 us (92.5%)
LB move op cnt : 0
LB apply : 2.52 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2403868128528346e-22,7.485159524981502e-23,-8.019340708613604e-23)
sum a = (-1.7039671290526186e-25,-1.1780727989340933e-26,-2.4171747175080847e-26)
sum e = 7.861307226263806e-16
sum de = -5.585196838722984e-33
Info: cfl dt = 49.457247875887106 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4356e+04 | 2592 | 1 | 5.844e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3046771.9291265304 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9998.405042403967, dt = 49.457247875887106 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (1.9%)
patch tree reduce : 981.00 ns (0.5%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.3%)
LB compute : 185.29 us (93.8%)
LB move op cnt : 0
LB apply : 1.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.41844185006501e-22,7.030494158127638e-23,-8.476998053598002e-23)
sum a = (-2.1210579647175733e-25,4.064876613832518e-27,1.7948817669740685e-26)
sum e = 7.861353358973904e-16
sum de = 5.970382827600431e-33
Info: cfl dt = 49.45881901428808 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1961e+04 | 2592 | 1 | 8.110e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2195392.0927256513 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10047.862290279854, dt = 49.45881901428808 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 us (1.9%)
patch tree reduce : 1.00 us (0.4%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.4%)
LB compute : 224.90 us (93.1%)
LB move op cnt : 0
LB apply : 3.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.540076419465541e-22,7.09010793455547e-23,-8.284066960323349e-23)
sum a = (1.8403647332616568e-26,-1.9933595470936156e-26,1.6809898052038587e-26)
sum e = 7.861394673324154e-16
sum de = 1.7333369499485123e-33
Info: cfl dt = 49.460407809749185 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2794e+04 | 2592 | 1 | 7.904e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2252740.623439587 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10097.321109294142, dt = 49.460407809749185 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.8%)
patch tree reduce : 1.15 us (0.5%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 217.12 us (92.8%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.473642762827256e-22,6.932087298385058e-23,-8.203740999997303e-23)
sum a = (9.170482305047017e-26,-1.2262474094452806e-25,-2.5343781899488494e-26)
sum e = 7.861431488543714e-16
sum de = 9.437056727497456e-33
Info: cfl dt = 49.4620134704274 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3130e+04 | 2592 | 1 | 7.824e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2275854.312463302 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10146.781517103891, dt = 49.4620134704274 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.97 us (1.8%)
patch tree reduce : 982.00 ns (0.4%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 205.96 us (93.1%)
LB move op cnt : 0
LB apply : 2.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4099049647192207e-22,6.071348211176801e-23,-8.4333433582207e-23)
sum a = (-6.016036976822915e-25,-1.048735815766695e-25,1.759527393914559e-26)
sum e = 7.86146373249536e-16
sum de = -1.3481509610710651e-33
Info: cfl dt = 49.463635196616394 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2198e+04 | 2592 | 1 | 8.050e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2211926.6920488095 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10196.243530574318, dt = 49.463635196616394 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.18 us (1.6%)
patch tree reduce : 1.14 us (0.5%)
gen split merge : 660.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 237.00 us (93.6%)
LB move op cnt : 0
LB apply : 2.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.875036841849007e-22,5.596574226937707e-23,-8.240118129176464e-23)
sum a = (1.4655220525768917e-25,2.7541417091847136e-26,-9.903109566667857e-26)
sum e = 7.861491341436801e-16
sum de = 2.311115933264683e-33
Info: cfl dt = 49.4652721808666 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2940e+04 | 2592 | 1 | 7.869e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2262940.333731198 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10245.707165770935, dt = 7.34141441783504 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (1.7%)
patch tree reduce : 1.02 us (0.4%)
gen split merge : 551.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 232.47 us (93.9%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (56.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6802610630385007e-22,5.944267766843512e-23,-8.601259170554542e-23)
sum a = (2.2402805029554366e-26,6.703486230067882e-26,-8.904100660650902e-26)
sum e = 7.857740320596992e-16
sum de = -5.7777898331617076e-34
Info: cfl dt = 49.465518181745544 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3414e+04 | 2592 | 1 | 7.757e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 340702.08755723335 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 236 [SPH][rank=0]
Info: time since start : 31.49919874 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000279001 s
sph::RenderFieldGetter compute custom field took : 0.00023058 s
rho_t_ampl=-0.00135487, rho_t_phi=3.14159 rad
eps_t_ampl=-2.4896e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.55128e-09, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 10606.60s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 10253.04858018877, dt = 49.465518181745544 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.13 us (3.4%)
patch tree reduce : 1.41 us (0.5%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 271.54 us (92.1%)
LB move op cnt : 0
LB apply : 3.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6780466078172245e-22,6.290456921408776e-23,-9.03803805448125e-23)
sum a = (3.9522710204909397e-25,-2.990573103199404e-26,-6.759010188721522e-26)
sum e = 7.861510081352049e-16
sum de = 2.2148194360453212e-33
Info: cfl dt = 49.467089629505004 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3999e+04 | 2592 | 1 | 7.624e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2335795.710067347 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10302.514098370515, dt = 49.467089629505004 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (1.7%)
patch tree reduce : 1.37 us (0.6%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.4%)
LB compute : 227.03 us (93.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.386605044564924e-22,5.90270661450217e-23,-9.3193326114251e-23)
sum a = (4.7300382415505666e-26,-9.561162167344117e-26,-1.6440188491585075e-26)
sum e = 7.861529371522239e-16
sum de = 7.703719777548943e-34
Info: cfl dt = 49.46865271435955 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3628e+04 | 2592 | 1 | 5.941e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2997426.636072429 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10351.98118800002, dt = 49.46865271435955 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (1.4%)
patch tree reduce : 1.17 us (0.5%)
gen split merge : 550.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 570.00 ns (0.2%)
LB compute : 219.48 us (95.1%)
LB move op cnt : 0
LB apply : 1.91 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4496207377094994e-22,5.2671639835372765e-23,-9.274148141405116e-23)
sum a = (9.80232414807418e-26,-1.4614378814375327e-25,5.465962898583186e-26)
sum e = 7.861542489385347e-16
sum de = -1.179632090937182e-33
Info: cfl dt = 49.470228779235896 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.9632e+04 | 2592 | 1 | 6.540e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2722976.696039492 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10401.44984071438, dt = 49.470228779235896 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (1.8%)
patch tree reduce : 752.00 ns (0.3%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.4%)
LB compute : 214.86 us (93.8%)
LB move op cnt : 0
LB apply : 2.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.388330073088744e-22,4.4195030195561215e-23,-8.827885097370803e-23)
sum a = (1.4448367541444547e-25,-3.037565556740518e-26,8.282240708304124e-26)
sum e = 7.861550373759724e-16
sum de = 2.7685242950566515e-34
Info: cfl dt = 49.47083771805985 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1810e+04 | 2592 | 1 | 8.148e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2185640.970321938 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10450.920069493615, dt = 49.47083771805985 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.22 us (1.7%)
patch tree reduce : 1.30 us (0.5%)
gen split merge : 801.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 236.45 us (93.6%)
LB move op cnt : 0
LB apply : 3.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.305729288657447e-22,4.555489425105412e-23,-8.34849475757189e-23)
sum a = (2.1376062034635225e-25,1.4754592229317923e-25,1.6977707284077263e-25)
sum e = 7.861553287914799e-16
sum de = 8.666684749742561e-34
Info: cfl dt = 49.470709172814026 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1852e+04 | 2592 | 1 | 8.138e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2188552.742500648 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10500.390907211675, dt = 49.470709172814026 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (1.9%)
patch tree reduce : 1.04 us (0.5%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 212.86 us (93.1%)
LB move op cnt : 0
LB apply : 2.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (56.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1827146964378603e-22,5.725530138328871e-23,-7.293509530172557e-23)
sum a = (3.159961407806085e-25,1.5201539629254395e-26,-5.095068068688988e-26)
sum e = 7.861551258325331e-16
sum de = -8.666684749742561e-34
Info: cfl dt = 49.46928364539392 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1764e+04 | 2592 | 1 | 8.160e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2182466.936356392 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10549.861616384489, dt = 49.46928364539392 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (1.8%)
patch tree reduce : 1.13 us (0.5%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 222.56 us (93.1%)
LB move op cnt : 0
LB apply : 2.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0019156603645385e-22,5.473405184489825e-23,-8.091536822711481e-23)
sum a = (3.9615480634242753e-26,1.2652791572260321e-25,-1.1613813595663647e-25)
sum e = 7.861544202396402e-16
sum de = -5.585196838722984e-33
Info: cfl dt = 49.46772490101308 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1712e+04 | 2592 | 1 | 8.173e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2178865.4978300296 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10599.330900029883, dt = 7.271079475740407 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.18 us (1.9%)
patch tree reduce : 1.11 us (0.5%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 208.27 us (93.0%)
LB move op cnt : 0
LB apply : 2.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0652522890484295e-22,5.8404852368174e-23,-8.33722062012588e-23)
sum a = (-1.5483886117516842e-25,3.937836364795047e-26,-9.854399318188809e-27)
sum e = 7.857745022959569e-16
sum de = 4.4296388720906425e-33
Info: cfl dt = 49.46748360723847 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1506e+04 | 2592 | 1 | 8.227e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 318168.9418389295 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 244 [SPH][rank=0]
Info: time since start : 32.343944632 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000275405 s
sph::RenderFieldGetter compute custom field took : 0.00021738100000000002 s
rho_t_ampl=-0.00135837, rho_t_phi=3.14159 rad
eps_t_ampl=-2.01786e-07, eps_t_phi=6.28319 rad
vx_t_ampl=6.32937e-09, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 10960.16s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 10606.601979505624, dt = 49.46748360723847 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.91 us (3.4%)
patch tree reduce : 1.37 us (0.5%)
gen split merge : 782.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 271.56 us (92.2%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1511988264770897e-22,6.003711046266084e-23,-8.347327978996044e-23)
sum a = (1.2686983038561286e-25,-1.5693481470951573e-25,-5.20795125074083e-26)
sum e = 7.861536423419053e-16
sum de = 6.7407548053553255e-34
Info: cfl dt = 49.46583490832171 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0409e+04 | 2592 | 1 | 8.524e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2089251.3849046393 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10656.069463112863, dt = 49.46583490832171 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (1.8%)
patch tree reduce : 1.11 us (0.5%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 217.50 us (88.3%)
LB move op cnt : 0
LB apply : 2.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0179784841072734e-22,4.74195297344765e-23,-8.709382140501409e-23)
sum a = (1.4038422536147162e-25,2.120086382518474e-26,-1.1739465155825464e-25)
sum e = 7.86151414146519e-16
sum de = -8.281498760865114e-33
Info: cfl dt = 49.46420271558763 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1220e+04 | 2592 | 1 | 8.302e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2144912.5460072467 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10705.535298021185, dt = 49.46420271558763 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (1.6%)
patch tree reduce : 1.19 us (0.5%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 234.95 us (93.8%)
LB move op cnt : 0
LB apply : 2.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.944099122956872e-22,5.287272600922506e-23,-9.451608819006099e-23)
sum a = (-7.762628357190858e-26,-1.8083965447751635e-27,2.868540957154659e-26)
sum e = 7.861492474068426e-16
sum de = -2.8888949165808538e-33
Info: cfl dt = 49.46258587092156 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0594e+04 | 2592 | 1 | 8.472e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2101790.90140191 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10754.999500736772, dt = 49.46258587092156 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.31 us (1.9%)
patch tree reduce : 1.20 us (0.5%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 209.00 us (92.6%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.035950874308935e-22,5.221440698420438e-23,-8.948436677767548e-23)
sum a = (9.267013697731722e-26,-7.610789256055409e-26,-1.5143282896041032e-25)
sum e = 7.861465676423509e-16
sum de = -2.1185229388259594e-33
Info: cfl dt = 49.46098536129969 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0503e+04 | 2592 | 1 | 8.498e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2095494.102215729 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10804.462086607695, dt = 49.46098536129969 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.16 us (1.6%)
patch tree reduce : 1.38 us (0.5%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 240.76 us (93.9%)
LB move op cnt : 0
LB apply : 2.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9537271891363336e-22,4.6610772175401734e-23,-1.0142894063424707e-22)
sum a = (-1.6031733112363807e-25,3.0166549922740157e-26,4.8145111376508017e-26)
sum e = 7.861434245490563e-16
sum de = -3.659266894335748e-33
Info: cfl dt = 49.4594019715891 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0054e+04 | 2592 | 1 | 8.624e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2064611.4323305343 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10853.923071968995, dt = 49.4594019715891 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (1.9%)
patch tree reduce : 1.23 us (0.5%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 209.42 us (92.8%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0950030135429657e-22,5.073429239382424e-23,-9.411205142500168e-23)
sum a = (2.5728750286600124e-25,-4.692702844948081e-26,-1.5784306543238482e-25)
sum e = 7.861398244613563e-16
sum de = -1.3481509610710651e-33
Info: cfl dt = 49.4578364774769 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0264e+04 | 2592 | 1 | 8.565e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2078944.5114169214 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10903.382473940585, dt = 49.4578364774769 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.58 us (1.8%)
patch tree reduce : 1.06 us (0.4%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 235.26 us (93.5%)
LB move op cnt : 0
LB apply : 2.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8645712963145197e-22,4.650496373978369e-23,-1.0701265396334855e-22)
sum a = (7.153352294271808e-26,-2.9629829111140944e-26,-2.5710802910058193e-26)
sum e = 7.861357747050866e-16
sum de = 2.6963019221421302e-33
Info: cfl dt = 49.45628964485529 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9621e+04 | 2592 | 1 | 8.750e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2034734.0804276562 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10952.840310418062, dt = 7.315068404415797 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 us (2.0%)
patch tree reduce : 1.00 us (0.4%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 208.38 us (93.1%)
LB move op cnt : 0
LB apply : 2.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9000667669628012e-22,4.6716981780443917e-23,-1.0393324232876101e-22)
sum a = (-1.6827803688400015e-25,2.612678557461823e-25,-1.4002370482423789e-27)
sum e = 7.857706286761795e-16
sum de = 7.703719777548943e-34
Info: cfl dt = 49.45606653144668 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0461e+04 | 2592 | 1 | 8.509e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 309473.48370218946 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 252 [SPH][rank=0]
Info: time since start : 33.260207359 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000297809 s
sph::RenderFieldGetter compute custom field took : 0.00026548100000000003 s
rho_t_ampl=-0.00132749, rho_t_phi=3.14159 rad
eps_t_ampl=-1.5693e-07, eps_t_phi=6.28319 rad
vx_t_ampl=2.2049e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 11313.71s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 10960.155378822477, dt = 49.45606653144668 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.85 us (3.6%)
patch tree reduce : 1.61 us (0.6%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 254.13 us (91.6%)
LB move op cnt : 0
LB apply : 3.59 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9998135325820228e-22,6.070019337459323e-23,-1.0391357581925413e-22)
sum a = (-5.064763979820909e-27,4.37253125131344e-26,-3.7586737043195843e-26)
sum e = 7.861324908496192e-16
sum de = 1.0400021699691074e-32
Info: cfl dt = 49.454537597085334 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4303e+04 | 2592 | 1 | 5.851e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3043113.3208244285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11009.611445353925, dt = 49.454537597085334 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (2.0%)
patch tree reduce : 661.00 ns (0.3%)
gen split merge : 631.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 178.79 us (93.4%)
LB move op cnt : 0
LB apply : 2.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9537271891363336e-22,5.74847702938992e-23,-1.066672314951615e-22)
sum a = (-2.5812745134780324e-26,-1.509083606477436e-25,-8.368388016178455e-28)
sum e = 7.86126378894003e-16
sum de = -1.1555579666323415e-32
Info: cfl dt = 49.45303357934784 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4714e+04 | 2592 | 1 | 5.797e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3071283.6306270896 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11059.06598295101, dt = 49.45303357934784 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.76 us (1.9%)
patch tree reduce : 921.00 ns (0.5%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.5%)
LB compute : 180.66 us (92.8%)
LB move op cnt : 0
LB apply : 2.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9820978908118135e-22,4.520893576890774e-23,-1.0579989110037306e-22)
sum a = (-2.1901343249374076e-25,1.1612307349263196e-25,2.859676321167265e-26)
sum e = 7.86121013753078e-16
sum de = -3.0429693121318326e-32
Info: cfl dt = 49.451550376889216 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4734e+04 | 2592 | 1 | 5.794e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3072516.8009977974 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11108.519016530357, dt = 49.451550376889216 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (1.8%)
patch tree reduce : 1.21 us (0.6%)
gen split merge : 721.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.4%)
LB compute : 199.53 us (93.7%)
LB move op cnt : 0
LB apply : 2.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.128572870955355e-22,5.75551253816585e-23,-1.0365794636942788e-22)
sum a = (7.282478702668233e-26,-1.879815671749278e-26,5.57328630856685e-26)
sum e = 7.861151959118063e-16
sum de = -3.851859888774472e-34
Info: cfl dt = 49.45008890058834 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4414e+04 | 2592 | 1 | 5.836e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3050449.5563493283 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11157.970566907246, dt = 49.45008890058834 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (1.7%)
patch tree reduce : 661.00 ns (0.3%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 701.00 ns (0.3%)
LB compute : 191.59 us (94.3%)
LB move op cnt : 0
LB apply : 1.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0180426712151367e-22,5.328888914059668e-23,-1.0023099023016923e-22)
sum a = (-2.242662446411293e-25,-3.6882611874014124e-26,6.095835602002172e-26)
sum e = 7.861089799017069e-16
sum de = 1.2711137632955757e-32
Info: cfl dt = 49.448649859406935 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3803e+04 | 2592 | 1 | 5.917e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3008412.115590246 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11207.420655807835, dt = 49.448649859406935 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (2.0%)
patch tree reduce : 841.00 ns (0.4%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 180.21 us (92.8%)
LB move op cnt : 0
LB apply : 2.50 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.207908136274118e-22,5.1017568153448084e-23,-9.708748128227017e-23)
sum a = (6.681978220902337e-27,9.19654460577084e-26,-2.1093402165292015e-26)
sum e = 7.861023780410461e-16
sum de = 2.0800043399382147e-32
Info: cfl dt = 49.447233951078594 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4479e+04 | 2592 | 1 | 5.827e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3054792.4380525327 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11256.869305667242, dt = 49.447233951078594 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.97 us (2.0%)
patch tree reduce : 1.30 us (0.7%)
gen split merge : 782.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 181.99 us (92.4%)
LB move op cnt : 0
LB apply : 2.64 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.156943572630835e-22,5.875101143503245e-23,-1.0015916600438451e-22)
sum a = (6.516495833442843e-26,2.7497852599693975e-25,-4.2233908085685267e-26)
sum e = 7.860954035704831e-16
sum de = -1.617781153285278e-32
Info: cfl dt = 49.44584186105702 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3872e+04 | 2592 | 1 | 5.908e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3012959.7390051186 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11306.316539618321, dt = 7.392238521009858 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (1.8%)
patch tree reduce : 1.06 us (0.5%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.3%)
LB compute : 181.36 us (93.8%)
LB move op cnt : 0
LB apply : 2.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.139356305076352e-22,6.530717289528756e-23,-1.0099403889767614e-22)
sum a = (7.139562095316851e-26,3.379284336242281e-26,1.15881890592751e-25)
sum e = 7.857626329427145e-16
sum de = -3.158525108795067e-32
Info: cfl dt = 49.44564263982006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.2241e+04 | 2592 | 1 | 6.136e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 433688.33557500463 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 260 [SPH][rank=0]
Info: time since start : 34.11154479 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00032112300000000004 s
sph::RenderFieldGetter compute custom field took : 0.00024107500000000002 s
rho_t_ampl=-0.00126301, rho_t_phi=3.14159 rad
eps_t_ampl=-1.15525e-07, eps_t_phi=6.28319 rad
vx_t_ampl=3.721e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 11667.26s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 11313.708778139331, dt = 49.44564263982006 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.34 us (3.9%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 751.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 216.85 us (90.4%)
LB move op cnt : 0
LB apply : 3.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.094553703787924e-22,6.608739727907006e-23,-9.467976949811625e-23)
sum a = (4.068108691712586e-26,-1.3301117012475833e-25,-1.8826412404850975e-25)
sum e = 7.860899456223069e-16
sum de = -2.9274135154685985e-32
Info: cfl dt = 49.4442416309811 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4045e+04 | 2592 | 1 | 5.885e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3024765.097478972 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11363.15442077915, dt = 49.4442416309811 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (1.9%)
patch tree reduce : 1.11 us (0.6%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.5%)
LB compute : 187.01 us (93.1%)
LB move op cnt : 0
LB apply : 2.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0678518669168842e-22,5.53875317637402e-23,-1.1150769391315173e-22)
sum a = (1.5502690934273604e-25,3.4049450757749435e-27,-1.0223455442560206e-25)
sum e = 7.860805619194805e-16
sum de = 4.622231866529366e-33
Info: cfl dt = 49.442846608650854 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4547e+04 | 2592 | 1 | 5.819e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3059159.1889085975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11412.598662410132, dt = 49.442846608650854 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (1.8%)
patch tree reduce : 681.00 ns (0.3%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 711.00 ns (0.3%)
LB compute : 192.62 us (94.0%)
LB move op cnt : 0
LB apply : 2.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9838951298319797e-22,5.892782685872402e-23,-1.1443562789179872e-22)
sum a = (-4.358956524217153e-26,-1.368472548013836e-25,8.112335235114494e-26)
sum e = 7.860725466470791e-16
sum de = -1.1170393677445968e-32
Info: cfl dt = 49.44147738387446 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3953e+04 | 2592 | 1 | 5.897e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3018284.472926454 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11462.041509018782, dt = 49.44147738387446 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (1.6%)
patch tree reduce : 1.19 us (0.6%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 198.91 us (93.3%)
LB move op cnt : 0
LB apply : 2.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.046798495537795e-22,4.8694997772365065e-23,-1.0589190107160493e-22)
sum a = (-8.176334325839596e-26,-1.8448436096694e-25,-7.191172851839754e-27)
sum e = 7.86064182060238e-16
sum de = -1.771855548836257e-32
Info: cfl dt = 49.44013480159513 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4086e+04 | 2592 | 1 | 5.879e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3027306.679211604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11511.482986402656, dt = 49.44013480159513 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.93 us (1.9%)
patch tree reduce : 1.21 us (0.6%)
gen split merge : 871.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.5%)
LB compute : 187.50 us (92.8%)
LB move op cnt : 0
LB apply : 2.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0924997163363059e-22,3.839602587720033e-23,-1.0843063392703353e-22)
sum a = (-1.6050537929120567e-25,2.2742369090469416e-26,-6.93683007871598e-27)
sum e = 7.860555242377287e-16
sum de = 2.311115933264683e-32
Info: cfl dt = 49.438819504890866 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4162e+04 | 2592 | 1 | 5.869e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3032449.1704564644 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11560.92312120425, dt = 49.438819504890866 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (1.7%)
patch tree reduce : 1.06 us (0.5%)
gen split merge : 541.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.4%)
LB compute : 182.56 us (93.8%)
LB move op cnt : 0
LB apply : 1.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (54.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1900641202881824e-22,4.4642885711440226e-23,-1.087672952467298e-22)
sum a = (2.1797289929986667e-25,-6.692095604084491e-26,-1.4116188358450428e-25)
sum e = 7.860465902353241e-16
sum de = -3.389636702121535e-32
Info: cfl dt = 49.43753212367088 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4238e+04 | 2592 | 1 | 5.859e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3037616.8225429906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11610.361940709141, dt = 49.43753212367088 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (1.8%)
patch tree reduce : 631.00 ns (0.3%)
gen split merge : 711.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.4%)
LB compute : 197.88 us (93.8%)
LB move op cnt : 0
LB apply : 2.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9820978908118135e-22,3.9117880109769854e-23,-1.1906395449772943e-22)
sum a = (-5.907219770523793e-26,-1.4885780311634816e-25,-4.8638715391462996e-26)
sum e = 7.860373978676154e-16
sum de = 3.4666738998970245e-32
Info: cfl dt = 49.43627327332188 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4254e+04 | 2592 | 1 | 5.857e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3038656.0099397604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11659.799472832812, dt = 7.4627046233745205 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (1.9%)
patch tree reduce : 992.00 ns (0.5%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.6%)
LB compute : 195.55 us (92.9%)
LB move op cnt : 0
LB apply : 2.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0691356090741457e-22,3.598149994217675e-23,-1.1713987231410148e-22)
sum a = (3.0388583878925453e-26,-1.5737981306854877e-25,-1.1943596110563808e-25)
sum e = 7.85751257446283e-16
sum de = -1.3096323621833204e-32
Info: cfl dt = 49.4360954427121 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6145e+04 | 2592 | 1 | 5.617e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 478284.5904552942 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 268 [SPH][rank=0]
Info: time since start : 34.815073838 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00030872500000000004 s
sph::RenderFieldGetter compute custom field took : 0.000261986 s
rho_t_ampl=-0.00116657, rho_t_phi=3.14159 rad
eps_t_ampl=-7.86188e-08, eps_t_phi=6.28319 rad
vx_t_ampl=5.1429e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 12020.82s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 11667.262177456187, dt = 49.4360954427121 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.03 us (4.1%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 223.48 us (90.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0390960425942258e-22,2.81693898438266e-23,-1.233084893530636e-22)
sum a = (-1.415626605448953e-25,-6.792946228118014e-26,-1.7033183950922517e-25)
sum e = 7.860303168099459e-16
sum de = 1.9259299443872359e-32
Info: cfl dt = 49.43486012141948 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4624e+04 | 2592 | 1 | 5.809e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3063910.76085093 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11716.698272898899, dt = 49.43486012141948 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.76 us (1.9%)
patch tree reduce : 1.03 us (0.5%)
gen split merge : 681.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.6%)
LB compute : 180.57 us (92.9%)
LB move op cnt : 0
LB apply : 2.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1541193398848598e-22,2.702217065621914e-23,-1.3298686676462098e-22)
sum a = (-1.231088670342607e-26,-1.4256450674596252e-26,-8.860114684045266e-26)
sum e = 7.860186006438026e-16
sum de = -4.08297148210094e-32
Info: cfl dt = 49.43366483002962 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4491e+04 | 2592 | 1 | 5.826e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3054744.7811257844 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11766.133133020317, dt = 49.43366483002962 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (2.3%)
patch tree reduce : 1.14 us (0.6%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.5%)
LB compute : 178.81 us (92.3%)
LB move op cnt : 0
LB apply : 2.45 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.11971505007025e-22,2.7644158775265765e-23,-1.3534657348122863e-22)
sum a = (6.264511288902247e-26,5.647321532264727e-28,-1.3369511989934575e-25)
sum e = 7.860087497682459e-16
sum de = -9.244463733058732e-33
Info: cfl dt = 49.4324997385364 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4606e+04 | 2592 | 1 | 5.811e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3062565.2165431557 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11815.566797850348, dt = 49.4324997385364 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (1.5%)
patch tree reduce : 571.00 ns (0.3%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 207.94 us (95.2%)
LB move op cnt : 0
LB apply : 2.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0596359171104103e-22,2.803850205092729e-23,-1.4307003763572838e-22)
sum a = (-1.988546689304932e-25,1.602259024963337e-25,5.074876175000664e-26)
sum e = 7.859986855017839e-16
sum de = 6.933347799794049e-32
Info: cfl dt = 49.4313655731586 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3915e+04 | 2592 | 1 | 5.902e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3015017.433277442 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11864.999297588884, dt = 49.4313655731586 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (1.9%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.4%)
LB compute : 179.75 us (93.3%)
LB move op cnt : 0
LB apply : 2.39 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.230630372457647e-22,3.9904979221145023e-23,-1.3600269597558138e-22)
sum a = (-1.9806486662670925e-25,1.3734367258123588e-25,-8.987912394569299e-26)
sum e = 7.859884620463806e-16
sum de = -4.622231866529366e-33
Info: cfl dt = 49.430259314834224 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4470e+04 | 2592 | 1 | 5.829e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3053077.156478491 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11914.430663162042, dt = 49.430259314834224 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (1.8%)
patch tree reduce : 941.00 ns (0.4%)
gen split merge : 852.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 200.34 us (93.2%)
LB move op cnt : 0
LB apply : 2.76 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.340775449550687e-22,4.6128253113967755e-23,-1.439211585930058e-22)
sum a = (1.5379832798129433e-25,-3.8802808930913466e-26,-1.4063343544954657e-25)
sum e = 7.859780994392374e-16
sum de = 4.468157470978387e-32
Info: cfl dt = 49.429183664586255 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3837e+04 | 2592 | 1 | 5.913e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3009573.198246403 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11963.860922476877, dt = 49.429183664586255 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (2.1%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.3%)
LB compute : 179.03 us (93.3%)
LB move op cnt : 0
LB apply : 2.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.176199704989758e-22,3.985677777459325e-23,-1.5212695389271484e-22)
sum a = (-1.6195961845372852e-25,1.0896514731845107e-25,2.0931869258085293e-26)
sum e = 7.859676183015665e-16
sum de = -1.5407439555097887e-33
Info: cfl dt = 49.428140574842175 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4479e+04 | 2592 | 1 | 5.828e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3053535.2733268854 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12013.290106141463, dt = 7.525470631577264 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (2.0%)
patch tree reduce : 721.00 ns (0.4%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 181.22 us (93.0%)
LB move op cnt : 0
LB apply : 2.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2550214734456162e-22,4.4328826466785566e-23,-1.4797641116523535e-22)
sum a = (-3.651519317827812e-25,-7.755860581993503e-27,-1.0146817844369962e-25)
sum e = 7.857376791136084e-16
sum de = -4.8533434598558343e-32
Info: cfl dt = 49.42799675000706 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6511e+04 | 2592 | 1 | 5.573e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 486138.94025787344 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 276 [SPH][rank=0]
Info: time since start : 35.514830339 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00029871000000000005 s
sph::RenderFieldGetter compute custom field took : 0.000246403 s
rho_t_ampl=-0.0010406, rho_t_phi=3.14159 rad
eps_t_ampl=-4.71429e-08, eps_t_phi=6.28319 rad
vx_t_ampl=6.43464e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 12374.37s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 12020.81557677304, dt = 49.42799675000706 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.77 us (3.9%)
patch tree reduce : 1.62 us (0.6%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 229.90 us (91.1%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.461190463901819e-22,4.350636019629512e-23,-1.5345233894171675e-22)
sum a = (-1.1088573614236618e-25,-2.5516177503845576e-26,-2.496517863758308e-25)
sum e = 7.859596321007275e-16
sum de = 2.1570415377137042e-32
Info: cfl dt = 49.426979358384116 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.2465e+04 | 2592 | 1 | 6.104e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2915248.6274689753 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12070.243573523048, dt = 49.426979358384116 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (2.0%)
patch tree reduce : 641.00 ns (0.3%)
gen split merge : 841.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 181.81 us (93.4%)
LB move op cnt : 0
LB apply : 2.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4498935329179177e-22,4.1806191640227364e-23,-1.6945408207934302e-22)
sum a = (-5.1638026814065156e-26,-1.0812999798259222e-25,-1.1075619685255101e-25)
sum e = 7.85946754717433e-16
sum de = 3.543711097672514e-32
Info: cfl dt = 49.42600814566708 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.2749e+04 | 2592 | 1 | 6.063e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2934657.198748141 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12119.670552881433, dt = 49.42600814566708 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (1.9%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 182.33 us (92.7%)
LB move op cnt : 0
LB apply : 2.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4891760429301206e-22,3.442012347031839e-23,-1.7149572404898952e-22)
sum a = (2.3043422453734683e-25,-1.6093593124153235e-26,-1.1324664863203814e-25)
sum e = 7.859360643173605e-16
sum de = -4.08297148210094e-32
Info: cfl dt = 49.42507082775044 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4318e+04 | 2592 | 1 | 5.849e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3042275.054258637 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12169.0965610271, dt = 49.42507082775044 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (2.0%)
patch tree reduce : 1.18 us (0.6%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 183.56 us (92.2%)
LB move op cnt : 0
LB apply : 2.99 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.261183435800472e-22,3.589954855075078e-23,-1.7715449422359513e-22)
sum a = (-2.0671508233481923e-25,8.635289384809289e-26,-2.2698600562979341e-26)
sum e = 7.859253153795234e-16
sum de = -5.3926038442842604e-33
Info: cfl dt = 49.42416799855734 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3980e+04 | 2592 | 1 | 5.894e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3019060.931374832 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12218.52163185485, dt = 49.42416799855734 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (1.9%)
patch tree reduce : 1.21 us (0.6%)
gen split merge : 691.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 531.00 ns (0.3%)
LB compute : 184.46 us (93.6%)
LB move op cnt : 0
LB apply : 2.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (57.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.505864690974521e-22,4.269866824350323e-23,-1.760386818265929e-22)
sum a = (3.492430568065616e-25,-1.7397393752621984e-27,1.2089301287516683e-25)
sum e = 7.85914557005466e-16
sum de = 2.0800043399382147e-32
Info: cfl dt = 49.42330007692766 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7930e+04 | 2592 | 1 | 6.834e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2603666.802402719 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12267.945799853407, dt = 49.42330007692766 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (2.0%)
patch tree reduce : 661.00 ns (0.3%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 196.24 us (93.3%)
LB move op cnt : 0
LB apply : 2.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1512951071388843e-22,4.0435546156460586e-23,-1.6651530216118442e-22)
sum a = (-2.3938531731356497e-25,-1.1499424580757962e-25,2.3375504910968754e-27)
sum e = 7.859038102747595e-16
sum de = 2.3881531310401725e-32
Info: cfl dt = 49.422467466023726 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.2086e+04 | 2592 | 1 | 6.159e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2888916.5392635427 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12317.369099930334, dt = 49.422467466023726 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (2.0%)
patch tree reduce : 801.00 ns (0.4%)
gen split merge : 822.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.5%)
LB compute : 187.35 us (92.8%)
LB move op cnt : 0
LB apply : 2.70 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4555419984098682e-22,3.195369624104615e-23,-1.6932947574467248e-22)
sum a = (2.3230216966851843e-25,-5.831310014131462e-26,-8.254480353039712e-26)
sum e = 7.858930965068531e-16
sum de = -1.232595164407831e-32
Info: cfl dt = 49.4216705516087 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3890e+04 | 2592 | 1 | 5.906e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3012724.8534933566 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12366.791567396358, dt = 7.577408693536199 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.08 us (1.9%)
patch tree reduce : 1.15 us (0.5%)
gen split merge : 872.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 200.80 us (93.0%)
LB move op cnt : 0
LB apply : 2.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2986687067925086e-22,3.2912115068415727e-23,-1.720524991465745e-22)
sum a = (-3.5127397701629176e-26,-5.992022638174007e-26,2.1410231538038724e-26)
sum e = 7.857232998754924e-16
sum de = 1.771855548836257e-32
Info: cfl dt = 49.42156571566096 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7514e+04 | 2592 | 1 | 6.909e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 394800.05199124914 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 284 [SPH][rank=0]
Info: time since start : 36.245597628 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00029825 s
sph::RenderFieldGetter compute custom field took : 0.000210089 s
rho_t_ampl=-0.000888286, rho_t_phi=3.14159 rad
eps_t_ampl=-2.18934e-08, eps_t_phi=6.28319 rad
vx_t_ampl=7.56356e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 12727.92s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 12374.368976089894, dt = 49.42156571566096 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.50 us (3.9%)
patch tree reduce : 1.52 us (0.6%)
gen split merge : 892.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 221.54 us (90.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3086818956191486e-22,2.9946094004094365e-23,-1.706005170884088e-22)
sum a = (4.186202940945044e-25,3.4962708642376606e-26,2.4846298183564618e-26)
sum e = 7.85885016215128e-16
sum de = -1.6948183510607676e-32
Info: cfl dt = 49.420795977942966 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3688e+04 | 2592 | 1 | 5.933e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2998824.3477563853 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12423.790541805554, dt = 49.420795977942966 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.56 us (1.6%)
patch tree reduce : 891.00 ns (0.4%)
gen split merge : 821.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 203.05 us (93.7%)
LB move op cnt : 0
LB apply : 2.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0437175143603672e-22,3.4018164243870375e-23,-1.6928768535831959e-22)
sum a = (4.7218894876226365e-25,-6.1553356157837e-26,3.9804632691679746e-26)
sum e = 7.858722630954063e-16
sum de = 1.5407439555097887e-32
Info: cfl dt = 49.420077292791746 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4334e+04 | 2592 | 1 | 5.847e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3043074.5942973723 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12473.211337783498, dt = 49.420077292791746 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (1.9%)
patch tree reduce : 991.00 ns (0.5%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 186.72 us (93.0%)
LB move op cnt : 0
LB apply : 2.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7605239944684722e-22,2.8590968762424166e-23,-1.6695091093512617e-22)
sum a = (6.063926576830132e-26,-1.3075939125989017e-25,5.653595680633236e-26)
sum e = 7.858618121144617e-16
sum de = 4.1600086798764294e-32
Info: cfl dt = 49.419395271478685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4643e+04 | 2592 | 1 | 5.806e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3064255.6810385142 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12522.63141507629, dt = 49.419395271478685 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (1.8%)
patch tree reduce : 1.03 us (0.5%)
gen split merge : 631.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.3%)
LB compute : 179.25 us (93.8%)
LB move op cnt : 0
LB apply : 2.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8157249072307183e-22,2.04197242736534e-23,-1.6374350647318533e-22)
sum a = (-7.772657592794463e-26,1.2632757586491596e-25,-1.8340072939298038e-26)
sum e = 7.858514608959645e-16
sum de = -4.622231866529366e-33
Info: cfl dt = 49.41875036192813 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4185e+04 | 2592 | 1 | 5.866e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3032794.218618795 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12572.05081034777, dt = 49.41875036192813 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (1.6%)
patch tree reduce : 661.00 ns (0.3%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 202.50 us (94.0%)
LB move op cnt : 0
LB apply : 2.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9176540345172844e-22,3.3014037175237365e-23,-1.6650001401457345e-22)
sum a = (2.707893612973555e-25,-3.2976988552090426e-26,-1.0252906301733427e-25)
sum e = 7.858412507372569e-16
sum de = 3.4666738998970245e-32
Info: cfl dt = 49.41814285673597 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3385e+04 | 2592 | 1 | 5.974e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2977812.98654921 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12621.469560709698, dt = 49.41814285673597 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (2.1%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 187.16 us (92.5%)
LB move op cnt : 0
LB apply : 2.64 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6896614273876352e-22,2.744861375408446e-23,-1.7364706723967222e-22)
sum a = (2.2001635605410136e-26,-2.5734489673381097e-26,-5.21864527076736e-27)
sum e = 7.858312016231605e-16
sum de = -5.007417855406813e-32
Info: cfl dt = 49.41757303221229 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4176e+04 | 2592 | 1 | 5.867e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3032070.3405032493 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12670.887703566434, dt = 49.41757303221229 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (1.6%)
patch tree reduce : 1.43 us (0.7%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 451.00 ns (0.2%)
LB compute : 202.54 us (94.3%)
LB move op cnt : 0
LB apply : 2.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7479433213273092e-22,2.6354524442087107e-23,-1.715005099606447e-22)
sum a = (2.955365001492527e-25,1.4729313462625633e-26,-1.0102972657632318e-25)
sum e = 7.858213334732353e-16
sum de = -6.625199008692091e-32
Info: cfl dt = 49.41704114653505 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3364e+04 | 2592 | 1 | 5.977e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2976315.171172362 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12720.305276598647, dt = 7.617098808101218 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (2.0%)
patch tree reduce : 641.00 ns (0.3%)
gen split merge : 641.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.4%)
LB compute : 181.40 us (93.3%)
LB move op cnt : 0
LB apply : 2.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (57.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6588516156133584e-22,2.746621506256879e-23,-1.7463743892438136e-22)
sum a = (-5.009603184001077e-26,3.9587077525599725e-27,1.1736553834503367e-25)
sum e = 7.85709610897153e-16
sum de = -8.011868568650901e-32
Info: cfl dt = 49.41697843079175 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5057e+04 | 2592 | 1 | 5.753e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 476676.736268028 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 292 [SPH][rank=0]
Info: time since start : 36.949080518 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000304699 s
sph::RenderFieldGetter compute custom field took : 0.00023559700000000001 s
rho_t_ampl=-0.000713491, rho_t_phi=3.14159 rad
eps_t_ampl=-3.50885e-09, eps_t_phi=6.28318 rad
vx_t_ampl=8.50112e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 13081.48s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 12727.922375406748, dt = 49.41697843079175 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.21 us (3.8%)
patch tree reduce : 1.52 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 246.52 us (91.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7071203207263921e-22,2.762242040709495e-23,-1.6800581949141217e-22)
sum a = (7.66108234670435e-26,1.3999990191900533e-26,-1.5626286442955927e-26)
sum e = 7.858139816178777e-16
sum de = -7.703719777548943e-33
Info: cfl dt = 49.4164745233589 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4083e+04 | 2592 | 1 | 5.880e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3025597.8821909395 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12777.33935383754, dt = 49.4164745233589 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (1.6%)
patch tree reduce : 511.00 ns (0.3%)
gen split merge : 340.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 501.00 ns (0.3%)
LB compute : 181.18 us (94.6%)
LB move op cnt : 0
LB apply : 1.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6270148101132722e-22,2.8560504959278214e-23,-1.7206404254584067e-22)
sum a = (-2.695357068469048e-26,1.5803910798520571e-25,-8.374991009917804e-26)
sum e = 7.858026242874466e-16
sum de = -2.9274135154685985e-32
Info: cfl dt = 49.41602526679131 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4655e+04 | 2592 | 1 | 5.804e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3064879.747262935 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12826.7558283609, dt = 49.41602526679131 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 us (1.7%)
patch tree reduce : 801.00 ns (0.4%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 205.61 us (93.8%)
LB move op cnt : 0
LB apply : 2.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6680945591456414e-22,3.993100038633219e-23,-1.7788584487580292e-22)
sum a = (5.584027653197597e-25,2.3052354741694145e-26,-1.0169363019663464e-25)
sum e = 7.857934666326126e-16
sum de = -2.1570415377137042e-32
Info: cfl dt = 49.4156145339728 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4252e+04 | 2592 | 1 | 5.857e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3037145.090272562 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12876.171853627691, dt = 49.4156145339728 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.04 us (2.0%)
patch tree reduce : 651.00 ns (0.3%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.6%)
LB compute : 190.20 us (92.9%)
LB move op cnt : 0
LB apply : 2.68 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2393246786202882e-22,3.773519954327874e-23,-1.8335445176901644e-22)
sum a = (-2.866606266400616e-25,2.830364879189657e-26,-8.673545603061251e-26)
sum e = 7.8578455472087625e-16
sum de = -9.090389337507753e-32
Info: cfl dt = 49.41524261906874 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4068e+04 | 2592 | 1 | 5.882e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3024480.4744428266 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12925.587468161664, dt = 49.41524261906874 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (1.9%)
patch tree reduce : 1.53 us (0.8%)
gen split merge : 861.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.2%)
LB compute : 189.55 us (93.5%)
LB move op cnt : 0
LB apply : 2.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5761786206857154e-22,3.9264006072514385e-23,-1.872709216880843e-22)
sum a = (-1.537607183477808e-25,1.0370097392760535e-25,-8.687798154986302e-26)
sum e = 7.857759201239451e-16
sum de = -2.465190328815662e-32
Info: cfl dt = 49.414909684062025 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4165e+04 | 2592 | 1 | 5.869e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3031152.5143486774 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12975.002710780733, dt = 49.414909684062025 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.56 us (1.8%)
patch tree reduce : 661.00 ns (0.3%)
gen split merge : 531.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.6%)
LB compute : 182.76 us (93.1%)
LB move op cnt : 0
LB apply : 2.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6457574456092908e-22,4.6250973348122376e-23,-1.9156751076645745e-22)
sum a = (2.7300206140240105e-25,1.9881603090856329e-25,-1.0581726954084975e-25)
sum e = 7.857675797435876e-16
sum de = -6.162975822039155e-33
Info: cfl dt = 49.41461587440982 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4201e+04 | 2592 | 1 | 5.864e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3033571.298309009 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13024.417620464796, dt = 49.41461587440982 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (1.9%)
patch tree reduce : 801.00 ns (0.4%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 183.79 us (92.7%)
LB move op cnt : 0
LB apply : 2.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3779688316045342e-22,5.842591376294157e-23,-1.9726437209647276e-22)
sum a = (-1.3195966745444278e-25,-3.422775372079987e-26,-1.281614683032855e-25)
sum e = 7.857595501190438e-16
sum de = 6.162975822039155e-32
Info: cfl dt = 49.41436131710959 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3942e+04 | 2592 | 1 | 5.899e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3015785.2163883545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13073.832236339205, dt = 7.643538384398198 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (1.5%)
patch tree reduce : 1.22 us (0.5%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 701.00 ns (0.3%)
LB compute : 213.86 us (94.4%)
LB move op cnt : 0
LB apply : 2.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5022350724274509e-22,5.240491231449487e-23,-1.9879604419829535e-22)
sum a = (2.0613213301535962e-25,5.781193218639615e-26,-4.7016362189738477e-26)
sum e = 7.856980366267897e-16
sum de = 8.782240546405795e-32
Info: cfl dt = 49.41434265049141 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4988e+04 | 2592 | 1 | 5.762e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 477591.75979899045 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 300 [SPH][rank=0]
Info: time since start : 37.651050179 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000278109 s
sph::RenderFieldGetter compute custom field took : 0.00021258300000000002 s
rho_t_ampl=-0.000520633, rho_t_phi=3.14159 rad
eps_t_ampl=7.54553e-09, eps_t_phi=5.30579e-07 rad
vx_t_ampl=9.22363e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 13435.03s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 13081.475774723604, dt = 49.41434265049141 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.81 us (3.9%)
patch tree reduce : 1.38 us (0.5%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 230.93 us (91.1%)
LB move op cnt : 0
LB apply : 3.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.386184781411008e-22,5.561426770764872e-23,-2.008092089630704e-22)
sum a = (1.5478871499715039e-25,5.311924892979886e-26,-1.8901017926937204e-27)
sum e = 7.857536771339448e-16
sum de = 3.0814879110195774e-32
Info: cfl dt = 49.41411618576319 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7984e+04 | 2592 | 1 | 6.824e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2606880.1681543035 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13130.890117374094, dt = 49.41411618576319 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (2.0%)
patch tree reduce : 1.14 us (0.5%)
gen split merge : 872.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 209.54 us (93.1%)
LB move op cnt : 0
LB apply : 2.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.295295836676891e-22,5.812358245567088e-23,-1.9978766442576154e-22)
sum a = (-8.039059163515242e-26,1.5175741771266212e-25,1.6191879925638896e-27)
sum e = 7.857448465126871e-16
sum de = 7.703719777548943e-33
Info: cfl dt = 49.41394663537815 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3399e+04 | 2592 | 1 | 7.761e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2292179.0610856595 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13180.304233559857, dt = 49.41394663537815 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (1.9%)
patch tree reduce : 1.27 us (0.6%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 205.53 us (92.7%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4460071659393956e-22,6.805809192900058e-23,-1.9962094973011068e-22)
sum a = (-6.289521695188739e-25,-4.339686484129171e-26,6.738686356381331e-26)
sum e = 7.857379060612583e-16
sum de = -6.625199008692091e-32
Info: cfl dt = 49.413816533087214 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6955e+04 | 2592 | 1 | 7.014e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2536216.5408767276 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13229.718180195236, dt = 49.413816533087214 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (2.3%)
patch tree reduce : 1.30 us (0.7%)
gen split merge : 772.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.4%)
LB compute : 177.68 us (92.2%)
LB move op cnt : 0
LB apply : 2.55 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8860739774486505e-22,6.109439247999296e-23,-1.9466618741172132e-22)
sum a = (8.76617874477666e-26,-1.4028094578194035e-25,2.8660327690819636e-26)
sum e = 7.857313304911073e-16
sum de = -5.238529448733282e-32
Info: cfl dt = 49.41372601498891 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4106e+04 | 2592 | 1 | 5.877e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3027024.198738238 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13279.131996728323, dt = 49.41372601498891 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.63 us (1.9%)
patch tree reduce : 801.00 ns (0.4%)
gen split merge : 671.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 611.00 ns (0.3%)
LB compute : 177.41 us (93.9%)
LB move op cnt : 0
LB apply : 1.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6324065271737709e-22,5.1768858192514194e-23,-1.9420678680100995e-22)
sum a = (4.140757967116206e-25,1.3585292562993138e-25,-5.3367927136290344e-27)
sum e = 7.857251406975986e-16
sum de = -2.465190328815662e-32
Info: cfl dt = 49.41367511088176 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4162e+04 | 2592 | 1 | 5.869e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3030865.5659220894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13328.545722743313, dt = 49.41367511088176 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (1.8%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.5%)
LB compute : 190.36 us (93.1%)
LB move op cnt : 0
LB apply : 2.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3679556427778941e-22,6.5302860323978e-23,-1.9531045953877233e-22)
sum a = (1.7306699688472188e-26,-8.076125220294389e-26,-1.2534183304781796e-25)
sum e = 7.857193488181517e-16
sum de = 2.619264724366641e-32
Info: cfl dt = 49.41366383411858 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3757e+04 | 2592 | 1 | 5.924e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3003016.271006 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13377.959397854194, dt = 49.41366383411858 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (1.9%)
patch tree reduce : 1.12 us (0.5%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.4%)
LB compute : 206.57 us (93.2%)
LB move op cnt : 0
LB apply : 2.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4418991910361586e-22,5.596082794393131e-23,-2.0446900377872113e-22)
sum a = (-1.2566318797705404e-25,-5.474809375416085e-26,5.129549847459208e-26)
sum e = 7.857139663683831e-16
sum de = 9.090389337507753e-32
Info: cfl dt = 49.41369217962085 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6885e+04 | 2592 | 1 | 7.027e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2531448.6475867447 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13427.373061688313, dt = 7.656112352142372 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (2.0%)
patch tree reduce : 721.00 ns (0.4%)
gen split merge : 691.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 701.00 ns (0.4%)
LB compute : 183.91 us (93.2%)
LB move op cnt : 0
LB apply : 2.82 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5035188145847125e-22,5.61833265357973e-23,-1.997121308190417e-22)
sum a = (1.6346400379426938e-25,-1.8985989413201718e-25,1.8198555424370608e-25)
sum e = 7.856897873498336e-16
sum de = -4.776306262080345e-32
Info: cfl dt = 49.413718213520454 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.0582e+04 | 2592 | 1 | 6.387e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 431528.695521821 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 308 [SPH][rank=0]
Info: time since start : 38.413542377 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00029269100000000003 s
sph::RenderFieldGetter compute custom field took : 0.000218222 s
rho_t_ampl=-0.000314591, rho_t_phi=3.14159 rad
eps_t_ampl=1.09897e-08, eps_t_phi=3.72781e-07 rad
vx_t_ampl=9.71284e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 13788.58s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 13435.029174040455, dt = 49.413718213520454 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.89 us (4.0%)
patch tree reduce : 1.51 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 227.02 us (90.8%)
LB move op cnt : 0
LB apply : 3.30 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3797660706247003e-22,4.6286175965091033e-23,-1.9021925904758076e-22)
sum a = (1.8673183039463474e-26,-9.94390629902811e-26,2.0373582147023698e-26)
sum e = 7.857101740553356e-16
sum de = -3.389636702121535e-32
Info: cfl dt = 49.413774084672326 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2880e+04 | 2592 | 1 | 7.883e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2256552.378538909 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13484.442892253976, dt = 49.413774084672326 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (1.9%)
patch tree reduce : 972.00 ns (0.4%)
gen split merge : 821.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 210.62 us (93.2%)
LB move op cnt : 0
LB apply : 2.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4311157569151618e-22,4.360390704908469e-23,-1.9320544768663164e-22)
sum a = (9.804204629749855e-26,7.99149375071357e-26,-1.1143198716506973e-25)
sum e = 7.85704747875452e-16
sum de = -4.0059342843254506e-32
Info: cfl dt = 49.41388776783099 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3756e+04 | 2592 | 1 | 7.679e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2316713.1886366885 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13533.856666338648, dt = 49.41388776783099 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (1.7%)
patch tree reduce : 912.00 ns (0.4%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 200.92 us (93.4%)
LB move op cnt : 0
LB apply : 2.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3741176051327496e-22,5.198493807359388e-23,-2.0196824070668943e-22)
sum a = (-9.265133216056046e-26,6.66495839261116e-26,2.0922796422620656e-26)
sum e = 7.857007264572585e-16
sum de = 7.703719777548943e-33
Info: cfl dt = 49.41404088083755 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3306e+04 | 2592 | 1 | 7.782e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2285777.203189967 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13583.270554106479, dt = 49.41404088083755 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (1.8%)
patch tree reduce : 1.15 us (0.5%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 222.09 us (93.4%)
LB move op cnt : 0
LB apply : 2.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4583310906491064e-22,5.4950282164512e-23,-1.9766427857805057e-22)
sum a = (8.925079446371288e-26,7.383126097562328e-26,3.543261823132719e-26)
sum e = 7.856971503685991e-16
sum de = 4.622231866529366e-32
Info: cfl dt = 49.41423340053141 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7333e+04 | 2592 | 1 | 6.943e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2562171.753573028 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13632.684594987317, dt = 49.41423340053141 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (1.9%)
patch tree reduce : 1.10 us (0.5%)
gen split merge : 871.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.4%)
LB compute : 202.06 us (93.3%)
LB move op cnt : 0
LB apply : 2.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3638476678746572e-22,5.877503145430309e-23,-1.9555490844678146e-22)
sum a = (4.6391482938928894e-26,1.056899260957716e-25,4.902330837077089e-26)
sum e = 7.856940299386766e-16
sum de = -3.697785493223493e-32
Info: cfl dt = 49.41446522542485 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.9499e+04 | 2592 | 1 | 6.562e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2710841.0583192506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13682.098828387849, dt = 49.41446522542485 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (1.9%)
patch tree reduce : 1.08 us (0.5%)
gen split merge : 731.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.3%)
LB compute : 199.25 us (94.0%)
LB move op cnt : 0
LB apply : 2.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3551182212052786e-22,6.478434884327158e-23,-1.9279666111270968e-22)
sum a = (-2.0323149003062928e-25,1.5753932345756166e-25,5.294902291724894e-26)
sum e = 7.856913713317685e-16
sum de = 1.8488927466117464e-32
Info: cfl dt = 49.41473623794627 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3372e+04 | 2592 | 1 | 7.767e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2290337.725298089 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13731.513293613274, dt = 49.41473623794627 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.04 us (1.9%)
patch tree reduce : 1.04 us (0.5%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 198.07 us (93.0%)
LB move op cnt : 0
LB apply : 2.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.523031695375088e-22,7.385228221427173e-23,-1.9008320556874953e-22)
sum a = (7.698848687024177e-26,-4.2516723512215995e-26,1.5251316843256242e-25)
sum e = 7.856891798953741e-16
sum de = 2.311115933264683e-32
Info: cfl dt = 49.41504630244136 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3687e+04 | 2592 | 1 | 7.694e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2311970.4608386364 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13780.92802985122, dt = 7.654543506090704 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (2.0%)
patch tree reduce : 761.00 ns (0.4%)
gen split merge : 702.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 187.58 us (92.7%)
LB move op cnt : 0
LB apply : 2.81 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4742494933991495e-22,6.858362387462952e-23,-1.8645581889101674e-22)
sum a = (1.2248674101322453e-25,6.980299009232638e-26,1.719629456116785e-25)
sum e = 7.85685733537313e-16
sum de = 2.9274135154685985e-32
Info: cfl dt = 49.4151163841803 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5025e+04 | 2592 | 1 | 7.400e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 372361.0320483832 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 316 [SPH][rank=0]
Info: time since start : 39.241844488000005 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00029807900000000003 s
sph::RenderFieldGetter compute custom field took : 0.00021725000000000002 s
rho_t_ampl=-0.000100575, rho_t_phi=3.14159 rad
eps_t_ampl=6.73586e-09, eps_t_phi=6.3147e-07 rad
vx_t_ampl=9.95639e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 14142.14s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 13788.582573357311, dt = 49.4151163841803 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.04 us (3.7%)
patch tree reduce : 1.40 us (0.5%)
gen split merge : 712.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 245.77 us (91.5%)
LB move op cnt : 0
LB apply : 3.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3972249639634572e-22,7.246413571437666e-23,-1.7788381033706415e-22)
sum a = (-2.534669909282527e-25,1.1106124776542928e-25,1.214796517883142e-25)
sum e = 7.856878599678959e-16
sum de = -6.162975822039155e-33
Info: cfl dt = 49.41545274651459 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.2389e+04 | 2592 | 1 | 6.115e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2909216.387108733 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13837.99768974149, dt = 49.41545274651459 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (1.8%)
patch tree reduce : 1.31 us (0.6%)
gen split merge : 981.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 561.00 ns (0.3%)
LB compute : 188.99 us (93.3%)
LB move op cnt : 0
LB apply : 2.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6308660365850568e-22,7.897030143514779e-23,-1.7312815726432716e-22)
sum a = (-2.708677147005087e-26,-8.894193514265848e-26,-1.2900502688210583e-25)
sum e = 7.856863754145402e-16
sum de = -6.162975822039155e-32
Info: cfl dt = 49.41584644724716 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3068e+04 | 2592 | 1 | 6.018e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2955881.3304200796 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13887.413142488005, dt = 49.41584644724716 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (1.9%)
patch tree reduce : 631.00 ns (0.3%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.4%)
LB compute : 198.74 us (93.9%)
LB move op cnt : 0
LB apply : 2.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5969752436333524e-22,6.963147841049425e-23,-1.8569195676494166e-22)
sum a = (-9.904163983822513e-26,3.67047129206987e-26,4.200965939892151e-27)
sum e = 7.856856829023376e-16
sum de = 1.0785207688568521e-32
Info: cfl dt = 49.41599458554228 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3781e+04 | 2592 | 1 | 5.920e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3004800.7041736394 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13936.828988935253, dt = 49.41599458554228 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (2.0%)
patch tree reduce : 771.00 ns (0.4%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 192.72 us (93.4%)
LB move op cnt : 0
LB apply : 2.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6431899612947677e-22,7.455142022819909e-23,-1.8219311841122705e-22)
sum a = (7.268414266802238e-26,1.5259043681537276e-26,-6.887553451895979e-26)
sum e = 7.856854694694333e-16
sum de = 6.471124613141112e-32
Info: cfl dt = 49.41554322826804 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.9797e+04 | 2592 | 1 | 6.513e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2731401.8713558884 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13986.244983520795, dt = 49.41554322826804 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.04 us (1.8%)
patch tree reduce : 1.00 us (0.4%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 212.57 us (93.3%)
LB move op cnt : 0
LB apply : 2.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5620574569558386e-22,7.477587452100778e-23,-1.8740221434010957e-22)
sum a = (-9.415336689900673e-26,-2.8692918292936913e-26,1.4867526675740299e-25)
sum e = 7.856857360254072e-16
sum de = 1.232595164407831e-32
Info: cfl dt = 49.41512110857877 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3136e+04 | 2592 | 1 | 7.822e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2274204.14655986 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14035.660526749063, dt = 49.41512110857877 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.63 us (2.1%)
patch tree reduce : 1.09 us (0.5%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 203.71 us (92.8%)
LB move op cnt : 0
LB apply : 2.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6231635836414876e-22,7.227468345382455e-23,-1.7468021251504375e-22)
sum a = (3.0284373852731734e-26,-5.635743592676922e-26,1.7935809841389196e-25)
sum e = 7.856864820733021e-16
sum de = 4.776306262080345e-32
Info: cfl dt = 49.414738768617084 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3145e+04 | 2592 | 1 | 7.820e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2274816.9995816527 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14085.075647857642, dt = 49.414738768617084 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.56 us (1.9%)
patch tree reduce : 1.31 us (0.6%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 219.91 us (93.2%)
LB move op cnt : 0
LB apply : 2.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.609299168343063e-22,6.880476851968902e-23,-1.6505918101475647e-22)
sum a = (-6.478729493123015e-26,-5.644061908266363e-26,1.232543746778548e-25)
sum e = 7.856877061802381e-16
sum de = 7.703719777548943e-33
Info: cfl dt = 49.41439639586737 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3152e+04 | 2592 | 1 | 7.819e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2275240.5299588735 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14134.49038662626, dt = 7.645586047905454 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (2.0%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 1.16 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 208.98 us (93.3%)
LB move op cnt : 0
LB apply : 2.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6503789173754322e-22,6.837040232569686e-23,-1.6550300451355147e-22)
sum a = (2.8670763868195353e-25,-5.766417480785622e-26,1.1429528647869076e-25)
sum e = 7.856863156279719e-16
sum de = -1.5407439555097887e-33
Info: cfl dt = 49.41436618565003 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3332e+04 | 2592 | 1 | 7.776e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 353952.76267503574 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 324 [SPH][rank=0]
Info: time since start : 40.18724477 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000279492 s
sph::RenderFieldGetter compute custom field took : 0.00022025400000000002 s
rho_t_ampl=0.000116001, rho_t_phi=3.14159 rad
eps_t_ampl=-5.1088e-09, eps_t_phi=6.28318 rad
vx_t_ampl=9.94815e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 14495.69s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 14142.135972674165, dt = 49.41436618565003 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.39 us (3.0%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 293.26 us (93.0%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4398452035845402e-22,6.551919093594778e-23,-1.5988942411408342e-22)
sum a = (-4.397349691762207e-26,-1.4181018384254386e-25,7.829396476874882e-26)
sum e = 7.856890001676427e-16
sum de = 4.0059342843254506e-32
Info: cfl dt = 49.41405102737283 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1795e+04 | 2592 | 1 | 8.152e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2182157.2320099087 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14191.550338859815, dt = 49.41405102737283 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.46 us (1.8%)
patch tree reduce : 1.11 us (0.4%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 237.00 us (93.8%)
LB move op cnt : 0
LB apply : 2.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5677059224477894e-22,5.643049704724817e-23,-1.5691009339092823e-22)
sum a = (-6.368564608289657e-27,2.0574687300487127e-25,1.1618706992098245e-25)
sum e = 7.8569159946300775e-16
sum de = -7.087422195345028e-32
Info: cfl dt = 49.41379531239087 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2614e+04 | 2592 | 1 | 7.947e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2238337.558447952 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14240.96438988719, dt = 49.41379531239087 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.32 us (1.7%)
patch tree reduce : 1.26 us (0.5%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 234.99 us (93.5%)
LB move op cnt : 0
LB apply : 2.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5553819977380785e-22,7.518416470243058e-23,-1.5023262338410544e-22)
sum a = (-1.9409391615490659e-25,-6.611766742535269e-26,1.0004665214336237e-25)
sum e = 7.856943116895135e-16
sum de = -1.5407439555097887e-32
Info: cfl dt = 49.413580025385656 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2173e+04 | 2592 | 1 | 8.056e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2208066.4513526643 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14290.37818519958, dt = 49.413580025385656 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (1.5%)
patch tree reduce : 892.00 ns (0.3%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 240.43 us (94.1%)
LB move op cnt : 0
LB apply : 2.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7145660252385092e-22,6.520086299788933e-23,-1.4568773978231454e-22)
sum a = (3.8719117702170484e-26,-1.554493168240865e-25,-7.853404457193362e-26)
sum e = 7.856974862026557e-16
sum de = -1.5407439555097887e-32
Info: cfl dt = 49.413405267321885 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3047e+04 | 2592 | 1 | 7.843e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2268036.637332049 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14339.791765224965, dt = 49.413405267321885 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (1.5%)
patch tree reduce : 1.13 us (0.4%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 249.17 us (94.0%)
LB move op cnt : 0
LB apply : 2.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (57.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.615974627560823e-22,5.531344078571855e-23,-1.5398053012810247e-22)
sum a = (-1.6310671227589093e-25,-4.4282527636745866e-27,2.1619670010460886e-26)
sum e = 7.857011165437085e-16
sum de = -1.1555579666323415e-31
Info: cfl dt = 49.413271117367046 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2933e+04 | 2592 | 1 | 7.870e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2260204.479829841 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14389.205170492287, dt = 49.413271117367046 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.04 us (1.5%)
patch tree reduce : 1.06 us (0.4%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 247.76 us (94.1%)
LB move op cnt : 0
LB apply : 2.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7607807428999245e-22,5.882668201766166e-23,-1.504377634685597e-22)
sum a = (-1.6106325552165626e-26,-5.295997727381118e-26,4.7240053472112356e-26)
sum e = 7.857051956685656e-16
sum de = -7.703719777548943e-33
Info: cfl dt = 49.413177636229456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2014e+04 | 2592 | 1 | 8.096e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2197119.846333344 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14438.618441609655, dt = 49.413177636229456 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.42 us (1.7%)
patch tree reduce : 1.11 us (0.4%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 237.73 us (93.7%)
LB move op cnt : 0
LB apply : 2.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.758726755448306e-22,5.500845173101291e-23,-1.4747048883775666e-22)
sum a = (1.2448475279363036e-25,1.7663050353876843e-25,2.241748132221108e-26)
sum e = 7.857097155880249e-16
sum de = -4.622231866529366e-33
Info: cfl dt = 49.413124863844416 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2822e+04 | 2592 | 1 | 7.897e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2252586.912660609 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14488.031619245885, dt = 7.657752745133621 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (1.6%)
patch tree reduce : 1.05 us (0.4%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 234.72 us (93.5%)
LB move op cnt : 0
LB apply : 2.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6832427166013277e-22,6.203513477961117e-23,-1.4791210239211578e-22)
sum a = (1.9017938013337423e-25,-7.015356647920023e-26,-3.947623279430983e-26)
sum e = 7.856915044595592e-16
sum de = -1.232595164407831e-32
Info: cfl dt = 49.413139018922664 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3749e+04 | 2592 | 1 | 7.680e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 358949.05085778376 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 332 [SPH][rank=0]
Info: time since start : 41.056361158 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000281886 s
sph::RenderFieldGetter compute custom field took : 0.00021400500000000002 s
rho_t_ampl=0.00032966, rho_t_phi=3.14159 rad
eps_t_ampl=-2.42433e-08, eps_t_phi=6.28319 rad
vx_t_ampl=9.68834e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 14849.24s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 14495.689371991019, dt = 49.413139018922664 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.24 us (3.2%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 299.41 us (92.8%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5923537718672108e-22,5.762487871528158e-23,-1.5009973035071985e-22)
sum a = (-1.1068515143029406e-25,-1.3813401356466652e-25,3.9477798835965145e-26)
sum e = 7.857135032188354e-16
sum de = -3.697785493223493e-32
Info: cfl dt = 49.413114708272964 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1708e+04 | 2592 | 1 | 8.174e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2176130.52905365 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14545.102511009942, dt = 49.413114708272964 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.8%)
patch tree reduce : 1.10 us (0.4%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 246.78 us (93.8%)
LB move op cnt : 0
LB apply : 2.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7176470064159368e-22,4.911938487693164e-23,-1.4619832607785087e-22)
sum a = (-3.857494744036865e-26,2.4985848615962967e-25,-8.806033987843438e-26)
sum e = 7.857199172287697e-16
sum de = 6.933347799794049e-32
Info: cfl dt = 49.413149665900214 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2208e+04 | 2592 | 1 | 8.048e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2210397.4324268117 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14594.515625718215, dt = 49.413149665900214 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.18 us (1.9%)
patch tree reduce : 1.21 us (0.5%)
gen split merge : 902.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 651.00 ns (0.3%)
LB compute : 207.31 us (92.6%)
LB move op cnt : 0
LB apply : 3.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.721241484456269e-22,7.104971261720014e-23,-1.537006931708875e-22)
sum a = (2.7633678224059993e-25,4.2972666862251987e-26,-1.432555718415137e-26)
sum e = 7.857257674551143e-16
sum de = -4.776306262080345e-32
Info: cfl dt = 49.41322535828763 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1068e+04 | 2592 | 1 | 8.343e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2132161.2235880797 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14643.928775384116, dt = 49.41322535828763 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.89 us (2.2%)
patch tree reduce : 1.59 us (0.7%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 206.19 us (92.3%)
LB move op cnt : 0
LB apply : 2.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5312476451815616e-22,6.806090011496959e-23,-1.5258683122997335e-22)
sum a = (1.0812142807912234e-25,-3.029440063979149e-26,5.776009362566884e-26)
sum e = 7.857320147419477e-16
sum de = -7.395570986446986e-32
Info: cfl dt = 49.41334170491478 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3687e+04 | 2592 | 1 | 5.933e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2998208.454785561 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14693.342000742405, dt = 49.41334170491478 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (1.7%)
patch tree reduce : 741.00 ns (0.3%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 213.87 us (94.1%)
LB move op cnt : 0
LB apply : 2.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4932488773266202e-22,6.475355908996851e-23,-1.479517197324683e-22)
sum a = (1.7559937887463234e-25,5.334362124535951e-26,-1.0925750540536587e-25)
sum e = 7.85738648164963e-16
sum de = 6.008901426488176e-32
Info: cfl dt = 49.41349863644789 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4264e+04 | 2592 | 1 | 5.856e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3037817.3795696427 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14742.755342447319, dt = 49.41349863644789 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (1.5%)
patch tree reduce : 821.00 ns (0.3%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 230.96 us (94.3%)
LB move op cnt : 0
LB apply : 2.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.381306561213414e-22,6.945566591036304e-23,-1.5747696417266956e-22)
sum a = (-9.71582199099308e-26,1.036774679066594e-26,-4.140276430647965e-26)
sum e = 7.857456548421463e-16
sum de = -4.1600086798764294e-32
Info: cfl dt = 49.413696065048 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.9334e+04 | 2592 | 1 | 6.590e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2699478.082485472 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14792.168841083767, dt = 49.413696065048 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (1.7%)
patch tree reduce : 1.43 us (0.6%)
gen split merge : 882.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 216.10 us (93.6%)
LB move op cnt : 0
LB apply : 2.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5027485692903555e-22,6.890656526106562e-23,-1.5784635770599024e-22)
sum a = (1.685538408630993e-25,9.503212480080801e-26,6.391805248595475e-26)
sum e = 7.857530210261231e-16
sum de = -3.0814879110195774e-32
Info: cfl dt = 49.41393388224924 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.9526e+04 | 2592 | 1 | 6.558e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2712650.516690693 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14841.582537148815, dt = 7.660234159058746 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (1.7%)
patch tree reduce : 1.23 us (0.5%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.3%)
LB compute : 217.76 us (94.3%)
LB move op cnt : 0
LB apply : 2.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4272645304433772e-22,7.172889245227632e-23,-1.5475458504181692e-22)
sum a = (-1.065606282883112e-28,-1.6270390232736817e-26,-6.608770226396847e-26)
sum e = 7.857008073300133e-16
sum de = 4.3140830754274083e-32
Info: cfl dt = 49.41399206157587 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3712e+04 | 2592 | 1 | 7.689e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 358666.2872269293 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 340 [SPH][rank=0]
Info: time since start : 41.863020482 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000303436 s
sph::RenderFieldGetter compute custom field took : 0.000215717 s
rho_t_ampl=0.000535001, rho_t_phi=3.14159 rad
eps_t_ampl=-5.01849e-08, eps_t_phi=6.28319 rad
vx_t_ampl=9.18357e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 15202.80s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 14849.242771307874, dt = 49.41399206157587 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.54 us (3.8%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 229.26 us (91.4%)
LB move op cnt : 0
LB apply : 3.00 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4159675994594755e-22,7.049700144308543e-23,-1.5851817949855122e-22)
sum a = (-1.6286851793030528e-25,-1.8883045284177694e-25,9.330671572693174e-27)
sum e = 7.857589317644355e-16
sum de = 1.232595164407831e-32
Info: cfl dt = 49.41425884131589 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3011e+04 | 2592 | 1 | 7.852e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2265579.2786121424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14898.65676336945, dt = 49.41425884131589 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (1.7%)
patch tree reduce : 1.12 us (0.5%)
gen split merge : 861.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 210.37 us (93.1%)
LB move op cnt : 0
LB apply : 2.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.531504393613014e-22,5.690307462889007e-23,-1.5619374981526118e-22)
sum a = (-2.112345066286941e-25,1.426562291985287e-25,-1.716448813915464e-26)
sum e = 7.857685098804594e-16
sum de = 1.3866695599588098e-32
Info: cfl dt = 49.41458316551263 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2824e+04 | 2592 | 1 | 7.897e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2252714.476925137 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14948.071022210766, dt = 49.41458316551263 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (1.7%)
patch tree reduce : 1.17 us (0.5%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 216.27 us (92.9%)
LB move op cnt : 0
LB apply : 2.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6799049869924476e-22,7.214129462029659e-23,-1.5769654518193445e-22)
sum a = (-2.4246930726167376e-25,1.0506150731704469e-25,2.692265669912381e-26)
sum e = 7.857769177759977e-16
sum de = -6.471124613141112e-32
Info: cfl dt = 49.414947469818706 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3210e+04 | 2592 | 1 | 5.999e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2965560.7264227313 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14997.48560537628, dt = 49.414947469818706 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.31 us (1.9%)
patch tree reduce : 772.00 ns (0.3%)
gen split merge : 620.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 206.82 us (93.6%)
LB move op cnt : 0
LB apply : 2.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7664292083918752e-22,7.640652793779805e-23,-1.5527688957281672e-22)
sum a = (2.880709878968187e-25,-1.0214766668097073e-25,8.146878465822083e-26)
sum e = 7.857856156585542e-16
sum de = -1.3866695599588098e-32
Info: cfl dt = 49.41535149480406 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3784e+04 | 2592 | 1 | 5.920e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3004981.904469861 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15046.900552846098, dt = 49.41535149480406 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (2.0%)
patch tree reduce : 962.00 ns (0.5%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 571.00 ns (0.3%)
LB compute : 184.21 us (93.5%)
LB move op cnt : 0
LB apply : 2.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5435715698912724e-22,6.623863815197244e-23,-1.4990338391919337e-22)
sum a = (-7.655440901677321e-26,-3.917009050819395e-26,-6.793088900900891e-26)
sum e = 7.857945914140874e-16
sum de = 1.5407439555097887e-32
Info: cfl dt = 49.41579502497124 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4640e+04 | 2592 | 1 | 5.806e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3063744.465222338 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15096.315904340903, dt = 49.41579502497124 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (1.9%)
patch tree reduce : 651.00 ns (0.3%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.4%)
LB compute : 184.89 us (93.5%)
LB move op cnt : 0
LB apply : 2.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6452439487463861e-22,6.585868056112984e-23,-1.569515615000442e-22)
sum a = (-2.6828205239645406e-26,2.150507091292692e-26,-2.6447529295029456e-26)
sum e = 7.858038276035413e-16
sum de = -3.851859888774472e-33
Info: cfl dt = 49.416277826812895 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4144e+04 | 2592 | 1 | 5.872e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3029756.9289906197 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15145.731699365875, dt = 49.416277826812895 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (1.9%)
patch tree reduce : 971.00 ns (0.5%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 190.26 us (92.8%)
LB move op cnt : 0
LB apply : 2.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6365145020770078e-22,6.841799104863597e-23,-1.5723353335527723e-22)
sum a = (4.337644398559491e-26,-1.3048684384410957e-25,1.8737431409672577e-26)
sum e = 7.858133060898993e-16
sum de = -5.777789833161708e-32
Info: cfl dt = 49.41679964694388 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4320e+04 | 2592 | 1 | 5.848e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3041864.7180384905 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15195.147977192688, dt = 7.64819343203817 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (1.5%)
patch tree reduce : 1.24 us (0.5%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.3%)
LB compute : 225.82 us (94.5%)
LB move op cnt : 0
LB apply : 2.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.64010898011734e-22,6.366669082760576e-23,-1.5597378956950676e-22)
sum a = (1.2926431038597374e-25,-9.222805238546395e-26,-8.841490733986338e-27)
sum e = 7.857133091897717e-16
sum de = -1.6948183510607676e-32
Info: cfl dt = 49.41690013554561 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4967e+04 | 2592 | 1 | 5.764e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 477657.047682256 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 348 [SPH][rank=0]
Info: time since start : 42.605551858000005 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000312 s
sph::RenderFieldGetter compute custom field took : 0.00023476600000000002 s
rho_t_ampl=0.000726831, rho_t_phi=3.14159 rad
eps_t_ampl=-8.22783e-08, eps_t_phi=6.28319 rad
vx_t_ampl=8.44662e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 15556.35s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 15202.796170624726, dt = 49.41690013554561 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.97 us (4.0%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.4%)
LB compute : 225.78 us (91.0%)
LB move op cnt : 0
LB apply : 3.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5633411991131e-22,5.925733739448048e-23,-1.5651617309976726e-22)
sum a = (-5.485991875172351e-26,1.9643051257868807e-26,8.820761865955084e-26)
sum e = 7.858207544918076e-16
sum de = -1.4637067577342992e-32
Info: cfl dt = 49.41745065775109 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3483e+04 | 2592 | 1 | 5.961e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2984450.190255942 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15252.213070760272, dt = 49.41745065775109 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.70 us (1.8%)
patch tree reduce : 1.13 us (0.6%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.4%)
LB compute : 190.57 us (92.9%)
LB move op cnt : 0
LB apply : 2.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6606488546335245e-22,6.299172327148309e-23,-1.4975924438343958e-22)
sum a = (-1.2315901321227872e-25,3.012813226975662e-26,5.675898305692396e-26)
sum e = 7.858325299568919e-16
sum de = -1.5407439555097887e-32
Info: cfl dt = 49.418055503629326 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4221e+04 | 2592 | 1 | 5.862e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3035095.1642130855 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15301.630521418023, dt = 49.418055503629326 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (1.8%)
patch tree reduce : 1.34 us (0.7%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 511.00 ns (0.3%)
LB compute : 189.04 us (94.0%)
LB move op cnt : 0
LB apply : 2.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.74024086838374e-22,6.473921728305536e-23,-1.4773138150750512e-22)
sum a = (2.4446261783789038e-26,1.1203777602310263e-26,-4.2923174996273314e-26)
sum e = 7.858426595502744e-16
sum de = 2.465190328815662e-32
Info: cfl dt = 49.41869853789556 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4164e+04 | 2592 | 1 | 5.869e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3031219.59069472 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15351.048576921652, dt = 49.41869853789556 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.9%)
patch tree reduce : 891.00 ns (0.5%)
gen split merge : 451.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.4%)
LB compute : 182.27 us (93.5%)
LB move op cnt : 0
LB apply : 2.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (57.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6806752322868046e-22,6.48261206095606e-23,-1.5231563816259502e-22)
sum a = (-6.907636021983467e-26,-7.446553177414819e-26,9.420042813984357e-26)
sum e = 7.858529408706763e-16
sum de = -3.0814879110195774e-32
Info: cfl dt = 49.41937933000553 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3988e+04 | 2592 | 1 | 5.893e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3019198.115561972 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15400.467275459547, dt = 49.41937933000553 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (1.9%)
patch tree reduce : 1.05 us (0.5%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 185.80 us (92.4%)
LB move op cnt : 0
LB apply : 2.53 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7073770691578445e-22,5.902751746062387e-23,-1.442720764684164e-22)
sum a = (-3.7865379021413546e-25,-7.052594714904528e-26,4.860742416589054e-26)
sum e = 7.858633640055611e-16
sum de = -2.0800043399382147e-32
Info: cfl dt = 49.420097524895006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4183e+04 | 2592 | 1 | 5.866e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3032659.1895979377 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15449.886654789552, dt = 49.420097524895006 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (1.9%)
patch tree reduce : 1.22 us (0.6%)
gen split merge : 841.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.3%)
LB compute : 177.77 us (93.3%)
LB move op cnt : 0
LB apply : 2.50 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.002637765327998e-22,5.563833787309736e-23,-1.4299648180478063e-22)
sum a = (-1.3639760420903833e-25,6.880195191072917e-26,-1.8051440263719703e-25)
sum e = 7.858739086909823e-16
sum de = 1.5407439555097887e-33
Info: cfl dt = 49.420852750502696 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4195e+04 | 2592 | 1 | 5.865e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3033534.3935886486 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15499.306752314447, dt = 49.420852750502696 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (1.8%)
patch tree reduce : 741.00 ns (0.4%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.5%)
LB compute : 179.55 us (93.4%)
LB move op cnt : 0
LB apply : 2.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9957055576787858e-22,6.248364219580443e-23,-1.5757926902970763e-22)
sum a = (7.426648964470066e-26,-3.514071778016521e-26,-6.314685520074766e-26)
sum e = 7.858845542040055e-16
sum de = -6.933347799794049e-33
Info: cfl dt = 49.42164461620741 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3451e+04 | 2592 | 1 | 5.965e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2982488.6570561947 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15548.72760506495, dt = 7.621964876629136 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (1.9%)
patch tree reduce : 982.00 ns (0.5%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 185.14 us (92.8%)
LB move op cnt : 0
LB apply : 2.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.931518449815709e-22,5.964581983558616e-23,-1.5516037000235572e-22)
sum a = (1.136688490223668e-25,-1.6458560827496853e-25,-1.5434176628306845e-25)
sum e = 7.857277672469882e-16
sum de = 9.321500930834222e-32
Info: cfl dt = 49.42178436379889 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3989e+04 | 2592 | 1 | 5.892e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 465668.47703998507 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 356 [SPH][rank=0]
Info: time since start : 43.311438829000004 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000323286 s
sph::RenderFieldGetter compute custom field took : 0.00024382 s
rho_t_ampl=0.0009003, rho_t_phi=3.14159 rad
eps_t_ampl=-1.19713e-07, eps_t_phi=6.28319 rad
vx_t_ampl=7.49613e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 15909.90s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 15556.34956994158, dt = 49.42178436379889 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.98 us (4.3%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 210.65 us (90.4%)
LB move op cnt : 0
LB apply : 2.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.869898826267155e-22,5.101686610695583e-23,-1.6313575769852666e-22)
sum a = (-4.550765655136114e-27,1.2463568103645417e-25,-1.5481773643234946e-25)
sum e = 7.858927997586715e-16
sum de = 5.3926038442842604e-33
Info: cfl dt = 49.42260392335897 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2875e+04 | 2592 | 1 | 7.884e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2256618.0166147766 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15605.771354305378, dt = 49.42260392335897 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.70 us (1.7%)
patch tree reduce : 691.00 ns (0.3%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 202.03 us (93.6%)
LB move op cnt : 0
LB apply : 2.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9109785752995243e-22,6.432541102205058e-23,-1.7079901501354825e-22)
sum a = (-1.0298771310452665e-25,9.812960622552222e-26,-1.5132027656628522e-25)
sum e = 7.859055859753523e-16
sum de = -2.5422275265911513e-32
Info: cfl dt = 49.423473183983965 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3302e+04 | 2592 | 1 | 7.783e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2285943.5883804434 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15655.193958228736, dt = 49.423473183983965 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (1.9%)
patch tree reduce : 891.00 ns (0.4%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 199.64 us (93.0%)
LB move op cnt : 0
LB apply : 2.70 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9885166015981213e-22,6.851843384320608e-23,-1.7819136185777916e-22)
sum a = (1.426408033722829e-25,2.7401331001184665e-25,-7.67791401159928e-26)
sum e = 7.859164289679108e-16
sum de = -3.4666738998970245e-32
Info: cfl dt = 49.42437785871935 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2138e+04 | 2592 | 1 | 8.065e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2206040.7169156047 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15704.61743141272, dt = 49.42437785871935 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.08 us (1.9%)
patch tree reduce : 1.14 us (0.5%)
gen split merge : 912.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.6%)
LB compute : 200.37 us (92.7%)
LB move op cnt : 0
LB apply : 2.73 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8403727566501397e-22,8.64090356285202e-23,-1.8014408216131337e-22)
sum a = (-2.665770823438411e-25,1.085610396416886e-25,-8.146279751696883e-26)
sum e = 7.859272679988331e-16
sum de = -1.4637067577342992e-32
Info: cfl dt = 49.425317358594384 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6415e+04 | 2592 | 1 | 7.118e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2499716.5995647307 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15754.041809271439, dt = 49.425317358594384 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.9%)
patch tree reduce : 1.03 us (0.5%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 201.95 us (88.9%)
LB move op cnt : 0
LB apply : 2.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0881349930016166e-22,8.76860080517493e-23,-1.8428615020809572e-22)
sum a = (-3.156701906234913e-25,5.155066276954937e-26,1.427733884166649e-25)
sum e = 7.859380985286769e-16
sum de = 2.1570415377137042e-32
Info: cfl dt = 49.42629119952653 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4075e+04 | 2592 | 1 | 5.881e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3025560.636815121 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15803.467126630034, dt = 49.42629119952653 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (1.8%)
patch tree reduce : 871.00 ns (0.4%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 194.86 us (93.2%)
LB move op cnt : 0
LB apply : 2.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2542512281512595e-22,8.882477760836072e-23,-1.7168791881013906e-22)
sum a = (1.0243610514632833e-25,1.1234972050940618e-25,-8.137037972366227e-26)
sum e = 7.859488994825758e-16
sum de = -2.69630192214213e-32
Info: cfl dt = 49.42729888191652 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4330e+04 | 2592 | 1 | 5.847e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3043158.5384883997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15852.89341782956, dt = 49.42729888191652 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (1.7%)
patch tree reduce : 1.28 us (0.6%)
gen split merge : 711.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.2%)
LB compute : 200.85 us (94.1%)
LB move op cnt : 0
LB apply : 2.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0955806975137334e-22,9.588024456314134e-23,-1.812491344661981e-22)
sum a = (-3.3826104382061325e-25,2.594966770679049e-28,3.1356877871479335e-26)
sum e = 7.859596496138873e-16
sum de = 1.0785207688568521e-32
Info: cfl dt = 49.42833988943053 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3682e+04 | 2592 | 1 | 7.695e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2312250.688645183 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15902.320716711476, dt = 7.582252546959353 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.18 us (1.9%)
patch tree reduce : 1.13 us (0.5%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 203.95 us (93.2%)
LB move op cnt : 0
LB apply : 2.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2357653410866935e-22,9.311282743686037e-23,-1.782254767724443e-22)
sum a = (5.0158714562533307e-26,2.919127042242956e-25,5.222411351209116e-26)
sum e = 7.857427397388825e-16
sum de = -3.928897086549961e-32
Info: cfl dt = 49.428514643459 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4849e+04 | 2592 | 1 | 7.438e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 366994.5094239563 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 364 [SPH][rank=0]
Info: time since start : 44.121580058 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000313532 s
sph::RenderFieldGetter compute custom field took : 0.00023814000000000002 s
rho_t_ampl=0.00105102, rho_t_phi=3.14159 rad
eps_t_ampl=-1.61542e-07, eps_t_phi=6.28319 rad
vx_t_ampl=6.35617e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 16263.46s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 15909.902969258435, dt = 49.428514643459 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.24 us (3.8%)
patch tree reduce : 1.50 us (0.6%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 248.63 us (91.5%)
LB move op cnt : 0
LB apply : 3.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1995638122519178e-22,1.0864746148653147e-22,-1.755650060876939e-22)
sum a = (-1.2372315771498156e-25,-1.156170574208934e-25,-9.451688299235936e-26)
sum e = 7.859678722681638e-16
sum de = -4.3140830754274083e-32
Info: cfl dt = 49.42958162515555 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3522e+04 | 2592 | 1 | 5.956e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2987832.7424353184 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15959.331483901895, dt = 49.42958162515555 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 us (1.9%)
patch tree reduce : 1.22 us (0.6%)
gen split merge : 921.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.5%)
LB compute : 188.80 us (92.6%)
LB move op cnt : 0
LB apply : 2.66 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2891690148287732e-22,9.286159508499005e-23,-1.8386353081776941e-22)
sum a = (8.788117697659547e-26,-1.774078243902845e-25,-1.0376276619911303e-25)
sum e = 7.859803809887844e-16
sum de = -1.1555579666323415e-32
Info: cfl dt = 49.43069241827449 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3093e+04 | 2592 | 1 | 6.015e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2958425.92098611 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16008.761065527051, dt = 49.43069241827449 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.87 us (1.9%)
patch tree reduce : 1.42 us (0.7%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 194.12 us (93.8%)
LB move op cnt : 0
LB apply : 2.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2057257746067734e-22,8.256362611338568e-23,-1.8922110626755876e-22)
sum a = (-1.2285813614417056e-26,-7.785487962560795e-27,-9.467685962363788e-26)
sum e = 7.859908572419364e-16
sum de = 1.6948183510607676e-32
Info: cfl dt = 49.43183495077302 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4042e+04 | 2592 | 1 | 5.885e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3023628.271935014 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16058.191757945326, dt = 49.43183495077302 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (1.8%)
patch tree reduce : 541.00 ns (0.3%)
gen split merge : 531.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 184.66 us (93.3%)
LB move op cnt : 0
LB apply : 2.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2226711710826254e-22,8.63717770182528e-23,-1.9367659583950528e-22)
sum a = (-1.4492245447210322e-26,2.3544561026126964e-26,-1.2436538940793079e-25)
sum e = 7.860011719193187e-16
sum de = -2.850376317693109e-32
Info: cfl dt = 49.433008492267696 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4305e+04 | 2592 | 1 | 5.850e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3041757.2260039574 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16107.6235928961, dt = 49.433008492267696 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (1.9%)
patch tree reduce : 901.00 ns (0.5%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.5%)
LB compute : 181.16 us (93.1%)
LB move op cnt : 0
LB apply : 2.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.227035894417315e-22,8.830997694482763e-23,-2.0055813044235727e-22)
sum a = (1.0894257174416757e-25,-3.674191854447721e-26,4.333866835062047e-26)
sum e = 7.86011328493963e-16
sum de = 3.8518598887744717e-32
Info: cfl dt = 49.434212443673786 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4636e+04 | 2592 | 1 | 5.807e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3064601.3737337054 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16157.056601388367, dt = 49.434212443673786 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (1.8%)
patch tree reduce : 1.36 us (0.7%)
gen split merge : 901.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.4%)
LB compute : 181.25 us (93.2%)
LB move op cnt : 0
LB apply : 2.77 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (53.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1510383587074317e-22,8.500278635836062e-23,-1.9427065944840822e-22)
sum a = (2.3008320129122063e-25,5.540824566116479e-26,2.678833451912832e-26)
sum e = 7.860213071787881e-16
sum de = -2.9274135154685985e-32
Info: cfl dt = 49.43544619227178 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4533e+04 | 2592 | 1 | 5.820e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3057558.858545844 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16206.49081383204, dt = 49.43544619227178 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (1.8%)
patch tree reduce : 651.00 ns (0.3%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.4%)
LB compute : 194.92 us (93.8%)
LB move op cnt : 0
LB apply : 1.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0159886837635182e-22,9.001996161524242e-23,-1.9335544253802354e-22)
sum a = (1.636645885063415e-25,1.1875119354702018e-25,-1.3344434752218753e-25)
sum e = 7.860310883225522e-16
sum de = -3.158525108795067e-32
Info: cfl dt = 49.436709110862466 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4353e+04 | 2592 | 1 | 5.844e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3045300.6289994754 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16255.926260024313, dt = 7.530108550976365 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (1.8%)
patch tree reduce : 891.00 ns (0.4%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 195.44 us (93.2%)
LB move op cnt : 0
LB apply : 2.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0277991116103244e-22,9.24801080357179e-23,-1.9832088002602232e-22)
sum a = (1.6006660023354792e-25,3.778142334993492e-26,1.123784779531222e-25)
sum e = 7.857567351401617e-16
sum de = -1.6948183510607676e-32
Info: cfl dt = 49.43691360252231 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5962e+04 | 2592 | 1 | 5.639e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 480692.83570381475 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 372 [SPH][rank=0]
Info: time since start : 44.824140417 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000271109 s
sph::RenderFieldGetter compute custom field took : 0.000235297 s
rho_t_ampl=0.00117519, rho_t_phi=3.14159 rad
eps_t_ampl=-2.06708e-07, eps_t_phi=6.28319 rad
vx_t_ampl=5.05557e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 16617.01s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 16263.45636857529, dt = 49.43691360252231 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.67 us (3.8%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.4%)
LB compute : 233.31 us (91.0%)
LB move op cnt : 0
LB apply : 3.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9250997390294013e-22,9.404283845438274e-23,-1.918396986405998e-22)
sum a = (3.2880848926421486e-25,2.5417682378994343e-25,1.535765927372625e-26)
sum e = 7.860384719866612e-16
sum de = -2.1570415377137042e-32
Info: cfl dt = 49.438200120543875 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7299e+04 | 2592 | 1 | 6.949e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2561040.790673437 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16312.89328217781, dt = 49.438200120543875 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.93 us (2.0%)
patch tree reduce : 640.00 ns (0.3%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 184.93 us (92.7%)
LB move op cnt : 0
LB apply : 2.55 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.739598997305109e-22,1.1195786142839163e-22,-1.9347864852341018e-22)
sum a = (3.497695916757509e-26,-3.6511265713945066e-26,3.5979881972142056e-26)
sum e = 7.860494417362703e-16
sum de = 1.6948183510607676e-32
Info: cfl dt = 49.43952346232042 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3502e+04 | 2592 | 1 | 7.737e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2300353.5073229168 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16362.331482298354, dt = 49.43952346232042 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (1.9%)
patch tree reduce : 971.00 ns (0.4%)
gen split merge : 761.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 202.32 us (92.8%)
LB move op cnt : 0
LB apply : 2.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.782989482220549e-22,1.0296670185593709e-22,-1.9119005751810853e-22)
sum a = (3.144165361730406e-26,1.5221098597516504e-25,-3.46222629192139e-26)
sum e = 7.860585070231744e-16
sum de = 0
Info: cfl dt = 49.44087407427046 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3862e+04 | 2592 | 1 | 5.909e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3011818.137125442 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16411.771005760675, dt = 49.44087407427046 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.05 us (1.9%)
patch tree reduce : 901.00 ns (0.4%)
gen split merge : 861.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 196.96 us (93.0%)
LB move op cnt : 0
LB apply : 2.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7810638689846569e-22,1.15157538609188e-22,-1.9464708065869275e-22)
sum a = (-1.795483903935521e-25,-7.658016769805983e-27,-1.9534979041307958e-26)
sum e = 7.860672669180259e-16
sum de = 1.1555579666323415e-33
Info: cfl dt = 49.44225110525109 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4662e+04 | 2592 | 1 | 5.804e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3066842.3600417557 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16461.211879834944, dt = 49.44225110525109 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (1.8%)
patch tree reduce : 1.22 us (0.6%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 511.00 ns (0.2%)
LB compute : 198.58 us (93.9%)
LB move op cnt : 0
LB apply : 2.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9147014275555829e-22,1.108268018466505e-22,-1.9523996974662122e-22)
sum a = (-8.346831331100893e-26,-9.780174620420318e-26,9.020046188472893e-26)
sum e = 7.860757347530872e-16
sum de = 1.5407439555097887e-33
Info: cfl dt = 49.443653858079 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4891e+04 | 2592 | 1 | 5.774e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3082660.6394439475 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16510.654130940195, dt = 49.443653858079 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 us (1.7%)
patch tree reduce : 631.00 ns (0.3%)
gen split merge : 431.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.4%)
LB compute : 197.05 us (94.1%)
LB move op cnt : 0
LB apply : 2.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9220187578519737e-22,1.0376286018778483e-22,-1.8806734571864364e-22)
sum a = (5.405757990343504e-26,-4.49964005957867e-26,-7.118373578526474e-27)
sum e = 7.86083894005491e-16
sum de = -1.925929944387236e-33
Info: cfl dt = 49.44502616711548 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4748e+04 | 2592 | 1 | 5.793e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3072889.0030935407 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16560.097784798272, dt = 49.44502616711548 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.98 us (1.7%)
patch tree reduce : 811.00 ns (0.4%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.4%)
LB compute : 217.11 us (93.9%)
LB move op cnt : 0
LB apply : 2.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8609126311663244e-22,1.028437935736149e-22,-1.9082521329376644e-22)
sum a = (2.9895897679898317e-25,8.9178660361935e-26,4.0243442615558305e-26)
sum e = 7.860917278414314e-16
sum de = 3.42815530100928e-32
Info: cfl dt = 49.446420766517676 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3892e+04 | 2592 | 1 | 5.905e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3014199.680244856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16609.542810965388, dt = 7.4669569267571205 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.45 us (2.3%)
patch tree reduce : 1.35 us (0.7%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.5%)
LB compute : 181.60 us (92.4%)
LB move op cnt : 0
LB apply : 2.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7998065044806752e-22,1.068262400567282e-22,-1.8935381412066584e-22)
sum a = (3.054779799413269e-25,-6.889771446064545e-26,9.762056854393966e-26)
sum e = 7.857683657707586e-16
sum de = 2.965932114356343e-32
Info: cfl dt = 49.44664009193667 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5361e+04 | 2592 | 1 | 5.714e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 470429.1709406412 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 380 [SPH][rank=0]
Info: time since start : 45.552708784000004 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00028806400000000004 s
sph::RenderFieldGetter compute custom field took : 0.00023704900000000003 s
rho_t_ampl=0.00126966, rho_t_phi=3.14159 rad
eps_t_ampl=-2.54069e-07, eps_t_phi=6.28319 rad
vx_t_ampl=3.62723e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 16970.56s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 16617.009767892145, dt = 49.44664009193667 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.03 us (3.8%)
patch tree reduce : 1.50 us (0.6%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 243.62 us (91.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6430615870790416e-22,1.0282980905822013e-22,-1.8431258873835013e-22)
sum a = (-2.869740402526743e-25,-1.9866686561731044e-25,1.1175040069540214e-25)
sum e = 7.860975422968668e-16
sum de = 0
Info: cfl dt = 49.4480556336116 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3771e+04 | 2592 | 1 | 5.922e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3006038.632618678 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16666.456407984082, dt = 49.4480556336116 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (1.7%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 751.00 ns (0.4%)
LB compute : 199.01 us (94.1%)
LB move op cnt : 0
LB apply : 2.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9261267327552106e-22,8.979765107154399e-23,-1.7843741234520057e-22)
sum a = (2.878139887344763e-25,3.452226457490185e-26,1.2208117375722604e-25)
sum e = 7.861058635061684e-16
sum de = 1.1555579666323415e-33
Info: cfl dt = 49.449500099456046 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4438e+04 | 2592 | 1 | 5.833e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3051880.02792235 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16715.904463617695, dt = 49.449500099456046 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (1.8%)
patch tree reduce : 641.00 ns (0.3%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.4%)
LB compute : 176.17 us (93.5%)
LB move op cnt : 0
LB apply : 2.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.642676464431863e-22,9.727000200900523e-23,-1.7214514101081758e-22)
sum a = (9.910138430812942e-26,-3.0917077583193584e-26,1.0550715500362126e-25)
sum e = 7.861126129970155e-16
sum de = -7.703719777548943e-33
Info: cfl dt = 49.45096686917994 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4648e+04 | 2592 | 1 | 5.805e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3066392.1497025257 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16765.353963717153, dt = 49.45096686917994 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (1.6%)
patch tree reduce : 771.00 ns (0.4%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 203.24 us (93.9%)
LB move op cnt : 0
LB apply : 2.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6410075996274231e-22,9.412305777037569e-23,-1.6733749865526238e-22)
sum a = (-1.2139136043714321e-25,-1.0023138729422904e-25,-6.562971967343597e-26)
sum e = 7.861189414440036e-16
sum de = -2.04148574105047e-32
Info: cfl dt = 49.452453978030995 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5098e+04 | 2592 | 1 | 5.748e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3097394.999919666 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16814.80493058633, dt = 49.452453978030995 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (2.0%)
patch tree reduce : 1.24 us (0.7%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.6%)
LB compute : 172.16 us (92.2%)
LB move op cnt : 0
LB apply : 2.58 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7532066641720813e-22,8.745255251998637e-23,-1.7481449130689116e-22)
sum a = (1.2669431876254976e-25,-3.9657497646683636e-26,-1.277896883738384e-25)
sum e = 7.86124872897752e-16
sum de = 5.007417855406813e-33
Info: cfl dt = 49.45395783203035 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4388e+04 | 2592 | 1 | 5.839e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3048764.754481923 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16864.257384564364, dt = 49.45395783203035 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (1.6%)
patch tree reduce : 741.00 ns (0.4%)
gen split merge : 441.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 611.00 ns (0.3%)
LB compute : 198.60 us (94.7%)
LB move op cnt : 0
LB apply : 2.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.632470714281634e-22,8.698918929855528e-23,-1.826711786628095e-22)
sum a = (6.813611938199663e-26,-6.804890225011176e-26,2.162369366557183e-25)
sum e = 7.861303957211234e-16
sum de = 3.4666738998970245e-33
Info: cfl dt = 49.45548145971609 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4137e+04 | 2592 | 1 | 5.873e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3031578.6854148367 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16913.711342396393, dt = 49.45548145971609 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (1.7%)
patch tree reduce : 1.17 us (0.6%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 183.36 us (93.0%)
LB move op cnt : 0
LB apply : 2.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.60840054883298e-22,8.292189548223548e-23,-1.6347033774746472e-22)
sum a = (-3.628201345049429e-25,-9.562298291689837e-27,7.971521716931346e-26)
sum e = 7.86135499061801e-16
sum de = 1.0592614694129797e-32
Info: cfl dt = 49.45702417664583 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4622e+04 | 2592 | 1 | 5.809e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3065002.3387803244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16963.16682385611, dt = 7.396343352887925 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (1.8%)
patch tree reduce : 991.00 ns (0.5%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 188.39 us (92.8%)
LB move op cnt : 0
LB apply : 2.79 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7375450098534906e-22,8.429711680474642e-23,-1.662566103143053e-22)
sum a = (5.870863791460721e-26,1.0278977281981095e-25,3.9500588064195576e-26)
sum e = 7.8577649331134005e-16
sum de = -1.2711137632955757e-32
Info: cfl dt = 49.45726027590285 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.9512e+04 | 2592 | 1 | 6.560e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 405897.98649908754 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 388 [SPH][rank=0]
Info: time since start : 46.40840412 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000302385 s
sph::RenderFieldGetter compute custom field took : 0.000240234 s
rho_t_ampl=0.00133206, rho_t_phi=3.14159 rad
eps_t_ampl=-3.02428e-07, eps_t_phi=6.28319 rad
vx_t_ampl=2.10728e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 17324.12s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 16970.563167209, dt = 49.45726027590285 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.51 us (3.9%)
patch tree reduce : 1.49 us (0.6%)
gen split merge : 711.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 222.31 us (91.0%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6998029904300016e-22,8.979669829416165e-23,-1.6445174005168036e-22)
sum a = (-4.260168553521636e-25,-2.903370662577623e-26,1.1569489522481305e-25)
sum e = 7.861391763071383e-16
sum de = 7.703719777548943e-33
Info: cfl dt = 49.45882061287956 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3353e+04 | 2592 | 1 | 7.771e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2291055.478938396 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17020.020427484902, dt = 49.45882061287956 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.98 us (1.7%)
patch tree reduce : 771.00 ns (0.3%)
gen split merge : 801.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 224.77 us (93.5%)
LB move op cnt : 0
LB apply : 2.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0303665959248473e-22,8.510052125931775e-23,-1.5684542614253422e-22)
sum a = (-6.744660943424873e-26,-3.8701635099091936e-26,-4.9801950386026287e-26)
sum e = 7.861440047297946e-16
sum de = 1.3481509610710651e-33
Info: cfl dt = 49.46040155560909 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3462e+04 | 2592 | 1 | 7.746e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2298611.642001037 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17069.47924809778, dt = 49.46040155560909 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (1.7%)
patch tree reduce : 1.01 us (0.4%)
gen split merge : 881.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 217.80 us (93.3%)
LB move op cnt : 0
LB apply : 2.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9772196706142196e-22,8.294719422904558e-23,-1.6340129000643933e-22)
sum a = (-3.2394430999646605e-26,-9.94959426638826e-26,-6.241919719697751e-26)
sum e = 7.86147766095254e-16
sum de = -7.125940794232773e-33
Info: cfl dt = 49.4619993164471 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7452e+04 | 2592 | 1 | 6.921e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2572789.7185448566 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17118.939649653392, dt = 49.4619993164471 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (2.0%)
patch tree reduce : 931.00 ns (0.5%)
gen split merge : 752.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 185.27 us (92.7%)
LB move op cnt : 0
LB apply : 2.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9860774914993242e-22,7.652261633990979e-23,-1.6680069534241017e-22)
sum a = (1.3306288337083943e-25,-1.6266950028629623e-26,-1.7782657818389964e-25)
sum e = 7.861510306442991e-16
sum de = 1.925929944387236e-33
Info: cfl dt = 49.463612911938625 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5050e+04 | 2592 | 1 | 5.754e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3094820.8468646244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17168.40164896984, dt = 49.463612911938625 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.82 us (1.9%)
patch tree reduce : 1.15 us (0.6%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.6%)
LB compute : 187.81 us (93.0%)
LB move op cnt : 0
LB apply : 2.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8754189175433798e-22,7.777677225214069e-23,-1.784507802708924e-22)
sum a = (1.1261577928398817e-25,-1.3991469259307624e-27,2.436034183915869e-26)
sum e = 7.861538329762652e-16
sum de = -4.718528363748728e-33
Info: cfl dt = 49.46524153797394 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5242e+04 | 2592 | 1 | 5.729e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3108115.7738999943 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17217.86526188178, dt = 49.46524153797394 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (1.7%)
patch tree reduce : 521.00 ns (0.3%)
gen split merge : 451.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.4%)
LB compute : 196.16 us (94.4%)
LB move op cnt : 0
LB apply : 1.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8269897446606883e-22,7.807401372234255e-23,-1.722453423039333e-22)
sum a = (-4.741321131604623e-26,1.931881997853329e-25,2.228196913547278e-25)
sum e = 7.861561675945017e-16
sum de = 2.8888949165808538e-33
Info: cfl dt = 49.46683621582688 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.9826e+04 | 2592 | 1 | 6.508e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2736121.1608148096 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17267.330503419755, dt = 49.46683621582688 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (1.7%)
patch tree reduce : 891.00 ns (0.4%)
gen split merge : 862.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 203.70 us (93.4%)
LB move op cnt : 0
LB apply : 2.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8889784440794548e-22,9.244407800681195e-23,-1.5631473729638631e-22)
sum a = (-2.0399465217734115e-25,-1.441085584968497e-26,1.6350614395184207e-26)
sum e = 7.861580291303784e-16
sum de = 5.103714352626175e-33
Info: cfl dt = 49.46838818972776 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4465e+04 | 2592 | 1 | 5.829e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3054952.5439585247 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17316.79733963558, dt = 7.3192268902712385 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (1.8%)
patch tree reduce : 881.00 ns (0.4%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.6%)
LB compute : 198.06 us (93.1%)
LB move op cnt : 0
LB apply : 2.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9408737207867523e-22,8.720422864644109e-23,-1.6130174944664714e-22)
sum a = (2.833259058018627e-26,-6.520491857003655e-26,5.6860060707817e-26)
sum e = 7.857803335928975e-16
sum de = -1.6370404527291505e-33
Info: cfl dt = 49.46861980381248 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6066e+04 | 2592 | 1 | 5.627e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 468292.52245554194 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 396 [SPH][rank=0]
Info: time since start : 47.1582115 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000279451 s
sph::RenderFieldGetter compute custom field took : 0.000226884 s
rho_t_ampl=0.0013608, rho_t_phi=3.14159 rad
eps_t_ampl=-3.5056e-07, eps_t_phi=6.28319 rad
vx_t_ampl=5.34153e-09, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 17677.67s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 17324.116566525852, dt = 49.46861980381248 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.96 us (4.0%)
patch tree reduce : 1.56 us (0.6%)
gen split merge : 742.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 223.58 us (90.5%)
LB move op cnt : 0
LB apply : 3.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9199326768464237e-22,8.379200689011532e-23,-1.5834071180707217e-22)
sum a = (-5.789376252181425e-26,-1.233536724482374e-25,1.96350264046618e-26)
sum e = 7.861592157166254e-16
sum de = -1.1555579666323415e-33
Info: cfl dt = 49.47018588259629 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4719e+04 | 2592 | 1 | 5.796e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3072450.223953678 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17373.585186329663, dt = 49.47018588259629 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.23 us (2.1%)
patch tree reduce : 972.00 ns (0.5%)
gen split merge : 821.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 185.58 us (92.5%)
LB move op cnt : 0
LB apply : 2.37 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9704318839576992e-22,7.625177683243441e-23,-1.582900989355912e-22)
sum a = (3.632087673845826e-25,-1.1796761054461152e-25,4.99545186740845e-26)
sum e = 7.861600541315357e-16
sum de = 6.018531076210112e-35
Info: cfl dt = 49.47174109935606 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6175e+04 | 2592 | 1 | 5.613e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3172642.995353136 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17423.05537221226, dt = 49.47174109935606 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (1.9%)
patch tree reduce : 1.25 us (0.6%)
gen split merge : 871.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 186.61 us (93.4%)
LB move op cnt : 0
LB apply : 2.37 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6859786920739913e-22,7.054850156790994e-23,-1.5506880646178052e-22)
sum a = (-8.136217383425172e-26,1.559009905257866e-25,1.90147015298471e-26)
sum e = 7.86160451414617e-16
sum de = -8.907425992790966e-34
Info: cfl dt = 49.47101131801935 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6061e+04 | 2592 | 1 | 5.627e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3164887.946642168 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17472.527113311615, dt = 49.47101131801935 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (1.8%)
patch tree reduce : 701.00 ns (0.4%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.4%)
LB compute : 174.49 us (93.3%)
LB move op cnt : 0
LB apply : 1.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8346280104963945e-22,8.503608342056459e-23,-1.548934532589044e-22)
sum a = (4.1242724110927785e-25,1.7385278357659425e-25,8.413300364294567e-27)
sum e = 7.861602872978818e-16
sum de = -2.8888949165808538e-34
Info: cfl dt = 49.46943499984607 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6066e+04 | 2592 | 1 | 5.627e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3165200.116098146 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17521.998124629634, dt = 49.46943499984607 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (1.8%)
patch tree reduce : 811.00 ns (0.4%)
gen split merge : 521.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 194.58 us (93.5%)
LB move op cnt : 0
LB apply : 2.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5100979931406779e-22,9.40805483802523e-23,-1.5473948306192448e-22)
sum a = (-9.145409216038003e-26,1.18296401012593e-25,1.4173216945581354e-26)
sum e = 7.861596281538811e-16
sum de = 2.6963019221421302e-33
Info: cfl dt = 49.46787170830195 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6333e+04 | 2592 | 1 | 5.594e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3183430.2361908667 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17571.46755962948, dt = 49.46787170830195 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (1.9%)
patch tree reduce : 1.44 us (0.7%)
gen split merge : 961.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 732.00 ns (0.4%)
LB compute : 185.96 us (93.0%)
LB move op cnt : 0
LB apply : 2.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6808998871643254e-22,9.855815076166011e-23,-1.5389589427491753e-22)
sum a = (1.5542807876688027e-25,3.986601564082501e-26,1.3757289765059322e-25)
sum e = 7.861584895009501e-16
sum de = 7.029644297013411e-33
Info: cfl dt = 49.466223229636235 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6853e+04 | 2592 | 1 | 7.033e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2532027.0680562668 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17620.93543133778, dt = 49.466223229636235 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (2.0%)
patch tree reduce : 982.00 ns (0.5%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.5%)
LB compute : 185.13 us (93.1%)
LB move op cnt : 0
LB apply : 2.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5442455345238346e-22,9.859054519265975e-23,-1.4403852282239535e-22)
sum a = (3.4241064005160514e-25,1.779229490451396e-25,-9.483361459594848e-26)
sum e = 7.861568721833095e-16
sum de = -4.622231866529366e-33
Info: cfl dt = 49.46458565170913 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5829e+04 | 2592 | 1 | 5.656e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3148576.4750551837 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17670.401654567417, dt = 7.268311275289307 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.8%)
patch tree reduce : 551.00 ns (0.3%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.6%)
LB compute : 182.91 us (93.0%)
LB move op cnt : 0
LB apply : 2.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4720671317318047e-22,1.0329711502289789e-22,-1.504759392600377e-22)
sum a = (-2.8834052360366557e-25,1.5772001375086443e-25,6.889791709349426e-26)
sum e = 7.85779609241381e-16
sum de = -4.8148248609680896e-33
Info: cfl dt = 49.46434837122727 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5891e+04 | 2592 | 1 | 5.648e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 463261.68573520595 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 404 [SPH][rank=0]
Info: time since start : 47.856185604000004 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000301934 s
sph::RenderFieldGetter compute custom field took : 0.00023057900000000002 s
rho_t_ampl=0.00135516, rho_t_phi=3.14159 rad
eps_t_ampl=-3.97249e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-1.05236e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 18031.22s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 17677.669965842706, dt = 49.46434837122727 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.48 us (4.0%)
patch tree reduce : 1.55 us (0.7%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 215.97 us (90.9%)
LB move op cnt : 0
LB apply : 2.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6366428762927339e-22,1.1102689763348692e-22,-1.4647292281793756e-22)
sum a = (4.97951547719026e-26,1.08965294231082e-25,5.681801989376846e-26)
sum e = 7.861554107673507e-16
sum de = 4.8148248609680896e-33
Info: cfl dt = 49.462726232868995 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3874e+04 | 2592 | 1 | 7.652e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2327148.5425937106 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17727.134314213934, dt = 49.462726232868995 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (1.9%)
patch tree reduce : 1.13 us (0.5%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 199.51 us (92.8%)
LB move op cnt : 0
LB apply : 2.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5221972629728679e-22,1.152097909266828e-22,-1.439613107765135e-22)
sum a = (3.3298315858421574e-25,-2.2164855538353583e-26,3.4768847667371065e-26)
sum e = 7.861521165265793e-16
sum de = 8.666684749742561e-33
Info: cfl dt = 49.46112320968621 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3952e+04 | 2592 | 1 | 7.634e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2332451.3346675485 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17776.597040446803, dt = 49.46112320968621 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.28 us (1.9%)
patch tree reduce : 651.00 ns (0.3%)
gen split merge : 721.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 207.08 us (92.8%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (57.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2920864812837372e-22,1.1087054185042672e-22,-1.42786910602928e-22)
sum a = (-2.4750899815248564e-25,-1.575843644216555e-26,3.7455120223562663e-26)
sum e = 7.861490680114844e-16
sum de = -4.8148248609680896e-33
Info: cfl dt = 49.459537232336906 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0551e+04 | 2592 | 1 | 8.484e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2098725.300555993 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17826.05816365649, dt = 49.459537232336906 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (1.8%)
patch tree reduce : 1.22 us (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 242.66 us (93.5%)
LB move op cnt : 0
LB apply : 2.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5572434238661077e-22,1.1024887968153723e-22,-1.4086796466076346e-22)
sum a = (8.883395435893802e-26,-1.1998305595721892e-25,-5.543983328913409e-26)
sum e = 7.861455186863664e-16
sum de = -1.5214846560659163e-32
Info: cfl dt = 49.45796926154653 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2935e+04 | 2592 | 1 | 7.870e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2262418.016012687 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17875.517700888828, dt = 49.45796926154653 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (2.2%)
patch tree reduce : 1.12 us (0.5%)
gen split merge : 912.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 212.69 us (92.7%)
LB move op cnt : 0
LB apply : 2.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (56.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.428869208139954e-22,1.0173797005596133e-22,-1.459071769374225e-22)
sum a = (-1.2565378556867567e-25,-3.795801233229138e-26,-1.710034544164501e-25)
sum e = 7.861415197566443e-16
sum de = -6.162975822039155e-33
Info: cfl dt = 49.45642005590752 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1714e+04 | 2592 | 1 | 8.173e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2178508.926991694 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17924.975670150376, dt = 49.45642005590752 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.28 us (1.9%)
patch tree reduce : 1.15 us (0.5%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 204.88 us (92.6%)
LB move op cnt : 0
LB apply : 2.89 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5452404346957125e-22,1.0188810771294731e-22,-1.5722216662078223e-22)
sum a = (1.1959863457299868e-26,-7.186148090579107e-26,9.959512236248389e-26)
sum e = 7.86137079221502e-16
sum de = 1.5407439555097887e-32
Info: cfl dt = 49.45489036401067 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1749e+04 | 2592 | 1 | 8.164e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2180832.1167269503 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17974.432090206283, dt = 49.45489036401067 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.22 us (1.9%)
patch tree reduce : 1.36 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 209.08 us (93.0%)
LB move op cnt : 0
LB apply : 2.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5059579246835094e-22,9.749600456506024e-23,-1.4560528232370736e-22)
sum a = (1.432927036865173e-26,4.4340876436656495e-26,-3.3494874097716067e-26)
sum e = 7.861322060647059e-16
sum de = -1.3096323621833204e-32
Info: cfl dt = 49.45338092357618 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.0970e+04 | 2592 | 1 | 6.327e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2814141.95391296 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18023.886980570293, dt = 7.336384589267254 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (1.8%)
patch tree reduce : 932.00 ns (0.4%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 209.05 us (93.8%)
LB move op cnt : 0
LB apply : 2.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.513146880764174e-22,1.0069523043025445e-22,-1.4914198919358798e-22)
sum a = (-7.895515728938635e-26,1.5866368255009043e-25,-2.108609298599854e-26)
sum e = 7.857746244694116e-16
sum de = 1.3096323621833204e-32
Info: cfl dt = 49.45316366306151 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5600e+04 | 2592 | 1 | 5.684e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 464638.1914303102 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 412 [SPH][rank=0]
Info: time since start : 48.686953513000006 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00031433300000000003 s
sph::RenderFieldGetter compute custom field took : 0.00025132100000000004 s
rho_t_ampl=0.00131528, rho_t_phi=3.14159 rad
eps_t_ampl=-4.41313e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-2.61214e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 18384.78s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 18031.22336515956, dt = 49.45316366306151 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.75 us (3.4%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 262.40 us (91.8%)
LB move op cnt : 0
LB apply : 3.70 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.542287827734011e-22,1.0896252992301874e-22,-1.5013924540578229e-22)
sum a = (1.1351841048831269e-25,-1.4023579463337335e-25,-3.114721270110743e-26)
sum e = 7.861283082087416e-16
sum de = 1.0400021699691074e-32
Info: cfl dt = 49.45167308138146 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2328e+04 | 2592 | 1 | 8.018e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2220465.540385123 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18080.67652882262, dt = 49.45167308138146 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.04 us (1.8%)
patch tree reduce : 1.12 us (0.5%)
gen split merge : 782.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 205.38 us (93.0%)
LB move op cnt : 0
LB apply : 2.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (55.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4426694363305157e-22,9.46343627702834e-23,-1.5192830428561583e-22)
sum a = (-5.365641047929081e-27,-1.1652331247011373e-25,-1.450743920744355e-26)
sum e = 7.861212630841509e-16
sum de = -2.850376317693109e-32
Info: cfl dt = 49.450209777447924 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.9941e+04 | 2592 | 1 | 6.490e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2743265.171971701 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18130.128201904, dt = 49.450209777447924 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (1.6%)
patch tree reduce : 881.00 ns (0.4%)
gen split merge : 872.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.4%)
LB compute : 212.88 us (88.3%)
LB move op cnt : 0
LB apply : 2.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.47656022928222e-22,8.945907661411076e-23,-1.5223426787828393e-22)
sum a = (1.9811501280472729e-25,-2.1233850607912224e-25,-4.445271643893623e-26)
sum e = 7.861151376034037e-16
sum de = 2.6963019221421302e-33
Info: cfl dt = 49.44876878788471 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2527e+04 | 2592 | 1 | 7.969e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2234008.8518782053 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18179.57841168145, dt = 49.44876878788471 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (1.7%)
patch tree reduce : 1.46 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 219.53 us (88.2%)
LB move op cnt : 0
LB apply : 16.09 us (6.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3240516609995495e-22,7.659317201238115e-23,-1.551728000959337e-22)
sum a = (-1.640030752079632e-25,8.086918401578737e-26,-2.229542484878783e-25)
sum e = 7.861085837355432e-16
sum de = 1.502225356622044e-32
Info: cfl dt = 49.447350988047425 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3227e+04 | 2592 | 1 | 5.996e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2968760.2768514594 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18229.027180469337, dt = 49.447350988047425 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (1.9%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 209.89 us (93.4%)
LB move op cnt : 0
LB apply : 2.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4936339999737986e-22,8.784025769533276e-23,-1.706106375684747e-22)
sum a = (-3.014286760663711e-25,1.320250925460757e-25,2.0516493761207064e-25)
sum e = 7.861016566688499e-16
sum de = -3.851859888774472e-33
Info: cfl dt = 49.44595705395755 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1477e+04 | 2592 | 1 | 8.235e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2161761.5119842435 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18278.474531457385, dt = 49.44595705395755 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (2.0%)
patch tree reduce : 1.38 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.4%)
LB compute : 206.58 us (93.0%)
LB move op cnt : 0
LB apply : 2.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6733579019904138e-22,9.563347522111461e-23,-1.4988138104443856e-22)
sum a = (-1.6103191416039499e-25,3.8630529385730433e-26,1.1501713026415395e-25)
sum e = 7.860943700995383e-16
sum de = 8.859277744181285e-33
Info: cfl dt = 49.44458764974207 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7661e+04 | 2592 | 1 | 6.882e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2586374.0469757053 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18327.920488511343, dt = 49.44458764974207 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (1.6%)
patch tree reduce : 1.20 us (0.5%)
gen split merge : 871.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 219.87 us (93.8%)
LB move op cnt : 0
LB apply : 2.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7217549813191738e-22,9.523260667403849e-23,-1.4642312877117883e-22)
sum a = (1.9469253615499682e-26,-1.3496471634887473e-25,-5.8895831332800714e-27)
sum e = 7.860867386098487e-16
sum de = -3.0814879110195774e-33
Info: cfl dt = 49.44319481854468 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9495e+04 | 2592 | 1 | 8.788e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2025484.5216798182 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18377.365076161084, dt = 7.411688315332867 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (2.2%)
patch tree reduce : 1.19 us (0.5%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 207.94 us (92.3%)
LB move op cnt : 0
LB apply : 2.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (57.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.67348627620614e-22,8.994338840140889e-23,-1.4945587181969363e-22)
sum a = (-1.1571230577660145e-25,-3.6407986134413795e-26,1.7577121440858717e-25)
sum e = 7.857656468738435e-16
sum de = -1.925929944387236e-33
Info: cfl dt = 49.44299510282784 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0290e+04 | 2592 | 1 | 8.557e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 311803.2898738364 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 420 [SPH][rank=0]
Info: time since start : 49.531704368 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000310537 s
sph::RenderFieldGetter compute custom field took : 0.00026248600000000003 s
rho_t_ampl=0.00124219, rho_t_phi=3.14159 rad
eps_t_ampl=-4.81642e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-4.10574e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 18738.33s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 18384.776764476417, dt = 49.44299510282784 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.59 us (3.1%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 270.50 us (88.4%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7533350383878076e-22,8.850710157061651e-23,-1.400920099212063e-22)
sum a = (-1.579353876677817e-25,1.4072618899535825e-25,7.295092508544713e-26)
sum e = 7.860807962091656e-16
sum de = -7.703719777548943e-34
Info: cfl dt = 49.44161738462141 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9254e+04 | 2592 | 1 | 8.860e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2008902.2980798213 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18434.219759579246, dt = 49.44161738462141 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.89 us (2.2%)
patch tree reduce : 1.33 us (0.6%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 207.72 us (92.4%)
LB move op cnt : 0
LB apply : 2.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.833825671648106e-22,9.98445506663566e-23,-1.3902706972601816e-22)
sum a = (2.267234073640127e-25,5.504140482177703e-26,4.254994674099158e-26)
sum e = 7.860707049664873e-16
sum de = 5.3926038442842604e-33
Info: cfl dt = 49.44027472410703 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8921e+04 | 2592 | 1 | 8.962e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1985987.128914237 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18483.661376963868, dt = 49.44027472410703 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.92 us (2.2%)
patch tree reduce : 1.20 us (0.5%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 209.15 us (92.4%)
LB move op cnt : 0
LB apply : 2.88 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6230352094257616e-22,1.0044901269618592e-22,-1.37674925439349e-22)
sum a = (-4.634760503316312e-26,5.199742408015335e-26,6.386208203230942e-26)
sum e = 7.860621266956939e-16
sum de = -2.0029671421627253e-32
Info: cfl dt = 49.43895917314254 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9808e+04 | 2592 | 1 | 8.696e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2046839.890003958 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18533.101651687975, dt = 49.43895917314254 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.54 us (1.9%)
patch tree reduce : 1.29 us (0.6%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 216.27 us (92.8%)
LB move op cnt : 0
LB apply : 3.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7104580503352723e-22,1.0294077628190178e-22,-1.3399081166118311e-22)
sum a = (-1.939779531182399e-25,-3.174737880223233e-26,1.5769413562117515e-25)
sum e = 7.860532330584888e-16
sum de = -1.9259299443872359e-32
Info: cfl dt = 49.43767153140071 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0062e+04 | 2592 | 1 | 8.622e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2064189.6544709757 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18582.540610861117, dt = 49.43767153140071 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (2.1%)
patch tree reduce : 1.16 us (0.5%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.6%)
LB compute : 197.57 us (92.4%)
LB move op cnt : 0
LB apply : 2.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.848075209593709e-22,9.930397486732225e-23,-1.2387530124864743e-22)
sum a = (-2.46405782236089e-25,-1.3388882618182776e-26,6.635584486983044e-26)
sum e = 7.860440798818164e-16
sum de = -5.3926038442842604e-33
Info: cfl dt = 49.43641240168133 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9398e+04 | 2592 | 1 | 8.817e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2018601.917964513 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18631.978282392516, dt = 49.43641240168133 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (2.0%)
patch tree reduce : 1.12 us (0.5%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.6%)
LB compute : 217.04 us (92.9%)
LB move op cnt : 0
LB apply : 2.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9890300984610257e-22,9.909035214896545e-23,-1.228526825445971e-22)
sum a = (6.56413470255997e-26,7.835830024086707e-27,-1.1629273571233485e-25)
sum e = 7.860346851758977e-16
sum de = -1.1555579666323415e-32
Info: cfl dt = 49.43518237317981 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9802e+04 | 2592 | 1 | 8.697e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2046269.9394527946 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18681.4146947942, dt = 49.43518237317981 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.90 us (1.9%)
patch tree reduce : 1.24 us (0.5%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 237.90 us (93.3%)
LB move op cnt : 0
LB apply : 2.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8691285809727983e-22,1.0000602135957465e-22,-1.3311638042033585e-22)
sum a = (4.106470517896378e-25,-8.241749623297098e-27,1.3001031598229332e-26)
sum e = 7.860250676528512e-16
sum de = 3.928897086549961e-32
Info: cfl dt = 49.433982020097936 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0692e+04 | 2592 | 1 | 8.445e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2107310.8072031494 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18730.84987716738, dt = 7.480286625886947 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (2.2%)
patch tree reduce : 1.21 us (0.5%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 216.54 us (92.5%)
LB move op cnt : 0
LB apply : 2.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.772077673883826e-22,9.95485879236942e-23,-1.2982329849419983e-22)
sum a = (1.3975739813624627e-25,-6.016997785429081e-26,-7.587233350156997e-26)
sum e = 7.857535783107327e-16
sum de = -2.311115933264683e-33
Info: cfl dt = 49.43381337293599 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1019e+04 | 2592 | 1 | 8.356e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 322264.35953780636 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 428 [SPH][rank=0]
Info: time since start : 50.458710780000004 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000316046 s
sph::RenderFieldGetter compute custom field took : 0.00024166600000000003 s
rho_t_ampl=0.00113772, rho_t_phi=3.14159 rad
eps_t_ampl=-5.17218e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-5.49538e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 19091.88s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 18738.330163793267, dt = 49.43381337293599 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.92 us (2.8%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 334.76 us (93.4%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7048095848433216e-22,9.638095415065136e-23,-1.3390635639086357e-22)
sum a = (-2.5025450139897274e-25,9.550261250130431e-26,-1.5744461956252825e-25)
sum e = 7.86017682345167e-16
sum de = -1.0785207688568521e-32
Info: cfl dt = 49.43263715739159 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9637e+04 | 2592 | 1 | 8.746e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2034797.0951915001 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18787.763977166203, dt = 49.43263715739159 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (1.6%)
patch tree reduce : 1.31 us (0.5%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 255.70 us (94.1%)
LB move op cnt : 0
LB apply : 3.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9217620094205213e-22,1.0494732544911517e-22,-1.437054737248466e-22)
sum a = (-3.1926817889628485e-25,-2.443431288980818e-26,6.306600331262008e-26)
sum e = 7.860055552260971e-16
sum de = -5.3926038442842604e-33
Info: cfl dt = 49.43150268782873 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0938e+04 | 2592 | 1 | 8.378e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2124101.884306501 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18837.196614323595, dt = 49.43150268782873 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (2.1%)
patch tree reduce : 1.26 us (0.5%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.51 us (0.6%)
LB compute : 252.86 us (92.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0812027853524041e-22,1.0077817220869626e-22,-1.3513781560762242e-22)
sum a = (2.5163352129446854e-25,8.696395245093367e-27,-4.613480462316065e-26)
sum e = 7.859953945593754e-16
sum de = -6.933347799794049e-33
Info: cfl dt = 49.43039943770155 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1771e+04 | 2592 | 1 | 8.158e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2181246.7666646503 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18886.628117011423, dt = 49.43039943770155 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.9%)
patch tree reduce : 1.47 us (0.5%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 259.76 us (93.5%)
LB move op cnt : 0
LB apply : 2.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8257380960573583e-22,1.0202691233370122e-22,-1.4011725744362275e-22)
sum a = (-1.7804400505301125e-25,8.315485072751929e-26,3.11092677627007e-26)
sum e = 7.859850606804205e-16
sum de = -6.77927340424307e-32
Info: cfl dt = 49.42932808354165 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1365e+04 | 2592 | 1 | 8.264e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2153324.627264024 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18936.058516449124, dt = 49.42932808354165 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (1.8%)
patch tree reduce : 1.51 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 253.29 us (93.6%)
LB move op cnt : 0
LB apply : 2.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0229208914127304e-22,1.0797675635554034e-22,-1.3667044456482544e-22)
sum a = (2.653485009823994e-25,2.08527445520629e-25,5.948714293404648e-26)
sum e = 7.859746066547065e-16
sum de = 9.55261252416069e-32
Info: cfl dt = 49.42828911790755 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1461e+04 | 2592 | 1 | 8.239e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2159832.77273084 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18985.487844532665, dt = 49.42828911790755 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (2.0%)
patch tree reduce : 1.08 us (0.4%)
gen split merge : 772.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 238.88 us (93.5%)
LB move op cnt : 0
LB apply : 2.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (57.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7872258313395123e-22,1.2138373821808447e-22,-1.3302874721400859e-22)
sum a = (-1.6653545719787363e-25,5.625872288151548e-26,-3.2501240631526914e-26)
sum e = 7.859640529936361e-16
sum de = -2.465190328815662e-32
Info: cfl dt = 49.42728301861986 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2021e+04 | 2592 | 1 | 8.095e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2198257.783523179 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19034.91613365057, dt = 49.42728301861986 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 us (1.7%)
patch tree reduce : 1.08 us (0.4%)
gen split merge : 560.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 243.65 us (93.9%)
LB move op cnt : 0
LB apply : 2.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9718279535537212e-22,1.204002713747949e-22,-1.369086094423428e-22)
sum a = (1.5770972986670058e-26,-1.2828533358445186e-25,-5.247055953990948e-26)
sum e = 7.859534206608231e-16
sum de = -1.5407439555097887e-33
Info: cfl dt = 49.42631024719875 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1965e+04 | 2592 | 1 | 8.109e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2194359.269500075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19084.34341666919, dt = 7.540146440929675 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (2.0%)
patch tree reduce : 1.07 us (0.4%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 237.91 us (93.7%)
LB move op cnt : 0
LB apply : 2.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9384506574649212e-22,1.148718558330193e-22,-1.3779775973379574e-22)
sum a = (-1.61056987249404e-25,-1.055205848032068e-25,1.1176113555999828e-25)
sum e = 7.857396651909779e-16
sum de = 2.7733391199176196e-32
Info: cfl dt = 49.42617742963907 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3314e+04 | 2592 | 1 | 7.780e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 348880.0727264949 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 436 [SPH][rank=0]
Info: time since start : 51.34898427700001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000279641 s
sph::RenderFieldGetter compute custom field took : 0.00021053 s
rho_t_ampl=0.00100452, rho_t_phi=3.14159 rad
eps_t_ampl=-5.47142e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-6.74592e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 19445.44s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 19091.88356311012, dt = 49.42617742963907 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.59 us (3.1%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 317.08 us (92.7%)
LB move op cnt : 0
LB apply : 3.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0231776398441827e-22,1.0974240328355512e-22,-1.3165466850223093e-22)
sum a = (-1.1897180734777333e-26,-2.3393877637688026e-26,5.190004982326257e-26)
sum e = 7.859453409839195e-16
sum de = 1.617781153285278e-32
Info: cfl dt = 49.42523068798401 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0947e+04 | 2592 | 1 | 8.376e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2124406.355176242 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19141.30974053976, dt = 49.42523068798401 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (1.7%)
patch tree reduce : 1.04 us (0.4%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 253.32 us (93.6%)
LB move op cnt : 0
LB apply : 2.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.977476419045672e-22,1.1061825642881802e-22,-1.3056884888936468e-22)
sum a = (1.455618182418331e-25,-1.5104023921942577e-25,4.1171997750284e-26)
sum e = 7.8593238951057e-16
sum de = -6.933347799794049e-33
Info: cfl dt = 49.424331294107006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2133e+04 | 2592 | 1 | 8.066e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2205834.61889773 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19190.734971227743, dt = 49.424331294107006 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (2.0%)
patch tree reduce : 1.38 us (0.6%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 1.35 us (0.6%)
LB compute : 214.12 us (92.3%)
LB move op cnt : 0
LB apply : 2.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.864763857638109e-22,9.99995023564323e-23,-1.28799068656791e-22)
sum a = (-2.4907606621554904e-25,-4.257983472991203e-26,1.1263515978477646e-25)
sum e = 7.859216731733842e-16
sum de = 6.008901426488176e-32
Info: cfl dt = 49.4234664280685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7391e+04 | 2592 | 1 | 6.932e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2566684.538716496 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19240.15930252185, dt = 49.4234664280685 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (2.0%)
patch tree reduce : 1.16 us (0.5%)
gen split merge : 862.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 203.96 us (92.6%)
LB move op cnt : 0
LB apply : 2.88 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0889052382959733e-22,1.0056956410814126e-22,-1.2146623912067656e-22)
sum a = (-5.131207665694797e-26,2.209780461360526e-25,-8.375533682304745e-26)
sum e = 7.859109406991385e-16
sum de = 2.311115933264683e-33
Info: cfl dt = 49.42263663071364 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.0541e+04 | 2592 | 1 | 6.394e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2782864.9395880224 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19289.58276894992, dt = 49.42263663071364 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.48 us (2.0%)
patch tree reduce : 1.37 us (0.6%)
gen split merge : 832.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.4%)
LB compute : 202.43 us (92.6%)
LB move op cnt : 0
LB apply : 2.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0457715018119857e-22,1.1800970277631942e-22,-1.3045879825630126e-22)
sum a = (-3.219384628757449e-26,-1.1403262918194385e-25,1.3900566794613442e-25)
sum e = 7.859002392835076e-16
sum de = 6.162975822039155e-33
Info: cfl dt = 49.42184227594329 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.8666e+04 | 2592 | 1 | 6.704e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2654154.2740874207 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19339.005405580632, dt = 49.42184227594329 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.65 us (2.1%)
patch tree reduce : 1.14 us (0.5%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 752.00 ns (0.3%)
LB compute : 207.70 us (93.1%)
LB move op cnt : 0
LB apply : 2.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0529604578926505e-22,1.0409564276165698e-22,-1.1808416396251633e-22)
sum a = (-1.8002477908472338e-26,-2.2861858030278e-26,1.3605802774768683e-26)
sum e = 7.858895898888467e-16
sum de = 4.5451946687538766e-32
Info: cfl dt = 49.42108372218994 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4225e+04 | 2592 | 1 | 5.861e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3035658.4814512855 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19388.427247856576, dt = 49.42108372218994 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (1.9%)
patch tree reduce : 571.00 ns (0.3%)
gen split merge : 611.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 183.06 us (92.9%)
LB move op cnt : 0
LB apply : 2.59 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0529604578926505e-22,1.0521791422570046e-22,-1.2051049662344233e-22)
sum a = (-8.274119372974752e-28,-1.1990874265141584e-25,-3.777499135971435e-26)
sum e = 7.858790136372515e-16
sum de = 5.46964104205975e-32
Info: cfl dt = 49.42036131071509 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4432e+04 | 2592 | 1 | 5.834e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3049805.2173146633 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19437.848331578767, dt = 7.588630848211324 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (2.1%)
patch tree reduce : 1.31 us (0.7%)
gen split merge : 842.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.6%)
LB compute : 180.63 us (91.8%)
LB move op cnt : 0
LB apply : 2.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0937834584935673e-22,1.0190766472237435e-22,-1.2206680435248607e-22)
sum a = (1.8506446997553527e-25,4.3703887754459704e-26,-1.2864902560578477e-25)
sum e = 7.857253458649927e-16
sum de = 2.3881531310401725e-32
Info: cfl dt = 49.42026815994634 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5683e+04 | 2592 | 1 | 5.674e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 481485.173780654 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 444 [SPH][rank=0]
Info: time since start : 52.122460293 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00031649600000000004 s
sph::RenderFieldGetter compute custom field took : 0.000253303 s
rho_t_ampl=0.000845975, rho_t_phi=3.14159 rad
eps_t_ampl=-5.70659e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-7.82576e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 19798.99s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 19445.43696242698, dt = 49.42026815994634 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.72 us (4.2%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 721.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 233.86 us (90.8%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9928813249328103e-22,1.0468917292467837e-22,-1.2876947844622038e-22)
sum a = (1.0666092064434726e-25,1.0237393661801399e-25,1.408792792983499e-25)
sum e = 7.858710606474492e-16
sum de = 2.311115933264683e-33
Info: cfl dt = 49.41957302424125 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3658e+04 | 2592 | 1 | 5.937e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2996666.150793797 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19494.857230586924, dt = 49.41957302424125 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (1.8%)
patch tree reduce : 802.00 ns (0.4%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 190.83 us (92.7%)
LB move op cnt : 0
LB apply : 2.92 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (59.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9384506574649212e-22,1.1119714390785815e-22,-1.1514720406280925e-22)
sum a = (-9.832411854884997e-26,1.2875716798406484e-25,1.0458172038022438e-25)
sum e = 7.858585772900601e-16
sum de = 0
Info: cfl dt = 49.4189296521574 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3875e+04 | 2592 | 1 | 5.908e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3011481.531432441 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19544.276803611167, dt = 49.4189296521574 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (1.8%)
patch tree reduce : 1.20 us (0.5%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 209.21 us (93.1%)
LB move op cnt : 0
LB apply : 2.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0596359171104103e-22,1.182146000597011e-22,-1.1087579231220367e-22)
sum a = (-1.2448788692975648e-25,-1.2203028346898035e-25,1.8181558743095688e-25)
sum e = 7.858483865142715e-16
sum de = 2.850376317693109e-32
Info: cfl dt = 49.41832325985139 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4756e+04 | 2592 | 1 | 5.791e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3071968.3952227477 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19593.695733263325, dt = 49.41832325985139 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (1.8%)
patch tree reduce : 1.33 us (0.7%)
gen split merge : 541.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 701.00 ns (0.4%)
LB compute : 181.01 us (93.4%)
LB move op cnt : 0
LB apply : 2.39 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1032831504573026e-22,1.0598535133408837e-22,-9.998236331760251e-23)
sum a = (8.709137467281151e-26,-1.4663246852504419e-25,4.5809478772858986e-26)
sum e = 7.858383359190174e-16
sum de = -3.851859888774472e-33
Info: cfl dt = 49.417754243572155 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4344e+04 | 2592 | 1 | 5.845e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3043651.1622468135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19643.114056523176, dt = 49.417754243572155 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.10 us (2.0%)
patch tree reduce : 551.00 ns (0.3%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 194.77 us (93.4%)
LB move op cnt : 0
LB apply : 2.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (56.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.007515985525592e-22,9.813065459405641e-23,-1.0107915867505839e-22)
sum a = (6.554105466956364e-26,-1.7189757234266083e-27,6.853607075273809e-27)
sum e = 7.858284643129954e-16
sum de = 2.69630192214213e-32
Info: cfl dt = 49.41722285316913 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3719e+04 | 2592 | 1 | 5.929e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3000706.7997818785 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19692.531810766748, dt = 49.41722285316913 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (1.9%)
patch tree reduce : 951.00 ns (0.5%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.6%)
LB compute : 179.20 us (92.1%)
LB move op cnt : 0
LB apply : 3.30 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9705442113964597e-22,1.0162173121531554e-22,-1.0170302829381615e-22)
sum a = (3.12573664130878e-25,-6.164782097951353e-26,4.783520956308631e-26)
sum e = 7.858187910201519e-16
sum de = 3.928897086549961e-32
Info: cfl dt = 49.416729322643164 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4753e+04 | 2592 | 1 | 5.792e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3071594.6162201203 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19741.949033619916, dt = 49.416729322643164 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (2.0%)
patch tree reduce : 1.52 us (0.8%)
gen split merge : 971.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 661.00 ns (0.3%)
LB compute : 178.25 us (93.1%)
LB move op cnt : 0
LB apply : 2.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (59.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7892798187911305e-22,9.70970415727488e-23,-9.832657019923396e-23)
sum a = (6.19932125747881e-26,8.863998071525695e-26,-1.5225904415075517e-25)
sum e = 7.858093352178847e-16
sum de = 5.623715437610729e-32
Info: cfl dt = 49.416273868338365 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4555e+04 | 2592 | 1 | 5.818e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3058004.8738848823 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19791.365762942558, dt = 7.62459880127426 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (1.8%)
patch tree reduce : 651.00 ns (0.3%)
gen split merge : 580.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.4%)
LB compute : 181.40 us (93.6%)
LB move op cnt : 0
LB apply : 2.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.845507725279186e-22,1.0149105027540055e-22,-1.0443148611215732e-22)
sum a = (-2.6966107229194984e-26,-2.312096294033014e-26,-5.955126151804509e-26)
sum e = 7.857121068093085e-16
sum de = -1.771855548836257e-32
Info: cfl dt = 49.41622312798173 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4611e+04 | 2592 | 1 | 5.810e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 472414.60703289625 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 452 [SPH][rank=0]
Info: time since start : 52.827216311 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000294955 s
sph::RenderFieldGetter compute custom field took : 0.000261955 s
rho_t_ampl=0.000666081, rho_t_phi=3.14159 rad
eps_t_ampl=-5.87176e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-8.70759e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 20152.54s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 19798.990361743832, dt = 49.41622312798173 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.27 us (4.2%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 731.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 242.83 us (90.5%)
LB move op cnt : 0
LB apply : 3.46 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.864763857638109e-22,9.992157519579229e-23,-1.0702085471471782e-22)
sum a = (2.4195530893698896e-25,8.58099537351184e-26,8.131716854706984e-26)
sum e = 7.858023191206982e-16
sum de = 7.241496590896007e-32
Info: cfl dt = 49.415795532418855 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3820e+04 | 2592 | 1 | 5.915e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3007493.9893236593 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19848.406584871813, dt = 49.415795532418855 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (1.6%)
patch tree reduce : 791.00 ns (0.4%)
gen split merge : 711.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 531.00 ns (0.2%)
LB compute : 199.86 us (94.1%)
LB move op cnt : 0
LB apply : 2.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6632163389480477e-22,1.0685027261254334e-22,-9.952190925463466e-23)
sum a = (-2.0297292380022382e-25,9.776359789104298e-26,-6.15440023361963e-27)
sum e = 7.857915482813285e-16
sum de = 4.622231866529366e-32
Info: cfl dt = 49.4154228607417 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4541e+04 | 2592 | 1 | 5.819e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3056986.14613909 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19897.82238040423, dt = 49.4154228607417 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (1.7%)
patch tree reduce : 1.08 us (0.5%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.7%)
LB compute : 187.34 us (92.9%)
LB move op cnt : 0
LB apply : 2.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.887357719605912e-22,1.1197942428493939e-22,-1.0198727012350457e-22)
sum a = (2.083761744816664e-25,2.6266181175915417e-25,1.2266640117626883e-25)
sum e = 7.857829108678642e-16
sum de = 3.0814879110195774e-32
Info: cfl dt = 49.415088730224475 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4370e+04 | 2592 | 1 | 5.842e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3045253.786586292 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19947.237803264972, dt = 49.415088730224475 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.31 us (2.2%)
patch tree reduce : 1.02 us (0.5%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 184.87 us (92.4%)
LB move op cnt : 0
LB apply : 3.04 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6503789173754322e-22,1.2903233416646233e-22,-9.274283183770433e-23)
sum a = (1.9682374872076305e-27,-8.543931765276541e-26,1.9536227807540474e-25)
sum e = 7.857745536205539e-16
sum de = -1.232595164407831e-32
Info: cfl dt = 49.41479338685806 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4578e+04 | 2592 | 1 | 5.815e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3059447.0301797017 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19996.652891995196, dt = 49.41479338685806 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (1.6%)
patch tree reduce : 1.03 us (0.5%)
gen split merge : 481.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 681.00 ns (0.3%)
LB compute : 207.54 us (94.8%)
LB move op cnt : 0
LB apply : 1.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.715336270532866e-22,1.1620674709185921e-22,-8.129290862736763e-23)
sum a = (1.169095457767819e-25,1.0004385332086962e-25,9.869353140799707e-26)
sum e = 7.857665052843986e-16
sum de = -1.5407439555097887e-32
Info: cfl dt = 49.41453695366627 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3365e+04 | 2592 | 1 | 5.977e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2976219.5591830728 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20046.067685382055, dt = 49.41453695366627 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (1.7%)
patch tree reduce : 530.00 ns (0.2%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 202.96 us (93.8%)
LB move op cnt : 0
LB apply : 2.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (62.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6164881244237278e-22,1.2573552383884506e-22,-7.880444654429423e-23)
sum a = (-2.8775130601195375e-25,-3.3910728506010596e-26,4.698549995695108e-26)
sum e = 7.857587816205759e-16
sum de = 4.3140830754274083e-32
Info: cfl dt = 49.41431953773902 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3758e+04 | 2592 | 1 | 5.923e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3003190.4750763965 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20095.482222335722, dt = 49.41431953773902 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (2.1%)
patch tree reduce : 972.00 ns (0.5%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 185.54 us (92.2%)
LB move op cnt : 0
LB apply : 2.72 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8904387007833398e-22,1.2074698204961155e-22,-7.77602542512496e-23)
sum a = (-1.8266372170292215e-25,9.263673883922319e-27,2.0259627927092905e-26)
sum e = 7.857513979545748e-16
sum de = -1.1401505270772436e-31
Info: cfl dt = 49.41414122834626 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4409e+04 | 2592 | 1 | 5.837e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3047817.6706446568 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20144.896541873462, dt = 7.647219187219889 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (1.5%)
patch tree reduce : 1.21 us (0.5%)
gen split merge : 761.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 641.00 ns (0.3%)
LB compute : 215.43 us (94.5%)
LB move op cnt : 0
LB apply : 2.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.848845454888066e-22,1.2188650379889322e-22,-7.826564482604229e-23)
sum a = (8.039059163515242e-26,8.202466410063103e-26,-1.7833916542846389e-25)
sum e = 7.857013272869531e-16
sum de = 1.217187724852733e-31
Info: cfl dt = 49.414134451285825 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4339e+04 | 2592 | 1 | 5.846e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 470926.085735089 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 460 [SPH][rank=0]
Info: time since start : 53.695443733000005 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000302976 s
sph::RenderFieldGetter compute custom field took : 0.00024086500000000002 s
rho_t_ampl=0.000469393, rho_t_phi=3.14159 rad
eps_t_ampl=-5.96276e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.36914e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 20506.10s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 20152.543761060682, dt = 49.414134451285825 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.72 us (4.1%)
patch tree reduce : 1.61 us (0.7%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.4%)
LB compute : 215.59 us (91.0%)
LB move op cnt : 0
LB apply : 2.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8159816556621706e-22,1.262171277325302e-22,-8.783748457601377e-23)
sum a = (-3.702731102128724e-25,-7.617034267141102e-26,-5.341350444905756e-26)
sum e = 7.857460356225118e-16
sum de = -8.320017359752859e-32
Info: cfl dt = 49.41398391850384 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3362e+04 | 2592 | 1 | 5.978e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2975943.475533211 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20201.95789551197, dt = 49.41398391850384 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.76 us (1.9%)
patch tree reduce : 1.21 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.5%)
LB compute : 183.55 us (92.7%)
LB move op cnt : 0
LB apply : 2.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1048236410460164e-22,1.185439601569235e-22,-8.739031192185647e-23)
sum a = (-2.1216847919427986e-25,-5.964423876185229e-26,-4.6994363584296167e-26)
sum e = 7.857380495927403e-16
sum de = -1.1093356479670479e-31
Info: cfl dt = 49.41389017132131 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4621e+04 | 2592 | 1 | 5.809e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3062368.2151582446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20251.371879430473, dt = 49.41389017132131 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 us (1.6%)
patch tree reduce : 1.05 us (0.5%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 620.00 ns (0.3%)
LB compute : 194.33 us (94.5%)
LB move op cnt : 0
LB apply : 1.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.192631604602706e-22,1.1600355477853016e-22,-8.955388858095446e-23)
sum a = (2.888294488393414e-25,5.516512974244358e-26,7.531261890485796e-26)
sum e = 7.857318374265539e-16
sum de = -6.317050217590134e-32
Info: cfl dt = 49.413835620027555 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4590e+04 | 2592 | 1 | 5.813e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3060243.0674289716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20300.785769601793, dt = 49.413835620027555 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (1.9%)
patch tree reduce : 661.00 ns (0.3%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.5%)
LB compute : 183.42 us (93.2%)
LB move op cnt : 0
LB apply : 2.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (58.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8758040401905582e-22,1.215657688442899e-22,-8.281057131032552e-23)
sum a = (-2.6178812234311933e-25,6.188569089303925e-26,1.5175767528533834e-28)
sum e = 7.857260151468736e-16
sum de = 4.468157470978387e-32
Info: cfl dt = 49.41382035748978 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4382e+04 | 2592 | 1 | 5.840e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3045975.847573773 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20350.19960522182, dt = 49.41382035748978 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.48 us (2.2%)
patch tree reduce : 1.18 us (0.6%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 183.87 us (92.1%)
LB move op cnt : 0
LB apply : 2.97 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1772266987155674e-22,1.2479097042969747e-22,-8.466006560475279e-23)
sum a = (1.2159821342146758e-25,-6.423880274507909e-26,-3.27977163465249e-26)
sum e = 7.857206007603871e-16
sum de = -1.09392820841195e-31
Info: cfl dt = 49.41384437933775 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4598e+04 | 2592 | 1 | 5.812e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3060765.5507970136 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20399.61342557931, dt = 49.41384437933775 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (1.8%)
patch tree reduce : 1.06 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 180.76 us (94.0%)
LB move op cnt : 0
LB apply : 2.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9887733500295736e-22,1.1849882859670729e-22,-8.709480655138448e-23)
sum a = (-1.568823179294031e-25,-1.349569054939979e-25,2.129838775382915e-26)
sum e = 7.857156048964995e-16
sum de = -5.39260384428426e-32
Info: cfl dt = 49.41390766542533 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4551e+04 | 2592 | 1 | 5.818e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3057551.5767961154 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20449.02726995865, dt = 49.41390766542533 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (2.0%)
patch tree reduce : 531.00 ns (0.3%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 195.11 us (93.1%)
LB move op cnt : 0
LB apply : 2.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2034150387237026e-22,1.1008349758643376e-22,-8.470582175071629e-23)
sum a = (7.700259048280935e-26,7.341948935661488e-26,-5.368117234925713e-27)
sum e = 7.857110375050522e-16
sum de = 8.16594296420188e-32
Info: cfl dt = 49.41401017789732 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4686e+04 | 2592 | 1 | 5.801e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3066794.701067816 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20498.441177624074, dt = 7.655982753465651 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.04 us (2.1%)
patch tree reduce : 791.00 ns (0.4%)
gen split merge : 681.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 173.76 us (92.5%)
LB move op cnt : 0
LB apply : 2.64 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (59.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.117661062618632e-22,1.1579093498373372e-22,-8.54057680713257e-23)
sum a = (1.791472209694079e-26,-7.404807341205157e-26,4.916703402914206e-26)
sum e = 7.856941365515173e-16
sum de = -9.244463733058732e-33
Info: cfl dt = 49.41404766972712 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5453e+04 | 2592 | 1 | 5.703e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 483319.988632379 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 468 [SPH][rank=0]
Info: time since start : 54.39436057 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000283608 s
sph::RenderFieldGetter compute custom field took : 0.00026493 s
rho_t_ampl=0.000260888, rho_t_phi=3.14159 rad
eps_t_ampl=-5.97731e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.79369e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 20859.65s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 20506.09716037754, dt = 49.41404766972712 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.40 us (3.8%)
patch tree reduce : 1.51 us (0.6%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 226.47 us (90.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0996886724169704e-22,1.1157103381116056e-22,-8.276746581925996e-23)
sum a = (7.222303289046598e-26,-2.5509447451526888e-26,-6.500866379331807e-26)
sum e = 7.85707879300032e-16
sum de = 2.7733391199176196e-32
Info: cfl dt = 49.414177222678674 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.2532e+04 | 2592 | 1 | 6.094e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2919023.244221408 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20555.511208047268, dt = 49.414177222678674 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (1.8%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.6%)
LB compute : 182.29 us (92.7%)
LB move op cnt : 0
LB apply : 2.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.044231011223272e-22,1.1150724787272163e-22,-8.880075714041392e-23)
sum a = (1.9234193406040172e-26,-5.464565433123759e-26,-1.1889625978475637e-26)
sum e = 7.857034714477352e-16
sum de = 1.5407439555097887e-32
Info: cfl dt = 49.41436410375726 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3026e+04 | 2592 | 1 | 6.024e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2952906.9123421395 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20604.925385269948, dt = 49.41436410375726 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (1.9%)
patch tree reduce : 1.04 us (0.5%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 185.77 us (93.1%)
LB move op cnt : 0
LB apply : 2.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.033447577102275e-22,1.0808788028602827e-22,-8.807585867333629e-23)
sum a = (2.4620206338789075e-25,-7.845693676912555e-26,1.6792883155026732e-25)
sum e = 7.857003135959417e-16
sum de = -7.703719777548943e-32
Info: cfl dt = 49.41458992790028 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3983e+04 | 2592 | 1 | 5.893e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3018624.4021038185 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20654.339749373707, dt = 49.41458992790028 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (1.9%)
patch tree reduce : 1.29 us (0.7%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 591.00 ns (0.3%)
LB compute : 180.77 us (93.7%)
LB move op cnt : 0
LB apply : 2.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8809390088196045e-22,1.0362306518001507e-22,-7.533491695875724e-23)
sum a = (1.6089087803471928e-25,-2.2475728786723407e-26,-5.229447341903612e-26)
sum e = 7.856976141645474e-16
sum de = -6.933347799794049e-32
Info: cfl dt = 49.41485463442447 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4249e+04 | 2592 | 1 | 5.858e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3036874.528047321 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20703.754339301606, dt = 49.41485463442447 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (2.0%)
patch tree reduce : 641.00 ns (0.3%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 185.82 us (93.3%)
LB move op cnt : 0
LB apply : 2.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8460212221420905e-22,1.0389485746487279e-22,-8.336016291475119e-23)
sum a = (2.797059785761863e-26,-1.7818553088745666e-25,-3.3804433536283805e-26)
sum e = 7.856953808148812e-16
sum de = -3.235562306570556e-32
Info: cfl dt = 49.41515809288762 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3949e+04 | 2592 | 1 | 5.898e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3016294.925921439 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20753.16919393603, dt = 49.41515809288762 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (1.8%)
patch tree reduce : 881.00 ns (0.4%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 200.05 us (93.3%)
LB move op cnt : 0
LB apply : 2.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.808022454287149e-22,9.124418025919655e-23,-8.457377302569204e-23)
sum a = (8.181662357254011e-26,-7.905166664517641e-26,-4.641543772964601e-27)
sum e = 7.856936179848372e-16
sum de = -2.311115933264683e-32
Info: cfl dt = 49.4155001574425 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6328e+04 | 2592 | 1 | 7.135e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2493279.3507307325 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20802.58435202892, dt = 49.4155001574425 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (1.7%)
patch tree reduce : 1.12 us (0.5%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 204.09 us (92.8%)
LB move op cnt : 0
LB apply : 2.86 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7566727679966876e-22,8.978793524955299e-23,-8.408259282868552e-23)
sum a = (-7.950989938371079e-26,-7.192584088084986e-26,-7.704145238861604e-28)
sum e = 7.856923292576267e-16
sum de = 6.008901426488176e-32
Info: cfl dt = 49.41588066488932 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4015e+04 | 2592 | 1 | 5.889e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3020887.9305086485 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20851.999852186364, dt = 7.650707508029882 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (1.8%)
patch tree reduce : 1.10 us (0.5%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 631.00 ns (0.3%)
LB compute : 198.68 us (93.8%)
LB move op cnt : 0
LB apply : 1.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8039144793839122e-22,8.941304242269021e-23,-8.399284015085335e-23)
sum a = (-1.184742632377507e-25,-5.598039690225232e-26,-4.168289513588365e-26)
sum e = 7.856912966072517e-16
sum de = -7.703719777548943e-33
Info: cfl dt = 49.415961469830634 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4491e+04 | 2592 | 1 | 5.826e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 472758.1736501543 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 476 [SPH][rank=0]
Info: time since start : 55.115833781000006 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00027425400000000003 s
sph::RenderFieldGetter compute custom field took : 0.00021248300000000002 s
rho_t_ampl=4.58393e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-5.91503e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.97053e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 21213.20s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 20859.650559694393, dt = 49.415961469830634 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.97 us (3.9%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.4%)
LB compute : 229.92 us (90.8%)
LB move op cnt : 0
LB apply : 3.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.881452505682509e-22,8.670996284280639e-23,-8.620914520214225e-23)
sum a = (3.35492426320196e-25,-1.3750413790234974e-25,-3.208527535670003e-26)
sum e = 7.8569170279154765e-16
sum de = 2.311115933264683e-32
Info: cfl dt = 49.41599769794556 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.9369e+04 | 2592 | 1 | 6.584e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2702021.417165151 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20909.066521164223, dt = 49.41599769794556 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (2.1%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.5%)
LB compute : 186.18 us (92.2%)
LB move op cnt : 0
LB apply : 2.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5933807655930201e-22,7.789506708608522e-23,-8.755753329070372e-23)
sum a = (-1.7281254420798198e-25,7.421809417553433e-26,7.138225036467779e-26)
sum e = 7.856913085219009e-16
sum de = -7.087422195345028e-32
Info: cfl dt = 49.41555004226069 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4462e+04 | 2592 | 1 | 5.830e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3051573.7999511403 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20958.48251886217, dt = 49.41555004226069 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (1.9%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 570.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 651.00 ns (0.3%)
LB compute : 184.30 us (94.1%)
LB move op cnt : 0
LB apply : 1.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.814697913504909e-22,8.679581309957326e-23,-8.147366461925218e-23)
sum a = (-2.934264430023379e-25,-1.4205093691645122e-25,-3.3819749377822066e-26)
sum e = 7.856915284962713e-16
sum de = 6.317050217590134e-32
Info: cfl dt = 49.41512711160912 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4099e+04 | 2592 | 1 | 5.878e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3026646.06355094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21007.89806890443, dt = 49.41512711160912 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (2.0%)
patch tree reduce : 901.00 ns (0.4%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.5%)
LB compute : 198.68 us (93.4%)
LB move op cnt : 0
LB apply : 2.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.970800959827912e-22,7.443237320158429e-23,-8.574417917504229e-23)
sum a = (-1.0366155237164391e-25,2.656005296007293e-26,-3.799743147642732e-26)
sum e = 7.856922273246216e-16
sum de = 4.1600086798764294e-32
Info: cfl dt = 49.41474419471324 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6573e+04 | 2592 | 1 | 7.087e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2510111.416322537 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21057.31319601604, dt = 49.41474419471324 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 us (1.8%)
patch tree reduce : 801.00 ns (0.4%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 202.97 us (93.2%)
LB move op cnt : 0
LB apply : 2.78 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9856923688521458e-22,7.991355104366691e-23,-8.772503287747388e-23)
sum a = (2.0385204898360238e-25,-1.7814921898218287e-25,3.7763227551927025e-26)
sum e = 7.856934036673764e-16
sum de = 4.622231866529366e-33
Info: cfl dt = 49.41440147286666 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4394e+04 | 2592 | 1 | 5.839e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3046821.8151503615 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21106.727940210752, dt = 49.41440147286666 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (1.8%)
patch tree reduce : 1.11 us (0.5%)
gen split merge : 841.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 195.95 us (93.4%)
LB move op cnt : 0
LB apply : 2.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8177788946823368e-22,6.605254568534753e-23,-8.39871387973543e-23)
sum a = (2.2580980668324674e-25,6.307003318849752e-26,1.6047481158770256e-26)
sum e = 7.85695055250036e-16
sum de = 9.244463733058732e-33
Info: cfl dt = 49.41409910875517 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4600e+04 | 2592 | 1 | 5.812e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3060922.3093929724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21156.14234168362, dt = 49.41409910875517 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (1.7%)
patch tree reduce : 531.00 ns (0.3%)
gen split merge : 631.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 721.00 ns (0.3%)
LB compute : 195.23 us (94.4%)
LB move op cnt : 0
LB apply : 1.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6924856601336107e-22,7.512699805949002e-23,-8.373070227821492e-23)
sum a = (2.21564619300408e-25,1.0526111261157739e-25,-8.9727672458577e-26)
sum e = 7.856971788565792e-16
sum de = 1.3866695599588098e-32
Info: cfl dt = 49.41383724400552 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4707e+04 | 2592 | 1 | 5.798e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3068303.6746254605 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21205.556440792374, dt = 7.6475182188733015 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (1.7%)
patch tree reduce : 901.00 ns (0.4%)
gen split merge : 862.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.4%)
LB compute : 183.40 us (87.0%)
LB move op cnt : 0
LB apply : 2.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6698917981658078e-22,7.697267828762159e-23,-8.703028825011714e-23)
sum a = (5.381781848978635e-26,-2.2442006216569437e-26,-1.0067585632853678e-25)
sum e = 7.856931237482297e-16
sum de = -2.311115933264683e-32
Info: cfl dt = 49.413819544237946 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5616e+04 | 2592 | 1 | 5.682e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 484508.59290060797 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 484 [SPH][rank=0]
Info: time since start : 55.832675931000004 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000297378 s
sph::RenderFieldGetter compute custom field took : 0.00024391900000000002 s
rho_t_ampl=-0.000170315, rho_t_phi=3.14159 rad
eps_t_ampl=-5.77752e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.89522e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 21566.76s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 21213.203959011247, dt = 49.413819544237946 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.23 us (4.1%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 225.12 us (90.7%)
LB move op cnt : 0
LB apply : 3.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6555138860044785e-22,7.537923333492071e-23,-9.204693006500429e-23)
sum a = (-2.5236064087572993e-25,8.800855022759634e-26,-7.214309789534565e-26)
sum e = 7.856991556230316e-16
sum de = -1.5407439555097887e-32
Info: cfl dt = 49.413585455995005 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4429e+04 | 2592 | 1 | 5.834e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3049156.021760891 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21262.617778555486, dt = 49.413585455995005 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.9%)
patch tree reduce : 641.00 ns (0.3%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.5%)
LB compute : 179.30 us (92.8%)
LB move op cnt : 0
LB apply : 2.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8691285809727983e-22,8.245385612970421e-23,-9.490682290976129e-23)
sum a = (6.928321320415904e-26,-6.843173208083045e-26,2.9735959554388385e-26)
sum e = 7.857028071668046e-16
sum de = 1.232595164407831e-32
Info: cfl dt = 49.41341122812072 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4894e+04 | 2592 | 1 | 5.774e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3081078.4946256164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21312.03136401148, dt = 49.41341122812072 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (2.0%)
patch tree reduce : 792.00 ns (0.4%)
gen split merge : 741.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.6%)
LB compute : 188.82 us (92.7%)
LB move op cnt : 0
LB apply : 2.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7710506801580169e-22,7.52070313596068e-23,-9.092036295630045e-23)
sum a = (-1.8359142599625568e-25,2.224369865027646e-26,-7.647658080963759e-26)
sum e = 7.857063885798055e-16
sum de = -4.0059342843254506e-32
Info: cfl dt = 49.4132778213845 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4614e+04 | 2592 | 1 | 5.810e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3061831.7752402457 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21361.4447752396, dt = 49.4132778213845 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (1.7%)
patch tree reduce : 1.18 us (0.6%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 531.00 ns (0.3%)
LB compute : 199.53 us (94.2%)
LB move op cnt : 0
LB apply : 2.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9066138519648353e-22,7.854435979906266e-23,-9.732348345796972e-23)
sum a = (1.3263664085768618e-26,-1.4642000837530668e-25,-1.436156777146196e-25)
sum e = 7.85710418772647e-16
sum de = 4.3140830754274083e-32
Info: cfl dt = 49.41318527805 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3944e+04 | 2592 | 1 | 5.898e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3015852.4884377047 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21410.858053060987, dt = 49.41318527805 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (1.8%)
patch tree reduce : 721.00 ns (0.4%)
gen split merge : 13.47 us (6.5%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.4%)
LB compute : 180.31 us (87.6%)
LB move op cnt : 0
LB apply : 2.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8516696876340414e-22,6.714172067189912e-23,-1.0607877297373742e-22)
sum a = (2.2738784422275157e-25,2.7655568206065913e-27,3.582790046064922e-26)
sum e = 7.857148898074702e-16
sum de = 3.0814879110195774e-32
Info: cfl dt = 49.413133628143214 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.2950e+04 | 2592 | 1 | 6.035e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2947652.9221903495 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21460.271238339035, dt = 49.413133628143214 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (2.0%)
patch tree reduce : 832.00 ns (0.4%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 183.17 us (92.7%)
LB move op cnt : 0
LB apply : 2.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6683513075770938e-22,7.0965868207554e-23,-9.987496475299287e-23)
sum a = (-3.294133775365573e-25,3.294393321013518e-26,-4.667831071405137e-27)
sum e = 7.857197930033273e-16
sum de = 3.697785493223493e-32
Info: cfl dt = 49.4131228827378 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3987e+04 | 2592 | 1 | 5.893e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3018776.521378107 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21509.684371967178, dt = 49.4131228827378 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 us (1.7%)
patch tree reduce : 1.07 us (0.5%)
gen split merge : 641.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 200.15 us (93.7%)
LB move op cnt : 0
LB apply : 2.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9718279535537212e-22,7.334079119848784e-23,-1.0110612736011415e-22)
sum a = (5.32803141441556e-27,2.3178724089717117e-26,-1.8612262238957475e-26)
sum e = 7.857251187473822e-16
sum de = -3.0814879110195774e-32
Info: cfl dt = 49.413153031665445 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7279e+04 | 2592 | 1 | 6.953e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2558451.798379828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21559.097494849917, dt = 7.659863478183979 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (2.0%)
patch tree reduce : 991.00 ns (0.5%)
gen split merge : 902.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 197.21 us (93.3%)
LB move op cnt : 0
LB apply : 2.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.926640229618115e-22,7.327740642947305e-23,-1.0159321369328733e-22)
sum a = (-1.9770130683607853e-26,-1.2852279336688292e-25,-1.2641458533434182e-25)
sum e = 7.85699464353243e-16
sum de = -4.3140830754274083e-32
Info: cfl dt = 49.41317990369704 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4004e+04 | 2592 | 1 | 5.890e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 468146.8649451051 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 492 [SPH][rank=0]
Info: time since start : 56.543662836 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000288395 s
sph::RenderFieldGetter compute custom field took : 0.00021231300000000003 s
rho_t_ampl=-0.000382108, rho_t_phi=3.14159 rad
eps_t_ampl=-5.56829e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.56968e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 21920.31s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 21566.7573583281, dt = 49.41317990369704 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.65 us (3.8%)
patch tree reduce : 1.41 us (0.5%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 253.48 us (91.4%)
LB move op cnt : 0
LB apply : 3.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8711825684244168e-22,6.634499819554868e-23,-1.0825263587962757e-22)
sum a = (4.417878283388337e-26,6.176606116195937e-26,6.54390054002446e-26)
sum e = 7.857295104677191e-16
sum de = 2.311115933264683e-32
Info: cfl dt = 49.413238840591895 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3994e+04 | 2592 | 1 | 5.892e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3019279.684364215 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21616.1705382318, dt = 49.413238840591895 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.98 us (1.9%)
patch tree reduce : 1.48 us (0.7%)
gen split merge : 871.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.5%)
LB compute : 191.15 us (92.9%)
LB move op cnt : 0
LB apply : 2.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8701555746986074e-22,7.410100725724116e-23,-1.0027903467922781e-22)
sum a = (-3.759709696901709e-26,9.327296847282693e-26,-3.8981195836946636e-26)
sum e = 7.857368331123671e-16
sum de = 1.0322984501915584e-31
Info: cfl dt = 49.41335693836554 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4366e+04 | 2592 | 1 | 5.842e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3044827.9372488945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21665.583777072392, dt = 49.41335693836554 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.70 us (1.8%)
patch tree reduce : 631.00 ns (0.3%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.4%)
LB compute : 195.05 us (93.9%)
LB move op cnt : 0
LB apply : 1.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8930061850978627e-22,7.948610502224123e-23,-1.0478509659476336e-22)
sum a = (1.6898008337625254e-25,2.7383975722386234e-26,-5.899905271722669e-26)
sum e = 7.85743422198415e-16
sum de = -1.5407439555097887e-32
Info: cfl dt = 49.41351580643057 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4493e+04 | 2592 | 1 | 5.826e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3053534.639197043 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21714.99713401076, dt = 49.41351580643057 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (1.8%)
patch tree reduce : 932.00 ns (0.5%)
gen split merge : 681.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 180.59 us (92.9%)
LB move op cnt : 0
LB apply : 2.53 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8131574229161952e-22,7.921491449151974e-23,-1.0819502197235674e-22)
sum a = (-8.434587142632444e-26,1.0144351444100858e-25,-3.963583706851927e-28)
sum e = 7.857503829800177e-16
sum de = -7.703719777548943e-33
Info: cfl dt = 49.41371530204433 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4066e+04 | 2592 | 1 | 5.882e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3024229.4974367223 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21764.41064981719, dt = 49.41371530204433 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (2.1%)
patch tree reduce : 1.35 us (0.7%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.4%)
LB compute : 187.68 us (92.6%)
LB move op cnt : 0
LB apply : 2.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8863307258801029e-22,8.605435171139868e-23,-1.0676672493034515e-22)
sum a = (6.575417592614026e-27,-6.897454976661252e-26,-1.341561651408164e-26)
sum e = 7.857577039014271e-16
sum de = -1.6948183510607676e-32
Info: cfl dt = 49.41395530406803 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3903e+04 | 2592 | 1 | 5.904e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3013074.749116219 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21813.824365119235, dt = 49.41395530406803 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (1.6%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 551.00 ns (0.2%)
LB compute : 210.19 us (94.7%)
LB move op cnt : 0
LB apply : 2.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8578316499888966e-22,7.843614434689974e-23,-1.0775130856281535e-22)
sum a = (1.3655431101534468e-25,1.2352629478955921e-25,1.0474459235321768e-25)
sum e = 7.857653707415591e-16
sum de = 1.8488927466117464e-32
Info: cfl dt = 49.41423567265682 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3572e+04 | 2592 | 1 | 7.721e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2304092.0679013287 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21863.238320423305, dt = 49.41423567265682 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (1.8%)
patch tree reduce : 651.00 ns (0.3%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 199.04 us (93.6%)
LB move op cnt : 0
LB apply : 2.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.746146082307143e-22,8.92998123527255e-23,-9.965605295099917e-23)
sum a = (3.247466488447545e-25,-1.3380116831205017e-26,1.221634258486337e-25)
sum e = 7.857733684515309e-16
sum de = 1.2634100435180267e-31
Info: cfl dt = 49.41455624720363 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4663e+04 | 2592 | 1 | 7.478e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2378949.6491674283 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21912.65255609596, dt = 7.658201548994839 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (1.8%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 196.86 us (92.7%)
LB move op cnt : 0
LB apply : 2.74 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.68349946503278e-22,8.581044070151899e-23,-9.829013164218821e-23)
sum a = (1.0797098954506825e-25,-2.5723314519256375e-25,5.936055354199194e-26)
sum e = 7.857097073102166e-16
sum de = 7.549645381997965e-32
Info: cfl dt = 49.41462690070025 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.0185e+04 | 2592 | 1 | 6.450e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 427418.276418953 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 500 [SPH][rank=0]
Info: time since start : 57.28607551 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000303377 s
sph::RenderFieldGetter compute custom field took : 0.000238191 s
rho_t_ampl=-0.000584184, rho_t_phi=3.14159 rad
eps_t_ampl=-5.29262e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.00216e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 22273.86s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 21920.310757644955, dt = 49.41462690070025 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.14 us (4.4%)
patch tree reduce : 1.83 us (0.8%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.4%)
LB compute : 206.69 us (90.1%)
LB move op cnt : 0
LB apply : 3.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6398522316858877e-22,7.216706975579786e-23,-9.559733056329139e-23)
sum a = (-2.87337600043305e-26,-1.0508361766799698e-25,8.116417074691724e-26)
sum e = 7.857797431688625e-16
sum de = -8.628166150854817e-32
Info: cfl dt = 49.41497650368076 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3492e+04 | 2592 | 1 | 5.960e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2984949.2585924133 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21969.725384545654, dt = 49.41497650368076 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (1.9%)
patch tree reduce : 1.14 us (0.6%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 571.00 ns (0.3%)
LB compute : 184.57 us (93.5%)
LB move op cnt : 0
LB apply : 2.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7063500754320354e-22,7.073559695809521e-23,-9.10478961682458e-23)
sum a = (-3.067692440252912e-26,3.204277113211978e-26,-9.502250825477912e-26)
sum e = 7.857899953962536e-16
sum de = -8.474091755303838e-33
Info: cfl dt = 49.41538300172288 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4657e+04 | 2592 | 1 | 5.804e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3064918.4756908715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22019.140361049336, dt = 49.41538300172288 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (1.7%)
patch tree reduce : 531.00 ns (0.3%)
gen split merge : 441.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 196.66 us (93.7%)
LB move op cnt : 0
LB apply : 2.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7055798301376783e-22,7.5702676183137e-23,-1.0009660010900941e-22)
sum a = (-1.001983319522738e-25,-4.445473372561344e-26,-4.02077060071194e-26)
sum e = 7.857989378548501e-16
sum de = -7.934831370875412e-32
Info: cfl dt = 49.41582914302726 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4292e+04 | 2592 | 1 | 5.852e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3039876.2980207815 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22068.55574405106, dt = 49.41582914302726 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (2.0%)
patch tree reduce : 902.00 ns (0.5%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 181.90 us (92.6%)
LB move op cnt : 0
LB apply : 2.69 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (63.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.75692951642814e-22,7.161857086063666e-23,-1.0072915001567999e-22)
sum a = (-8.574996441082924e-26,-5.226583345682993e-26,3.7301375458454834e-26)
sum e = 7.858081356123671e-16
sum de = -3.6207482954480034e-32
Info: cfl dt = 49.4163146053074 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7182e+04 | 2592 | 1 | 6.971e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2551910.2693966096 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22117.97157319409, dt = 49.4163146053074 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (1.8%)
patch tree reduce : 1.18 us (0.5%)
gen split merge : 782.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 204.80 us (93.2%)
LB move op cnt : 0
LB apply : 2.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8018604919322937e-22,6.88430801996948e-23,-9.697076574743873e-23)
sum a = (9.729612189948038e-26,-2.8326395764249473e-25,6.684089538256013e-27)
sum e = 7.858175768307539e-16
sum de = -4.3140830754274083e-32
Info: cfl dt = 49.41683912106939 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.2891e+04 | 2592 | 1 | 6.043e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2943795.1790204532 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22167.387887799396, dt = 49.41683912106939 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (1.8%)
patch tree reduce : 992.00 ns (0.5%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.3%)
LB compute : 182.44 us (94.2%)
LB move op cnt : 0
LB apply : 2.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (58.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.702755597391703e-22,4.9138641009290565e-23,-9.739695588675315e-23)
sum a = (-2.6612576674167886e-25,3.5874203575432825e-26,-1.5608287497943024e-25)
sum e = 7.858272431630753e-16
sum de = -4.622231866529366e-33
Info: cfl dt = 49.41740240493685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4081e+04 | 2592 | 1 | 5.880e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3025480.6285877465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22216.804726920465, dt = 49.41740240493685 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (1.9%)
patch tree reduce : 741.00 ns (0.4%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.4%)
LB compute : 192.34 us (93.6%)
LB move op cnt : 0
LB apply : 2.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9423018839367058e-22,5.879639372613877e-23,-1.0913188057803046e-22)
sum a = (9.356023163713724e-26,-1.0240256009560337e-25,4.888793294578546e-27)
sum e = 7.858371156227899e-16
sum de = 4.0059342843254506e-32
Info: cfl dt = 49.418004151887764 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4815e+04 | 2592 | 1 | 5.784e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3075900.575056426 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22266.2221293254, dt = 7.6420276364115125 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (2.0%)
patch tree reduce : 1.25 us (0.6%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.7%)
LB compute : 177.77 us (92.3%)
LB move op cnt : 0
LB apply : 2.68 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8272785866460721e-22,5.459554810121246e-23,-1.0511711943112349e-22)
sum a = (1.3872940148687667e-25,-8.688834141689086e-26,8.628996805866399e-26)
sum e = 7.857228408303871e-16
sum de = 5.46964104205975e-32
Info: cfl dt = 49.41811639158962 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5767e+04 | 2592 | 1 | 5.664e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 485764.0252719103 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 508 [SPH][rank=0]
Info: time since start : 57.999361973000006 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000278801 s
sph::RenderFieldGetter compute custom field took : 0.000238812 s
rho_t_ampl=-0.000771434, rho_t_phi=3.14159 rad
eps_t_ampl=-4.95749e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-8.20705e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 22627.42s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 22273.864156961812, dt = 49.41811639158962 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.02 us (4.0%)
patch tree reduce : 1.55 us (0.6%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.4%)
LB compute : 225.02 us (90.6%)
LB move op cnt : 0
LB apply : 3.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7566727679966876e-22,5.036160599879425e-23,-1.0054179673257913e-22)
sum a = (-3.410566932451184e-25,1.6757834099384233e-27,-1.7126803792828588e-25)
sum e = 7.858448409010146e-16
sum de = -7.703719777548943e-34
Info: cfl dt = 49.41874663805737 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4121e+04 | 2592 | 1 | 5.875e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3028269.195765045 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22323.2822733534, dt = 49.41874663805737 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (1.8%)
patch tree reduce : 791.00 ns (0.4%)
gen split merge : 641.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.5%)
LB compute : 181.03 us (93.6%)
LB move op cnt : 0
LB apply : 2.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0657978794652657e-22,5.2632024354738524e-23,-1.153696642648669e-22)
sum a = (1.5018780316399625e-25,1.3945387664078167e-25,-4.7006932680360564e-26)
sum e = 7.858569884698699e-16
sum de = 2.619264724366641e-32
Info: cfl dt = 49.419430025354664 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4700e+04 | 2592 | 1 | 5.799e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3068078.2019874295 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22372.70101999146, dt = 49.419430025354664 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (1.6%)
patch tree reduce : 1.32 us (0.6%)
gen split merge : 772.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 217.12 us (93.7%)
LB move op cnt : 0
LB apply : 2.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8657908513639182e-22,6.292994318016488e-23,-1.1462230604657403e-22)
sum a = (2.1224369846130688e-26,-1.048735815766695e-25,-5.458183569385331e-26)
sum e = 7.858673947804022e-16
sum de = -1.0014835710813626e-32
Info: cfl dt = 49.42015089520526 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3781e+04 | 2592 | 1 | 5.920e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3005053.7328336495 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22422.120450016813, dt = 49.42015089520526 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (1.8%)
patch tree reduce : 641.00 ns (0.3%)
gen split merge : 751.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 721.00 ns (0.3%)
LB compute : 200.50 us (94.1%)
LB move op cnt : 0
LB apply : 2.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (58.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8971141600010997e-22,5.1709535263918866e-23,-1.1750692229741145e-22)
sum a = (-1.1650210808038541e-25,3.750047742875384e-26,8.386668266180348e-26)
sum e = 7.858779122732385e-16
sum de = 3.004450713244088e-32
Info: cfl dt = 49.420908756722085 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4396e+04 | 2592 | 1 | 5.838e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3047334.411365166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22471.54060091202, dt = 49.420908756722085 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (2.0%)
patch tree reduce : 821.00 ns (0.4%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 183.52 us (92.9%)
LB move op cnt : 0
LB apply : 2.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9684902239448413e-22,5.70819961920584e-23,-1.0994108129167892e-22)
sum a = (3.8473401429882143e-25,2.832426553110125e-26,8.655621481817711e-27)
sum e = 7.858885321881834e-16
sum de = -1.9259299443872359e-32
Info: cfl dt = 49.4217032053028 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4046e+04 | 2592 | 1 | 5.885e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3023355.9695262276 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22520.96150966874, dt = 49.4217032053028 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (1.8%)
patch tree reduce : 1.21 us (0.5%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.4%)
LB compute : 211.37 us (93.3%)
LB move op cnt : 0
LB apply : 2.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6824724713069707e-22,5.825311003349144e-23,-1.1137180523178223e-22)
sum a = (-2.7236896590492343e-25,1.6203087107972093e-25,-3.996218074366874e-26)
sum e = 7.858992338748043e-16
sum de = -2.1570415377137042e-32
Info: cfl dt = 49.42253381981178 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3751e+04 | 2592 | 1 | 7.680e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2316680.3457854916 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22570.383212874043, dt = 49.42253381981178 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (2.1%)
patch tree reduce : 1.17 us (0.5%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 200.27 us (92.7%)
LB move op cnt : 0
LB apply : 2.75 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9505178337431797e-22,6.956859510325964e-23,-1.1454822475713358e-22)
sum a = (1.0788950200578895e-25,-4.04425987462784e-27,1.5607815061028155e-25)
sum e = 7.859099962979541e-16
sum de = -2.7733391199176196e-32
Info: cfl dt = 49.4234001611555 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6279e+04 | 2592 | 1 | 7.145e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2490276.676522817 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22619.805746693855, dt = 7.611809584806906 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (1.8%)
patch tree reduce : 1.12 us (0.5%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.3%)
LB compute : 201.56 us (93.2%)
LB move op cnt : 0
LB apply : 2.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8501291970453274e-22,6.543093366263605e-23,-1.0851578264115837e-22)
sum a = (2.5218512925266683e-25,3.220530547278564e-26,1.0148963754725672e-25)
sum e = 7.857375574175024e-16
sum de = 1.5407439555097887e-33
Info: cfl dt = 49.423550486202124 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5142e+04 | 2592 | 1 | 5.742e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 477238.209537024 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 516 [SPH][rank=0]
Info: time since start : 58.730560770000004 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00030504 s
sph::RenderFieldGetter compute custom field took : 0.00024271700000000001 s
rho_t_ampl=-0.000939122, rho_t_phi=3.14159 rad
eps_t_ampl=-4.57138e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-7.20446e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 22980.97s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 22627.417556278662, dt = 49.423550486202124 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.75 us (3.6%)
patch tree reduce : 1.52 us (0.6%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 248.51 us (91.5%)
LB move op cnt : 0
LB apply : 3.60 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7186740001417462e-22,6.716117738897011e-23,-1.0370756309948841e-22)
sum a = (9.302116022344342e-26,-1.401850118339547e-26,-1.4725446121657777e-26)
sum e = 7.85918303793606e-16
sum de = -6.933347799794049e-33
Info: cfl dt = 49.42444405600815 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4361e+04 | 2592 | 1 | 5.843e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3045101.0916669164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22676.841106764863, dt = 49.42444405600815 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.56 us (1.8%)
patch tree reduce : 681.00 ns (0.4%)
gen split merge : 611.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 721.00 ns (0.4%)
LB compute : 181.78 us (93.8%)
LB move op cnt : 0
LB apply : 1.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7148227736699616e-22,6.532713107413873e-23,-1.0730724111500288e-22)
sum a = (5.129954011244346e-26,-2.2677286794975314e-26,-9.372722820568691e-26)
sum e = 7.859311228050957e-16
sum de = 5.238529448733282e-32
Info: cfl dt = 49.425385646918755 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4277e+04 | 2592 | 1 | 5.854e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3039384.0584098073 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22726.26555082087, dt = 49.425385646918755 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (1.8%)
patch tree reduce : 951.00 ns (0.5%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.5%)
LB compute : 183.59 us (93.1%)
LB move op cnt : 0
LB apply : 2.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7063500754320354e-22,6.39919389382307e-23,-1.138920550941552e-22)
sum a = (1.0330112671713933e-25,5.969603770696807e-26,-3.4091829379550257e-26)
sum e = 7.859419569021888e-16
sum de = 3.697785493223493e-32
Info: cfl dt = 49.42636159950407 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.0522e+04 | 2592 | 1 | 6.396e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2781710.621727523 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22775.69093646779, dt = 49.42636159950407 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (2.0%)
patch tree reduce : 1.08 us (0.6%)
gen split merge : 852.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.4%)
LB compute : 178.59 us (92.3%)
LB move op cnt : 0
LB apply : 2.78 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.64010898011734e-22,6.897877575741159e-23,-1.141033388880605e-22)
sum a = (1.0958193551389743e-25,-1.2551514901597153e-25,4.675426594153198e-26)
sum e = 7.859527446884609e-16
sum de = 1.5407439555097887e-33
Info: cfl dt = 49.42737127009452 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4687e+04 | 2592 | 1 | 5.800e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3067668.276670551 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22825.117298067293, dt = 49.42737127009452 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (2.0%)
patch tree reduce : 861.00 ns (0.4%)
gen split merge : 621.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.3%)
LB compute : 193.89 us (93.8%)
LB move op cnt : 0
LB apply : 2.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (53.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5695031614679555e-22,5.819694631411125e-23,-1.0979443425629068e-22)
sum a = (-5.953604985190469e-26,4.9966454899546214e-26,-1.2925945984006798e-26)
sum e = 7.859634835351324e-16
sum de = -1.3866695599588098e-32
Info: cfl dt = 49.428414130120814 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4462e+04 | 2592 | 1 | 5.830e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3052289.7622906496 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22874.54466933739, dt = 49.428414130120814 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.82 us (2.0%)
patch tree reduce : 781.00 ns (0.4%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 751.00 ns (0.4%)
LB compute : 173.38 us (93.0%)
LB move op cnt : 0
LB apply : 2.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (59.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6308660365850568e-22,6.500418968770262e-23,-1.1190826126357015e-22)
sum a = (3.5967346183431156e-26,-3.86842994086443e-26,-7.429795679018558e-26)
sum e = 7.859741525420557e-16
sum de = 1.5407439555097887e-33
Info: cfl dt = 49.42948963627401 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4526e+04 | 2592 | 1 | 5.821e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3056754.6143995086 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22923.97308346751, dt = 49.42948963627401 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.76 us (1.6%)
patch tree reduce : 951.00 ns (0.4%)
gen split merge : 831.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 214.34 us (93.6%)
LB move op cnt : 0
LB apply : 2.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (60.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5969752436333524e-22,6.0899825309283e-23,-1.170975319317908e-22)
sum a = (-2.1358510872328915e-25,-1.7364024997054128e-25,-7.406343009348416e-26)
sum e = 7.859847307186457e-16
sum de = -1.3866695599588098e-32
Info: cfl dt = 49.4305972294512 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.2639e+04 | 2592 | 1 | 6.079e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2927263.230673472 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22973.402573103784, dt = 7.568382491732336 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (1.6%)
patch tree reduce : 1.33 us (0.6%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 531.00 ns (0.2%)
LB compute : 207.93 us (94.0%)
LB move op cnt : 0
LB apply : 2.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6963368866053953e-22,5.625042212198543e-23,-1.176522760319202e-22)
sum a = (1.649057064122877e-25,-1.3052966887602045e-25,1.4310175567792057e-25)
sum e = 7.857523894737936e-16
sum de = -3.004450713244088e-32
Info: cfl dt = 49.4307809965383 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5743e+04 | 2592 | 1 | 7.252e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 375717.7401266162 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 524 [SPH][rank=0]
Info: time since start : 59.591638841000005 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000318829 s
sph::RenderFieldGetter compute custom field took : 0.00024999800000000003 s
rho_t_ampl=-0.00108301, rho_t_phi=3.14159 rad
eps_t_ampl=-4.14408e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-6.01978e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 23334.52s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 22980.970955595516, dt = 49.4307809965383 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.13 us (3.6%)
patch tree reduce : 1.49 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 260.58 us (91.8%)
LB move op cnt : 0
LB apply : 3.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5944077593188293e-22,4.996224183705867e-23,-1.0975684989187736e-22)
sum a = (3.431879058108846e-25,-1.6989613260086705e-25,-1.847678806795616e-26)
sum e = 7.85992794540151e-16
sum de = -7.626682579773454e-32
Info: cfl dt = 49.43191385496457 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.2628e+04 | 2592 | 1 | 6.080e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2926611.149858021 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23030.401736592055, dt = 49.43191385496457 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (1.7%)
patch tree reduce : 821.00 ns (0.4%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 213.55 us (93.6%)
LB move op cnt : 0
LB apply : 2.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.389522511019888e-22,4.059042262726927e-23,-1.1466366969279223e-22)
sum a = (1.2724592672074808e-25,-9.163645970621902e-26,5.015223254370018e-26)
sum e = 7.860049933628336e-16
sum de = -2.850376317693109e-32
Info: cfl dt = 49.43308841058563 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3592e+04 | 2592 | 1 | 5.946e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2992817.6180283865 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23079.83365044702, dt = 49.43308841058563 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.05 us (1.7%)
patch tree reduce : 1.12 us (0.5%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.4%)
LB compute : 224.73 us (93.9%)
LB move op cnt : 0
LB apply : 2.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.379509322193248e-22,3.7994204552741865e-23,-1.1048825803006366e-22)
sum a = (5.191383079316432e-26,-9.342497407494407e-26,-1.64870256598635e-26)
sum e = 7.860151759066771e-16
sum de = 1.771855548836257e-32
Info: cfl dt = 49.434293347065726 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4048e+04 | 2592 | 1 | 5.884e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3024216.0812434675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23129.266738857605, dt = 49.434293347065726 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (1.8%)
patch tree reduce : 982.00 ns (0.5%)
gen split merge : 711.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 188.35 us (93.7%)
LB move op cnt : 0
LB apply : 2.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (55.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3558884664996357e-22,3.3332415259473836e-23,-1.1295037466414865e-22)
sum a = (1.074131133146177e-25,2.9226847764548796e-26,5.612130935576333e-26)
sum e = 7.860251569563664e-16
sum de = 8.474091755303838e-33
Info: cfl dt = 49.43552788779703 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4399e+04 | 2592 | 1 | 5.838e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3048385.918187176 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23178.70103220467, dt = 49.43552788779703 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.76 us (1.6%)
patch tree reduce : 771.00 ns (0.3%)
gen split merge : 751.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 213.36 us (93.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.288363629027679e-22,3.780936574056741e-23,-1.0838131724409175e-22)
sum a = (1.1879629572471022e-25,-3.7665068546252465e-26,-2.199105261325016e-26)
sum e = 7.860349424596545e-16
sum de = -1.3096323621833204e-32
Info: cfl dt = 49.43679139655482 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3655e+04 | 2592 | 1 | 5.937e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2997402.878101045 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23228.136560092466, dt = 49.43679139655482 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (1.9%)
patch tree reduce : 1.07 us (0.5%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.4%)
LB compute : 185.22 us (92.7%)
LB move op cnt : 0
LB apply : 2.70 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2244332695960542e-22,3.429366734590143e-23,-1.113992472489868e-22)
sum a = (2.1964025971896613e-26,8.84521774020742e-27,1.7071093149474727e-26)
sum e = 7.860445133486763e-16
sum de = -1.0014835710813626e-32
Info: cfl dt = 49.43808322451805 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4631e+04 | 2592 | 1 | 5.808e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3064470.127011944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23277.57335148902, dt = 49.43808322451805 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.16 us (2.0%)
patch tree reduce : 1.12 us (0.5%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 541.00 ns (0.3%)
LB compute : 197.09 us (93.6%)
LB move op cnt : 0
LB apply : 2.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2472838799953097e-22,3.588024227221384e-23,-1.095897315493297e-22)
sum a = (2.712908230775358e-26,1.4725327233240215e-25,-8.74099000553507e-26)
sum e = 7.860538507708883e-16
sum de = -2.311115933264683e-33
Info: cfl dt = 49.43940270960127 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4645e+04 | 2592 | 1 | 5.806e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3065480.572777534 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23327.01143471354, dt = 7.512920198834763 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (1.8%)
patch tree reduce : 671.00 ns (0.4%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.6%)
LB compute : 175.95 us (93.3%)
LB move op cnt : 0
LB apply : 2.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2548579587231526e-22,4.040713834661337e-23,-1.1282910517174554e-22)
sum a = (-7.499360922596207e-26,-7.712736827733077e-26,3.466770352173868e-26)
sum e = 7.857658609943337e-16
sum de = 6.933347799794049e-33
Info: cfl dt = 49.439614343931375 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6195e+04 | 2592 | 1 | 5.611e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 482027.83186214755 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 532 [SPH][rank=0]
Info: time since start : 60.296409111 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00029577600000000004 s
sph::RenderFieldGetter compute custom field took : 0.000252672 s
rho_t_ampl=-0.00119946, rho_t_phi=3.14159 rad
eps_t_ampl=-3.6864e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-4.68295e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 23688.08s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 23334.524354912373, dt = 49.439614343931375 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.23 us (4.0%)
patch tree reduce : 1.53 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.4%)
LB compute : 231.17 us (90.9%)
LB move op cnt : 0
LB apply : 3.57 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.283485408830085e-22,3.575201849502174e-23,-1.1065656763258713e-22)
sum a = (2.0813171186382854e-25,6.736923544863498e-27,5.211140706604013e-26)
sum e = 7.860608714953051e-16
sum de = 2.1570415377137042e-32
Info: cfl dt = 49.44095650763085 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1860e+04 | 2592 | 1 | 8.136e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2187711.1149354405 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23383.963969256303, dt = 49.44095650763085 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.32 us (2.0%)
patch tree reduce : 871.00 ns (0.4%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 201.38 us (93.1%)
LB move op cnt : 0
LB apply : 2.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (58.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1099234691683252e-22,3.8158032116326764e-23,-1.0764892483429169e-22)
sum a = (-1.5111550745732978e-25,4.9618761673054023e-26,-4.4784325164426695e-26)
sum e = 7.860712195367952e-16
sum de = 1.887411345499491e-32
Info: cfl dt = 49.442333032184976 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2876e+04 | 2592 | 1 | 7.884e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2257519.9098444153 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23433.404925763934, dt = 49.442333032184976 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (1.9%)
patch tree reduce : 852.00 ns (0.4%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.3%)
LB compute : 216.49 us (93.3%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2831002861829066e-22,4.1671574225337967e-23,-1.1225847519519973e-22)
sum a = (7.180932692181724e-26,2.066337906790478e-25,-4.017692904855649e-26)
sum e = 7.860797355920491e-16
sum de = -4.622231866529366e-33
Info: cfl dt = 49.443724490351606 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7704e+04 | 2592 | 1 | 6.875e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2589100.5574522954 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23482.84725879612, dt = 49.443724490351606 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.05 us (2.1%)
patch tree reduce : 691.00 ns (0.4%)
gen split merge : 460.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.6%)
LB compute : 182.46 us (92.8%)
LB move op cnt : 0
LB apply : 2.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1911843477229805e-22,5.577012202892874e-23,-1.1413107199936616e-22)
sum a = (1.8135365280220116e-25,1.81059435773361e-25,3.8646700098604275e-26)
sum e = 7.860879126222291e-16
sum de = 1.6562997521730228e-32
Info: cfl dt = 49.44509426191966 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3723e+04 | 2592 | 1 | 5.928e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3002508.4495742577 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23532.29098328647, dt = 49.44509426191966 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (1.9%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 183.84 us (92.6%)
LB move op cnt : 0
LB apply : 2.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0692288427831344e-22,6.408974905845486e-23,-1.1027151536862731e-22)
sum a = (-1.6671096882093673e-25,-1.259763077644049e-25,-5.249670919292168e-26)
sum e = 7.860957662600507e-16
sum de = 2.1570415377137042e-32
Info: cfl dt = 49.446488205566254 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4289e+04 | 2592 | 1 | 5.852e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3041481.2841476244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23581.73607754839, dt = 49.446488205566254 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.70 us (1.6%)
patch tree reduce : 1.01 us (0.4%)
gen split merge : 551.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 212.10 us (93.6%)
LB move op cnt : 0
LB apply : 2.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2385544333259312e-22,5.0270101760455855e-23,-1.1512059051243972e-22)
sum a = (-3.9219325827900325e-25,5.182440997181575e-26,6.697583852553529e-26)
sum e = 7.861032817642111e-16
sum de = -7.318533788671496e-33
Info: cfl dt = 49.447905615585405 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.0370e+04 | 2592 | 1 | 6.421e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2772417.8061552714 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23631.182565753956, dt = 49.447905615585405 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (1.6%)
patch tree reduce : 1.19 us (0.5%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 631.00 ns (0.3%)
LB compute : 205.44 us (94.0%)
LB move op cnt : 0
LB apply : 2.84 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (62.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.490681393012097e-22,5.722878659166167e-23,-1.0885502660970402e-22)
sum a = (2.1789768003283964e-25,1.602793297231088e-25,-6.384183948628657e-26)
sum e = 7.861104443146056e-16
sum de = -7.318533788671496e-33
Info: cfl dt = 49.449345775560175 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3391e+04 | 2592 | 1 | 7.762e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2293242.022348288 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23680.630471369543, dt = 7.447282859684492 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (1.9%)
patch tree reduce : 1.04 us (0.5%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 200.59 us (92.9%)
LB move op cnt : 0
LB apply : 2.70 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3181464470761464e-22,6.110315552460161e-23,-1.1256480494422756e-22)
sum a = (-1.1081051687533915e-25,2.3474483701181849e-26,-5.354945139768875e-26)
sum e = 7.857766398551337e-16
sum de = 1.925929944387236e-33
Info: cfl dt = 49.44957036442196 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4831e+04 | 2592 | 1 | 7.442e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 360271.8776086464 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 540 [SPH][rank=0]
Info: time since start : 61.092939131 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000286732 s
sph::RenderFieldGetter compute custom field took : 0.000237841 s
rho_t_ampl=-0.00128554, rho_t_phi=3.14159 rad
eps_t_ampl=-3.20992e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-3.22782e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 24041.63s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 23688.077754229227, dt = 49.44957036442196 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.94 us (3.7%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 721.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.3%)
LB compute : 249.63 us (91.6%)
LB move op cnt : 0
LB apply : 3.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3884955172940786e-22,6.175511225328625e-23,-1.1517447714639018e-22)
sum a = (-2.730334027636623e-25,5.560055429502884e-26,8.538588821372144e-26)
sum e = 7.861157290534225e-16
sum de = -4.622231866529366e-33
Info: cfl dt = 49.451030442205656 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3128e+04 | 2592 | 1 | 7.824e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2275241.2948344178 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23737.527324593648, dt = 49.451030442205656 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.05 us (1.9%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 199.16 us (92.9%)
LB move op cnt : 0
LB apply : 2.69 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5695031614679555e-22,6.529886116628106e-23,-1.0751691056287995e-22)
sum a = (2.5010406286491864e-26,1.7284741147238513e-25,-5.504264156268282e-27)
sum e = 7.861231787601286e-16
sum de = -1.0400021699691074e-32
Info: cfl dt = 49.4525160868637 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3357e+04 | 2592 | 1 | 7.771e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2290994.886613435 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23786.978355035855, dt = 49.4525160868637 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (2.1%)
patch tree reduce : 902.00 ns (0.4%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.7%)
LB compute : 195.39 us (92.4%)
LB move op cnt : 0
LB apply : 2.64 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4793844620281956e-22,7.674551688473395e-23,-1.1003641612047703e-22)
sum a = (-2.396109751146461e-25,-6.977919024611861e-26,5.789910247804725e-26)
sum e = 7.861291783106624e-16
sum de = 6.162975822039155e-33
Info: cfl dt = 49.454017969208856 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7752e+04 | 2592 | 1 | 6.866e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2592986.965255281 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23836.43087112272, dt = 49.454017969208856 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (1.9%)
patch tree reduce : 1.37 us (0.7%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.5%)
LB compute : 174.47 us (92.0%)
LB move op cnt : 0
LB apply : 2.75 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6607772288492508e-22,6.729551273160817e-23,-1.056053448619217e-22)
sum a = (2.6616337637519235e-25,-8.163366837617746e-26,1.8808974561437403e-25)
sum e = 7.861347330562018e-16
sum de = -3.4666738998970245e-33
Info: cfl dt = 49.45553748294049 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4669e+04 | 2592 | 1 | 5.803e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3068143.100291828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23885.88488909193, dt = 49.45553748294049 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (1.5%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 681.00 ns (0.3%)
LB compute : 186.80 us (94.5%)
LB move op cnt : 0
LB apply : 2.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4001133838172957e-22,6.296515833367804e-23,-9.308404019497902e-23)
sum a = (-2.7480105553879784e-26,-2.593651412923615e-25,5.908021908481601e-26)
sum e = 7.861398699165838e-16
sum de = -1.0785207688568521e-32
Info: cfl dt = 49.45707586839321 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4753e+04 | 2592 | 1 | 5.792e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3074038.9021558436 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23935.34042657487, dt = 49.45707586839321 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (1.6%)
patch tree reduce : 731.00 ns (0.4%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 721.00 ns (0.4%)
LB compute : 192.18 us (93.7%)
LB move op cnt : 0
LB apply : 2.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4918367609536324e-22,4.5742666614642626e-23,-9.33522230548627e-23)
sum a = (-1.3085645153804615e-25,-2.5858405580467835e-25,5.122186111436358e-26)
sum e = 7.861445788727415e-16
sum de = -2.8888949165808538e-33
Info: cfl dt = 49.45863235477415 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4245e+04 | 2592 | 1 | 5.858e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3039194.678558551 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23984.797502443264, dt = 49.45863235477415 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (1.9%)
patch tree reduce : 911.00 ns (0.4%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 194.85 us (93.2%)
LB move op cnt : 0
LB apply : 2.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.581634524854077e-22,3.297265404182799e-23,-9.101318556064837e-23)
sum a = (-4.4830683148117744e-26,-3.7860756170627507e-26,-4.5561539532306284e-26)
sum e = 7.861488506243664e-16
sum de = 1.560003254953661e-32
Info: cfl dt = 49.46020616341826 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5079e+04 | 2592 | 1 | 5.750e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3096603.90046229 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24034.256134798037, dt = 7.375018748043658 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (1.7%)
patch tree reduce : 1.31 us (0.6%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 591.00 ns (0.3%)
LB compute : 189.99 us (93.7%)
LB move op cnt : 0
LB apply : 2.98 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.562378392495154e-22,3.8152177550043155e-23,-9.374259008420583e-23)
sum a = (1.380649646281378e-25,-9.832392266534209e-26,5.737985310327381e-26)
sum e = 7.857836757846602e-16
sum de = -7.125940794232773e-33
Info: cfl dt = 49.46044515656269 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5706e+04 | 2592 | 1 | 5.671e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 468175.3128338988 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 548 [SPH][rank=0]
Info: time since start : 61.83730546700001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000241937 s
sph::RenderFieldGetter compute custom field took : 0.00023340400000000002 s
rho_t_ampl=-0.00133906, rho_t_phi=3.14159 rad
eps_t_ampl=-2.72672e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-1.69117e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 24395.18s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 24041.63115354608, dt = 49.46044515656269 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.92 us (3.8%)
patch tree reduce : 1.49 us (0.6%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 235.69 us (91.2%)
LB move op cnt : 0
LB apply : 3.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4874720376189432e-22,3.3065662665506926e-23,-9.05249596563736e-23)
sum a = (2.3079778432797756e-26,7.714607515233359e-26,1.5065448305208467e-25)
sum e = 7.86151885411615e-16
sum de = 8.281498760865114e-33
Info: cfl dt = 49.462035434674725 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.0572e+04 | 2592 | 1 | 6.389e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2787118.1216572262 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24091.091598702642, dt = 49.462035434674725 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.34 us (2.1%)
patch tree reduce : 1.20 us (0.6%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.5%)
LB compute : 193.94 us (92.5%)
LB move op cnt : 0
LB apply : 2.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.499860149436517e-22,4.122065979259985e-23,-8.076657991770796e-23)
sum a = (-1.8992864924328408e-26,3.5311724082547005e-26,1.3149098758868693e-25)
sum e = 7.861556797428804e-16
sum de = -3.0814879110195774e-33
Info: cfl dt = 49.46364361477375 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8003e+04 | 2592 | 1 | 9.256e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1923697.4425190424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24140.553634137315, dt = 49.46364361477375 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.28 us (1.9%)
patch tree reduce : 1.34 us (0.6%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 207.63 us (92.5%)
LB move op cnt : 0
LB apply : 2.83 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5220047016492786e-22,4.193353785930415e-23,-7.473648931490749e-23)
sum a = (2.9523562308114456e-26,-3.5854909049906355e-26,-6.649430531676897e-26)
sum e = 7.861585655384986e-16
sum de = -6.066679324819793e-33
Info: cfl dt = 49.46526680617547 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0500e+04 | 2592 | 1 | 8.498e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2095347.885875465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24190.01727775209, dt = 49.46526680617547 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.36 us (2.0%)
patch tree reduce : 1.49 us (0.7%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 199.12 us (92.3%)
LB move op cnt : 0
LB apply : 2.78 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4945326194838816e-22,3.839938567112753e-23,-8.29221848531105e-23)
sum a = (5.709142367352578e-26,1.5273115463034815e-25,-2.704201700234028e-26)
sum e = 7.861609429949628e-16
sum de = -5.585196838722984e-33
Info: cfl dt = 49.466837413041524 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0443e+04 | 2592 | 1 | 8.514e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2091489.1553163351 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24239.482544558265, dt = 49.466837413041524 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.58 us (2.0%)
patch tree reduce : 1.38 us (0.6%)
gen split merge : 852.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 208.44 us (92.6%)
LB move op cnt : 0
LB apply : 2.81 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4608985749636293e-22,5.061955793851899e-23,-8.328410892769777e-23)
sum a = (5.601328084613817e-26,-1.40229673273752e-25,-6.683452739687695e-27)
sum e = 7.861628482440418e-16
sum de = -7.2222372914521344e-34
Info: cfl dt = 49.46838442388414 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1511e+04 | 2592 | 1 | 8.226e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2164956.3475764813 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24288.949381971306, dt = 49.46838442388414 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.42 us (1.9%)
patch tree reduce : 1.38 us (0.6%)
gen split merge : 1.06 us (0.5%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 217.83 us (93.1%)
LB move op cnt : 0
LB apply : 2.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4328488088274647e-22,3.6436313240255764e-23,-8.311119164293555e-23)
sum a = (8.542401425371206e-26,-7.394563245878842e-26,1.8349753288177923e-25)
sum e = 7.861642779903694e-16
sum de = -5.7777898331617076e-34
Info: cfl dt = 49.46994406542141 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0654e+04 | 2592 | 1 | 8.456e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2106127.269627035 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24338.41776639519, dt = 49.46994406542141 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (2.0%)
patch tree reduce : 1.46 us (0.7%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 203.57 us (92.8%)
LB move op cnt : 0
LB apply : 2.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (61.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3835210164346901e-22,3.44173779670719e-23,-6.932960590170663e-23)
sum a = (-1.4968634138381598e-25,-7.934427987779578e-26,7.929400993991349e-26)
sum e = 7.861652299835604e-16
sum de = 1.1435209044799213e-33
Info: cfl dt = 49.47151556422328 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1246e+04 | 2592 | 1 | 8.295e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2146867.891765162 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24387.88771046061, dt = 7.2968424023238185 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (2.3%)
patch tree reduce : 1.33 us (0.6%)
gen split merge : 881.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 204.90 us (92.7%)
LB move op cnt : 0
LB apply : 2.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4522814557330113e-22,3.370439960801157e-23,-7.132848123339875e-23)
sum a = (8.047207917443172e-26,-1.7042070863497752e-25,1.1474102925222295e-25)
sum e = 7.857862953735805e-16
sum de = -1.4444474582904269e-34
Info: cfl dt = 49.47166447926652 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0816e+04 | 2592 | 1 | 8.411e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 312307.8754612308 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 556 [SPH][rank=0]
Info: time since start : 62.73121265100001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00031228 s
sph::RenderFieldGetter compute custom field took : 0.000261655 s
rho_t_ampl=-0.00135867, rho_t_phi=3.14159 rad
eps_t_ampl=-2.24903e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-1.11865e-09, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 24748.74s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 24395.184552862935, dt = 49.47166447926652 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.86 us (3.3%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 273.23 us (92.5%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4032264585486548e-22,2.494185646114122e-23,-6.552272587545501e-23)
sum a = (-7.342654116289866e-26,1.1637341261570633e-26,3.9351076255827757e-26)
sum e = 7.861657251085905e-16
sum de = -5.7777898331617076e-34
Info: cfl dt = 49.471156076287436 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4536e+04 | 2592 | 1 | 5.820e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3060095.859319905 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24444.656217342203, dt = 49.471156076287436 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (1.8%)
patch tree reduce : 681.00 ns (0.3%)
gen split merge : 440.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 203.58 us (94.0%)
LB move op cnt : 0
LB apply : 2.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4794967894669559e-22,3.0020861955519245e-23,-6.54408158701088e-23)
sum a = (-2.5132010768185583e-25,2.538076323484611e-25,1.1649722506288739e-25)
sum e = 7.861654374522881e-16
sum de = -3.562970397116386e-33
Info: cfl dt = 49.4695823823362 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4080e+04 | 2592 | 1 | 7.606e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2341608.952405013 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24494.12737341849, dt = 49.4695823823362 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 us (1.7%)
patch tree reduce : 1.01 us (0.4%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.4%)
LB compute : 223.28 us (93.9%)
LB move op cnt : 0
LB apply : 2.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6461104747025377e-22,4.856717516459711e-23,-5.776949221339316e-23)
sum a = (3.5265299691178755e-26,8.536691421116419e-26,-1.5479081542268797e-25)
sum e = 7.861648712304626e-16
sum de = 2.792598419361492e-33
Info: cfl dt = 49.46801372591061 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.2379e+04 | 2592 | 1 | 6.116e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2911783.547165903 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24543.596955800826, dt = 49.46801372591061 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (1.8%)
patch tree reduce : 881.00 ns (0.4%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 220.40 us (93.6%)
LB move op cnt : 0
LB apply : 2.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.558687633793027e-22,4.8622686983663066e-23,-7.213693942944959e-23)
sum a = (-8.023388482884608e-26,2.0358741036445255e-25,-4.8233848460593055e-26)
sum e = 7.861637821225578e-16
sum de = -5.488900341503622e-33
Info: cfl dt = 49.4663653401333 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5568e+04 | 2592 | 1 | 7.287e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2443754.0129590933 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24593.064969526735, dt = 49.4663653401333 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.05 us (1.6%)
patch tree reduce : 831.00 ns (0.3%)
gen split merge : 802.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 233.69 us (94.0%)
LB move op cnt : 0
LB apply : 2.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6258915357256686e-22,6.161495995399811e-23,-7.188731184700695e-23)
sum a = (-2.2101927961446194e-26,-5.337570941249458e-26,1.1225635506252376e-25)
sum e = 7.861622149811151e-16
sum de = 4.525935369310004e-33
Info: cfl dt = 49.46473179012442 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3684e+04 | 2592 | 1 | 7.695e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2314211.4412862263 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24642.531334866868, dt = 49.46473179012442 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (1.4%)
patch tree reduce : 1.38 us (0.5%)
gen split merge : 821.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 260.51 us (94.3%)
LB move op cnt : 0
LB apply : 2.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6268864358975462e-22,5.262044058761636e-23,-6.236514783161741e-23)
sum a = (-1.4979917028435652e-25,1.956506023920522e-25,3.791419799716374e-26)
sum e = 7.86160174522076e-16
sum de = -1.925929944387236e-34
Info: cfl dt = 49.46311386496863 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3273e+04 | 2592 | 1 | 7.790e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2285888.0907009314 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24691.996066656993, dt = 49.46311386496863 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (1.8%)
patch tree reduce : 1.18 us (0.5%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 234.20 us (93.7%)
LB move op cnt : 0
LB apply : 2.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7297783698020583e-22,6.845650331335382e-23,-6.232845096894102e-23)
sum a = (-2.7417422831357246e-26,-1.3909080655892066e-25,-3.8075324285815134e-26)
sum e = 7.86157664984607e-16
sum de = -7.703719777548943e-34
Info: cfl dt = 49.46151234404345 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2835e+04 | 2592 | 1 | 7.894e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2255749.129832907 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24741.45918052196, dt = 7.278771657827747 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (1.6%)
patch tree reduce : 1.21 us (0.5%)
gen split merge : 801.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 239.54 us (94.1%)
LB move op cnt : 0
LB apply : 2.30 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (58.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7026914102838398e-22,5.916707427404803e-23,-6.448493175684386e-23)
sum a = (9.371067017119132e-26,-5.0010920455835637e-26,1.297990732420226e-25)
sum e = 7.857844180877939e-16
sum de = 4.622231866529366e-33
Info: cfl dt = 49.4612810008449 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3766e+04 | 2592 | 1 | 7.676e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 341356.6815846944 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 564 [SPH][rank=0]
Info: time since start : 63.537236714 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00027994200000000004 s
sph::RenderFieldGetter compute custom field took : 0.000225903 s
rho_t_ampl=-0.00134389, rho_t_phi=3.14159 rad
eps_t_ampl=-1.78896e-07, eps_t_phi=6.28319 rad
vx_t_ampl=1.47014e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 25102.29s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 24748.73795217979, dt = 49.4612810008449 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.10 us (3.4%)
patch tree reduce : 1.49 us (0.5%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 272.13 us (92.4%)
LB move op cnt : 0
LB apply : 3.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6587232413976324e-22,5.701821025361947e-23,-5.745394361815623e-23)
sum a = (2.253443874685169e-25,1.655380183757338e-25,3.332292661748516e-26)
sum e = 7.86155534822745e-16
sum de = 1.7333369499485123e-33
Info: cfl dt = 49.45969593527317 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1637e+04 | 2592 | 1 | 8.193e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2173312.5170317083 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24798.199233180632, dt = 49.45969593527317 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 us (1.7%)
patch tree reduce : 1.21 us (0.5%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 218.48 us (93.4%)
LB move op cnt : 0
LB apply : 2.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5043532469869324e-22,7.053481166131102e-23,-5.819171869901638e-23)
sum a = (-1.5943977300832258e-25,-6.2321317450492e-27,8.526409818661867e-26)
sum e = 7.861512019536868e-16
sum de = 5.970382827600431e-33
Info: cfl dt = 49.45813241520593 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6216e+04 | 2592 | 1 | 7.157e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2487802.8415442407 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24847.658929115907, dt = 49.45813241520593 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (1.7%)
patch tree reduce : 1.01 us (0.4%)
gen split merge : 641.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 215.78 us (93.4%)
LB move op cnt : 0
LB apply : 3.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6801617354239e-22,6.59776272953886e-23,-5.269021836447962e-23)
sum a = (-1.0466761006813062e-25,-2.4245598718313774e-25,1.903096688586891e-25)
sum e = 7.861472974235741e-16
sum de = 5.970382827600431e-33
Info: cfl dt = 49.456587500064636 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5048e+04 | 2592 | 1 | 5.754e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3094410.2886795225 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24897.117061531113, dt = 49.456587500064636 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (1.9%)
patch tree reduce : 1.19 us (0.6%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 187.33 us (93.1%)
LB move op cnt : 0
LB apply : 2.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.728494627644797e-22,4.814504463804134e-23,-4.06804727024925e-23)
sum a = (1.4562450096435564e-25,8.636219831471733e-26,-1.514303304502289e-25)
sum e = 7.861429076533506e-16
sum de = -6.162975822039155e-33
Info: cfl dt = 49.455062115825555 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4413e+04 | 2592 | 1 | 5.836e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3050749.2445463543 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24946.57364903118, dt = 49.455062115825555 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (1.9%)
patch tree reduce : 1.08 us (0.6%)
gen split merge : 681.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 510.00 ns (0.3%)
LB compute : 182.49 us (93.8%)
LB move op cnt : 0
LB apply : 1.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.577462362842977e-22,6.054940381729302e-23,-5.662011619017324e-23)
sum a = (-2.7402378977951835e-25,1.2842602691398876e-25,-9.378435219823432e-26)
sum e = 7.861380851287859e-16
sum de = 7.703719777548943e-34
Info: cfl dt = 49.4535569880685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4331e+04 | 2592 | 1 | 5.847e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3044964.428203917 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24996.028711147006, dt = 49.4535569880685 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.7%)
patch tree reduce : 951.00 ns (0.4%)
gen split merge : 640.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.4%)
LB compute : 203.08 us (94.0%)
LB move op cnt : 0
LB apply : 2.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8353661622368197e-22,6.79421539654229e-23,-5.983264327861485e-23)
sum a = (7.392800294307896e-26,-1.6622272917753856e-25,-2.0870964785631845e-26)
sum e = 7.861328394504125e-16
sum de = -2.2725973343769383e-32
Info: cfl dt = 49.45207283169194 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4484e+04 | 2592 | 1 | 5.827e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3055394.8649417055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25045.482268135074, dt = 49.45207283169194 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.11 us (1.8%)
patch tree reduce : 1.19 us (0.5%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.4%)
LB compute : 210.48 us (94.0%)
LB move op cnt : 0
LB apply : 2.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7037825911175122e-22,5.2435050167483705e-23,-5.906184256945778e-23)
sum a = (-1.62787030391026e-25,1.0176060086939406e-25,8.741419542936581e-26)
sum e = 7.861271811826105e-16
sum de = -5.007417855406813e-33
Info: cfl dt = 49.450610349947034 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3575e+04 | 2592 | 1 | 5.948e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2992879.8468300663 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25094.934340966767, dt = 7.3570105298749695 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (1.7%)
patch tree reduce : 1.11 us (0.5%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 470.00 ns (0.2%)
LB compute : 218.24 us (94.4%)
LB move op cnt : 0
LB apply : 2.19 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7790098815330384e-22,5.980603687435375e-23,-5.574127259844607e-23)
sum a = (7.252390995857415e-26,-1.8615936084284688e-25,1.3207171087407366e-25)
sum e = 7.857783312173184e-16
sum de = -6.933347799794049e-33
Info: cfl dt = 49.45040033621658 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5960e+04 | 2592 | 1 | 5.640e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 469621.6464740905 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 572 [SPH][rank=0]
Info: time since start : 64.27062178700001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00028490000000000004 s
sph::RenderFieldGetter compute custom field took : 0.00021228200000000003 s
rho_t_ampl=-0.00129509, rho_t_phi=3.14159 rad
eps_t_ampl=-1.35813e-07, eps_t_phi=6.28319 rad
vx_t_ampl=3.01485e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 25455.84s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 25102.291351496642, dt = 49.45040033621658 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.95 us (3.7%)
patch tree reduce : 1.51 us (0.6%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 247.16 us (91.5%)
LB move op cnt : 0
LB apply : 3.32 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7270183241639461e-22,4.9542418034691735e-23,-4.9046000716951455e-23)
sum a = (4.9669789326857525e-26,-3.62915333889774e-26,1.616210154688852e-25)
sum e = 7.861226994844786e-16
sum de = -3.4666738998970245e-33
Info: cfl dt = 49.448957546810384 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2101e+04 | 2592 | 1 | 8.075e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2204715.6557865045 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25151.74175183286, dt = 49.448957546810384 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (1.9%)
patch tree reduce : 1.21 us (0.5%)
gen split merge : 792.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 212.69 us (93.0%)
LB move op cnt : 0
LB apply : 2.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.721113110240543e-22,5.145709940377611e-23,-4.0323397513435316e-23)
sum a = (-1.687042793971534e-25,-1.3152607930974392e-25,1.8022648110240244e-25)
sum e = 7.861147746159645e-16
sum de = 8.474091755303838e-33
Info: cfl dt = 49.4475441446285 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2754e+04 | 2592 | 1 | 7.914e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2249487.743849762 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25201.19070937967, dt = 49.4475441446285 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (2.0%)
patch tree reduce : 1.37 us (0.6%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 198.17 us (92.7%)
LB move op cnt : 0
LB apply : 2.85 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8494873259666967e-22,4.2596971794482675e-23,-3.0951630192964214e-23)
sum a = (-4.7538576761091303e-26,8.99979921045323e-26,1.9424731842165183e-25)
sum e = 7.861079358357415e-16
sum de = 8.474091755303838e-33
Info: cfl dt = 49.44615437176751 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3616e+04 | 2592 | 1 | 7.711e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2308679.9956218577 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25250.6382535243, dt = 49.44615437176751 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (2.1%)
patch tree reduce : 1.10 us (0.5%)
gen split merge : 881.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.4%)
LB compute : 198.17 us (92.9%)
LB move op cnt : 0
LB apply : 2.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (59.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.840629505081592e-22,5.2526316211476516e-23,-2.1000199313853218e-23)
sum a = (1.2160448169371983e-27,8.669588587039589e-26,4.230616984569996e-26)
sum e = 7.861006957545944e-16
sum de = 5.7777898331617076e-33
Info: cfl dt = 49.44478906193897 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2724e+04 | 2592 | 1 | 7.921e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2247303.1683425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25300.084407896065, dt = 49.44478906193897 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.94 us (2.2%)
patch tree reduce : 1.26 us (0.6%)
gen split merge : 851.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 207.50 us (92.7%)
LB move op cnt : 0
LB apply : 2.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8424267441017582e-22,5.673177528478048e-23,-2.2664832413759396e-23)
sum a = (-3.1350136842421153e-25,-6.420052588336684e-26,1.1148960918776187e-26)
sum e = 7.860931099712366e-16
sum de = 2.6963019221421302e-33
Info: cfl dt = 49.44340984764038 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7640e+04 | 2592 | 1 | 6.886e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2584895.030438601 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25349.529196958003, dt = 49.44340984764038 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (1.8%)
patch tree reduce : 1.28 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 711.00 ns (0.4%)
LB compute : 189.29 us (93.4%)
LB move op cnt : 0
LB apply : 2.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0505213477938534e-22,4.982514218635738e-23,-2.288387058125565e-23)
sum a = (-2.1112794600040576e-25,8.486408124642872e-26,2.040486891645074e-25)
sum e = 7.860851929495846e-16
sum de = -1.1940765655200862e-32
Info: cfl dt = 49.44204153743981 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4404e+04 | 2592 | 1 | 5.837e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3049264.040467413 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25398.972606805644, dt = 49.44204153743981 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (2.0%)
patch tree reduce : 661.00 ns (0.3%)
gen split merge : 581.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 186.08 us (93.2%)
LB move op cnt : 0
LB apply : 2.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1292147420339855e-22,5.770431026126213e-23,-8.026476654352753e-24)
sum a = (-3.001875581604249e-25,6.629216998054072e-26,-2.0409450482240695e-26)
sum e = 7.860769608559899e-16
sum de = -9.244463733058732e-33
Info: cfl dt = 49.44069969050811 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4228e+04 | 2592 | 1 | 5.861e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3037116.105390855 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25448.414648343085, dt = 7.4301024704109295 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (1.9%)
patch tree reduce : 831.00 ns (0.4%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 186.79 us (92.9%)
LB move op cnt : 0
LB apply : 2.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1714498590078904e-22,5.773580206105745e-23,-1.3726955294707645e-23)
sum a = (-8.247792629515287e-26,-1.9342223160637606e-26,-2.832750709779773e-26)
sum e = 7.857684407693768e-16
sum de = -2.311115933264683e-32
Info: cfl dt = 49.440508892132016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5537e+04 | 2592 | 1 | 5.692e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 469927.6933677888 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 580 [SPH][rank=0]
Info: time since start : 65.06327401600001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000282856 s
sph::RenderFieldGetter compute custom field took : 0.00023102000000000002 s
rho_t_ampl=-0.0012135, rho_t_phi=3.14159 rad
eps_t_ampl=-9.67443e-08, eps_t_phi=6.28319 rad
vx_t_ampl=4.48317e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 25809.40s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 25455.844750813496, dt = 49.440508892132016 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.30 us (3.8%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 721.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 248.76 us (91.5%)
LB move op cnt : 0
LB apply : 3.37 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2082932589212963e-22,5.646309206295989e-23,-1.515689764725673e-23)
sum a = (-4.489336587064028e-26,3.06031742618112e-26,8.912631067063472e-26)
sum e = 7.860705791173591e-16
sum de = -3.004450713244088e-32
Info: cfl dt = 49.43918935016416 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2221e+04 | 2592 | 1 | 8.044e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2212532.1457928023 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25505.285259705626, dt = 49.43918935016416 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (2.0%)
patch tree reduce : 981.00 ns (0.4%)
gen split merge : 871.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 204.32 us (92.9%)
LB move op cnt : 0
LB apply : 2.82 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.221387428925364e-22,5.921270729604444e-23,-7.847076837047954e-24)
sum a = (2.839903426606016e-25,-5.672884330043449e-27,-7.30002295691865e-26)
sum e = 7.860598546997536e-16
sum de = -1.6948183510607676e-32
Info: cfl dt = 49.43790666858536 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2617e+04 | 2592 | 1 | 7.947e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2239664.089935129 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25554.72444905579, dt = 49.43790666858536 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (1.8%)
patch tree reduce : 1.02 us (0.4%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 222.52 us (93.3%)
LB move op cnt : 0
LB apply : 2.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0177859227836843e-22,5.803597708267338e-23,-1.5463757734069542e-23)
sum a = (2.1986591752004726e-25,1.0924511382209274e-25,-4.3022268606848057e-26)
sum e = 7.860507769727096e-16
sum de = -1.771855548836257e-32
Info: cfl dt = 49.4366521859071 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5397e+04 | 2592 | 1 | 7.323e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2430486.7591886055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25604.162355724377, dt = 49.4366521859071 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.58 us (2.2%)
patch tree reduce : 1.34 us (0.7%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 189.22 us (92.0%)
LB move op cnt : 0
LB apply : 2.67 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9030193739245028e-22,6.627379062276308e-23,-1.684961084535518e-23)
sum a = (-2.49890941608342e-25,-1.2557166140799576e-25,-1.6272932369642476e-25)
sum e = 7.860414197624175e-16
sum de = -5.39260384428426e-32
Info: cfl dt = 49.435426653165415 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4557e+04 | 2592 | 1 | 5.817e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3059390.511672702 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25653.599007910285, dt = 49.435426653165415 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (1.8%)
patch tree reduce : 1.32 us (0.6%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 198.46 us (93.9%)
LB move op cnt : 0
LB apply : 2.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1672135098889274e-22,5.426899618995906e-23,-2.785316241460152e-23)
sum a = (1.5724587772003382e-25,-6.407374028288962e-26,1.4529398468995069e-25)
sum e = 7.860318383994568e-16
sum de = -1.0785207688568521e-32
Info: cfl dt = 49.43423063055034 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4502e+04 | 2592 | 1 | 5.824e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3055520.3993345145 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25703.03443456345, dt = 49.43423063055034 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (1.8%)
patch tree reduce : 621.00 ns (0.3%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 180.43 us (93.5%)
LB move op cnt : 0
LB apply : 2.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.975165683162601e-22,5.261858517902969e-23,-1.3057034231615114e-23)
sum a = (-6.030077906667963e-26,3.6687756754547584e-26,1.701118043516831e-25)
sum e = 7.860220517185194e-16
sum de = 0
Info: cfl dt = 49.43306466451698 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5934e+04 | 2592 | 1 | 7.213e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2467188.9001414576 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25752.468665194003, dt = 49.43306466451698 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.97 us (1.7%)
patch tree reduce : 1.00 us (0.4%)
gen split merge : 821.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 216.40 us (93.5%)
LB move op cnt : 0
LB apply : 2.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0604061624047673e-22,5.692353426952142e-23,-4.034461496432182e-24)
sum a = (-8.504791791857685e-26,-8.64935871776298e-26,5.729378517180822e-26)
sum e = 7.860120791953502e-16
sum de = -5.3926038442842604e-33
Info: cfl dt = 49.431929286386136 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2296e+04 | 2592 | 1 | 8.026e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2217331.444948051 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25801.90172985852, dt = 7.496420271829265 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.78 us (2.1%)
patch tree reduce : 1.11 us (0.5%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 216.25 us (93.1%)
LB move op cnt : 0
LB apply : 2.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0917294710419488e-22,5.323217381325829e-23,-6.393433422562536e-24)
sum a = (-1.700958358371537e-25,-1.1293595087762281e-25,1.3410375410967963e-25)
sum e = 7.857557695177114e-16
sum de = 3.8518598887744717e-32
Info: cfl dt = 49.43177075468051 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4025e+04 | 2592 | 1 | 7.618e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 354261.0643383071 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 588 [SPH][rank=0]
Info: time since start : 66.01770847200001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00028654200000000004 s
sph::RenderFieldGetter compute custom field took : 0.00022392 s
rho_t_ampl=-0.0011012, rho_t_phi=3.14159 rad
eps_t_ampl=-6.26763e-08, eps_t_phi=6.28319 rad
vx_t_ampl=5.838e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 26162.95s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 25809.39815013035, dt = 49.43177075468051 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.10 us (3.3%)
patch tree reduce : 1.50 us (0.5%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 279.20 us (92.4%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.176199704989758e-22,4.75508124285277e-23,5.234525120507311e-25)
sum a = (7.718750451425083e-26,7.008310350859897e-26,-1.3498428943176918e-25)
sum e = 7.86004443840882e-16
sum de = 4.622231866529366e-32
Info: cfl dt = 49.430659960337316 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3808e+04 | 2592 | 1 | 5.917e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3007674.421507185 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25858.82992088503, dt = 49.430659960337316 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (1.9%)
patch tree reduce : 641.00 ns (0.3%)
gen split merge : 441.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 611.00 ns (0.3%)
LB compute : 183.32 us (94.4%)
LB move op cnt : 0
LB apply : 1.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0475687408321518e-22,5.553769449381519e-23,-1.2799659239410633e-23)
sum a = (-3.30839409473945e-26,-8.753020270134624e-26,5.877891885240336e-26)
sum e = 7.859919929282045e-16
sum de = 6.240013019814644e-32
Info: cfl dt = 49.429592286261986 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4213e+04 | 2592 | 1 | 5.863e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3035394.6025495506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25908.260580845366, dt = 49.429592286261986 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (1.9%)
patch tree reduce : 781.00 ns (0.4%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.5%)
LB compute : 181.59 us (93.0%)
LB move op cnt : 0
LB apply : 2.50 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.097634684965352e-22,4.7312918960010173e-23,-5.105319614768446e-24)
sum a = (1.911572306047258e-25,-1.0296974079267839e-25,6.862289435013197e-26)
sum e = 7.85981596179806e-16
sum de = -1.5407439555097887e-33
Info: cfl dt = 49.428556616053456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4099e+04 | 2592 | 1 | 5.878e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3027483.9863995034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25957.69017313163, dt = 49.428556616053456 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.89 us (2.0%)
patch tree reduce : 761.00 ns (0.4%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 181.33 us (92.8%)
LB move op cnt : 0
LB apply : 3.02 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.954882557077869e-22,4.1844979708924313e-23,-1.4700971485506126e-24)
sum a = (9.824889928182293e-26,6.763896703898976e-26,-7.603146267354525e-26)
sum e = 7.859710673162544e-16
sum de = -2.311115933264683e-33
Info: cfl dt = 49.42755357591703 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4125e+04 | 2592 | 1 | 5.874e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3029201.7807590845 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26007.118729747683, dt = 49.42755357591703 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.18 us (2.2%)
patch tree reduce : 1.36 us (0.7%)
gen split merge : 671.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 430.00 ns (0.2%)
LB compute : 176.90 us (93.2%)
LB move op cnt : 0
LB apply : 2.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9250997390294013e-22,4.940341282922576e-23,-8.803174381250902e-24)
sum a = (-2.8649765156150306e-25,1.2442520420723395e-25,7.160684868423819e-26)
sum e = 7.859604580487185e-16
sum de = -7.703719777548943e-34
Info: cfl dt = 49.426583615464914 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4123e+04 | 2592 | 1 | 5.875e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3028997.7870597625 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26056.546283323598, dt = 49.426583615464914 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (2.0%)
patch tree reduce : 521.00 ns (0.3%)
gen split merge : 440.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 179.03 us (93.6%)
LB move op cnt : 0
LB apply : 2.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.162335289691333e-22,5.695622957758919e-23,-1.6151922150816928e-24)
sum a = (-4.2448739692261377e-26,1.6742653127523307e-26,6.043890844633374e-26)
sum e = 7.859497891843749e-16
sum de = -1.771855548836257e-32
Info: cfl dt = 49.425647169721714 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4113e+04 | 2592 | 1 | 5.876e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3028298.150894135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26105.972866939064, dt = 49.425647169721714 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (2.0%)
patch tree reduce : 792.00 ns (0.4%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 179.11 us (92.8%)
LB move op cnt : 0
LB apply : 2.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (59.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.113553087715395e-22,5.512288530925004e-23,1.0960433831269354e-24)
sum a = (-3.9615480634242753e-26,8.48209379038175e-26,1.948290728742489e-25)
sum e = 7.859390819073943e-16
sum de = 5.3926038442842604e-33
Info: cfl dt = 49.424744657575864 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6637e+04 | 2592 | 1 | 7.075e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2515000.9340986386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26155.398514108787, dt = 7.553035338420159 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.97 us (1.9%)
patch tree reduce : 1.19 us (0.6%)
gen split merge : 902.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 197.81 us (92.8%)
LB move op cnt : 0
LB apply : 2.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0891619867274257e-22,5.744926679986244e-23,5.888754680539768e-24)
sum a = (-4.012947895892755e-26,1.83110727867911e-25,2.9200684180970954e-26)
sum e = 7.857416247719648e-16
sum de = -7.703719777548943e-33
Info: cfl dt = 49.42462282523574 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3437e+04 | 2592 | 1 | 7.752e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350765.55316844035 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 596 [SPH][rank=0]
Info: time since start : 66.752144352 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000278891 s
sph::RenderFieldGetter compute custom field took : 0.000228366 s
rho_t_ampl=-0.000961026, rho_t_phi=3.14159 rad
eps_t_ampl=-3.44706e-08, eps_t_phi=6.28319 rad
vx_t_ampl=7.04505e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 26516.50s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 26162.951549447207, dt = 49.42462282523574 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.33 us (3.9%)
patch tree reduce : 1.56 us (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 242.04 us (91.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1672135098889274e-22,6.686511435395167e-23,6.706488945995744e-24)
sum a = (-1.0345156525119342e-25,-1.170659587578264e-25,1.3864814434758589e-25)
sum e = 7.859309673715922e-16
sum de = -9.244463733058732e-33
Info: cfl dt = 49.42374656457642 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3558e+04 | 2592 | 1 | 5.951e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2990031.508259975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26212.37617227244, dt = 49.42374656457642 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (1.8%)
patch tree reduce : 641.00 ns (0.3%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 187.82 us (93.0%)
LB move op cnt : 0
LB apply : 2.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2283196365745764e-22,5.366222743594091e-23,1.6263699412847466e-23)
sum a = (-2.345336745903207e-25,2.996851169627052e-26,1.1414928617358418e-25)
sum e = 7.859180335204605e-16
sum de = 8.474091755303838e-33
Info: cfl dt = 49.422918591535115 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4169e+04 | 2592 | 1 | 5.868e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3031925.119220321 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26261.799918837016, dt = 49.422918591535115 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (1.9%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 185.08 us (92.8%)
LB move op cnt : 0
LB apply : 2.55 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3669637895588226e-22,5.877272473011425e-23,2.1299877611932158e-23)
sum a = (-4.1329226268008885e-25,9.609790248176053e-26,3.290005895343074e-26)
sum e = 7.859073678452408e-16
sum de = 2.619264724366641e-32
Info: cfl dt = 49.42212562713139 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4087e+04 | 2592 | 1 | 5.879e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3026283.2523032078 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26311.22283742855, dt = 49.42212562713139 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (1.9%)
patch tree reduce : 1.35 us (0.7%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 711.00 ns (0.4%)
LB compute : 188.21 us (93.5%)
LB move op cnt : 0
LB apply : 2.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.603172346494945e-22,6.51601443013387e-23,2.091808148740821e-23)
sum a = (1.231088670342607e-25,6.034597918612362e-26,9.502589042732356e-26)
sum e = 7.858967282611355e-16
sum de = -1.771855548836257e-32
Info: cfl dt = 49.42136816274978 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4338e+04 | 2592 | 1 | 5.846e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3043457.817153839 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26360.64496305568, dt = 49.42136816274978 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.56 us (1.8%)
patch tree reduce : 641.00 ns (0.3%)
gen split merge : 611.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.4%)
LB compute : 184.14 us (93.5%)
LB move op cnt : 0
LB apply : 2.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.441677583111444e-22,6.726146974500617e-23,2.7149586327106764e-23)
sum a = (2.9836975920727137e-27,1.883633931026686e-25,1.1051607909346542e-25)
sum e = 7.858861598845146e-16
sum de = 6.008901426488176e-32
Info: cfl dt = 49.4206465310663 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4005e+04 | 2592 | 1 | 5.890e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3020520.8720529457 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26410.06633121843, dt = 49.4206465310663 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (1.8%)
patch tree reduce : 791.00 ns (0.4%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.4%)
LB compute : 183.54 us (93.0%)
LB move op cnt : 0
LB apply : 2.28 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4260159287928533e-22,7.973101895568129e-23,3.2994135566462617e-23)
sum a = (-1.2752173069984725e-25,-2.1302576336652947e-26,-2.577785368778975e-26)
sum e = 7.858756834155904e-16
sum de = -8.474091755303838e-33
Info: cfl dt = 49.4199610496631 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4196e+04 | 2592 | 1 | 5.865e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3033629.2843743293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26459.486977749497, dt = 49.4199610496631 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (1.9%)
patch tree reduce : 1.20 us (0.6%)
gen split merge : 721.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.5%)
LB compute : 182.12 us (92.9%)
LB move op cnt : 0
LB apply : 2.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5577278741278867e-22,7.350065721400931e-23,2.835232790311533e-23)
sum a = (-1.0781428273876192e-25,-1.3120953156100512e-25,2.087598482046378e-25)
sum e = 7.858653196330641e-16
sum de = 1.8488927466117464e-32
Info: cfl dt = 49.4193120193578 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4196e+04 | 2592 | 1 | 5.865e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3033583.5343558677 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26508.90693879916, dt = 7.598009964902303 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (1.7%)
patch tree reduce : 651.00 ns (0.3%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 671.00 ns (0.3%)
LB compute : 183.44 us (94.2%)
LB move op cnt : 0
LB apply : 1.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5348772637286316e-22,6.97840230840251e-23,3.5733909356146467e-23)
sum a = (2.145378861056317e-25,-7.716071744454784e-26,1.0598273740160946e-25)
sum e = 7.857274709863455e-16
sum de = 5.39260384428426e-32
Info: cfl dt = 49.41923036303197 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4815e+04 | 2592 | 1 | 7.445e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 367394.69412214647 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 604 [SPH][rank=0]
Info: time since start : 67.471101937 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000311499 s
sph::RenderFieldGetter compute custom field took : 0.000261996 s
rho_t_ampl=-0.000796523, rho_t_phi=3.14159 rad
eps_t_ampl=-1.28404e-08, eps_t_phi=6.28318 rad
vx_t_ampl=8.07383e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 26870.06s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 26516.50494876406, dt = 49.41923036303197 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.81 us (3.8%)
patch tree reduce : 1.54 us (0.6%)
gen split merge : 751.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 239.11 us (91.6%)
LB move op cnt : 0
LB apply : 2.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.418570224280736e-22,6.617490235971152e-23,4.0581043914283927e-23)
sum a = (3.745668767056661e-25,-1.9102892690706246e-25,4.707967961958853e-27)
sum e = 7.858575511517675e-16
sum de = 1.9259299443872359e-32
Info: cfl dt = 49.4186086170709 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2404e+04 | 2592 | 1 | 7.999e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2224116.4968903936 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26565.924179127094, dt = 49.4186086170709 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (1.8%)
patch tree reduce : 1.27 us (0.5%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 217.17 us (92.9%)
LB move op cnt : 0
LB apply : 3.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (59.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1949423404857766e-22,5.392719984058818e-23,3.831124455991995e-23)
sum a = (1.8408661950418373e-25,-2.0294329641965652e-25,1.2542343150035204e-25)
sum e = 7.85845424910574e-16
sum de = 8.474091755303838e-33
Info: cfl dt = 49.41803915504435 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3411e+04 | 2592 | 1 | 7.758e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2293217.922038414 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26615.342787744165, dt = 49.41803915504435 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.71 us (2.4%)
patch tree reduce : 1.34 us (0.7%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 183.29 us (91.5%)
LB move op cnt : 0
LB apply : 2.91 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.152835597727598e-22,4.359929360070703e-23,4.7492219732080975e-23)
sum a = (1.222313089189452e-25,-6.758372788976679e-27,2.16617583702957e-25)
sum e = 7.858355663830297e-16
sum de = 9.244463733058732e-33
Info: cfl dt = 49.41750686509901 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.2538e+04 | 2592 | 1 | 6.093e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2919674.64466519 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26664.760826899208, dt = 49.41750686509901 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (1.0%)
patch tree reduce : 1.31 us (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 691.00 ns (0.2%)
LB compute : 373.60 us (96.5%)
LB move op cnt : 0
LB apply : 2.36 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.130241735759795e-22,4.811686248599521e-23,6.045023875394962e-23)
sum a = (-5.004588566199274e-26,9.485879238177012e-26,6.700489157682795e-26)
sum e = 7.858258872014593e-16
sum de = 1.771855548836257e-32
Info: cfl dt = 49.41701209695203 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3354e+04 | 2592 | 1 | 5.979e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2975611.252990972 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26714.178333764306, dt = 49.41701209695203 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.82 us (1.9%)
patch tree reduce : 641.00 ns (0.3%)
gen split merge : 430.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.4%)
LB compute : 186.20 us (93.4%)
LB move op cnt : 0
LB apply : 2.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1556598304735733e-22,5.53102314303254e-23,6.006467717144231e-23)
sum a = (-1.8272013615319243e-25,1.1325475128670227e-25,6.117598614205511e-26)
sum e = 7.858164235728244e-16
sum de = -1.1555579666323415e-32
Info: cfl dt = 49.41655506251966 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3180e+04 | 2592 | 1 | 6.003e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2963624.5622858284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26763.59534586126, dt = 49.41655506251966 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (1.9%)
patch tree reduce : 882.00 ns (0.5%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 181.25 us (92.6%)
LB move op cnt : 0
LB apply : 2.53 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2912230022803915e-22,6.136387804066184e-23,6.294376011394166e-23)
sum a = (-2.0482833238689088e-25,-6.436452935034182e-26,5.992949054110189e-26)
sum e = 7.858071940267123e-16
sum de = 5.007417855406813e-32
Info: cfl dt = 49.416135958398606 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3427e+04 | 2592 | 1 | 5.969e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2980561.072287846 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26813.01190092378, dt = 49.416135958398606 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (2.1%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 184.18 us (92.8%)
LB move op cnt : 0
LB apply : 2.32 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.41343525565169e-22,5.379340983763606e-23,6.587444520717761e-23)
sum a = (-1.2560990766290988e-25,1.4566926034590687e-25,-3.033567453079825e-26)
sum e = 7.85798216866619e-16
sum de = 2.465190328815662e-32
Info: cfl dt = 49.41575496409852 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3507e+04 | 2592 | 1 | 5.958e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2986035.082919174 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26862.42803688218, dt = 7.63031119873267 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (1.7%)
patch tree reduce : 1.02 us (0.5%)
gen split merge : 581.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 701.00 ns (0.4%)
LB compute : 187.77 us (94.2%)
LB move op cnt : 0
LB apply : 1.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.400854582510527e-22,6.00973861686385e-23,6.341269673533877e-23)
sum a = (6.64374176016359e-26,1.5832808513021e-25,-4.623275511742146e-26)
sum e = 7.85714778829005e-16
sum de = -1.8488927466117464e-32
Info: cfl dt = 49.4157158719341 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4574e+04 | 2592 | 1 | 5.815e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 472382.7030414305 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 612 [SPH][rank=0]
Info: time since start : 68.21846137600001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000304589 s
sph::RenderFieldGetter compute custom field took : 0.000222928 s
rho_t_ampl=-0.000611855, rho_t_phi=3.14159 rad
eps_t_ampl=1.667e-09, eps_t_phi=2.98063e-06 rad
vx_t_ampl=8.89832e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 27223.61s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 26870.05834808091, dt = 49.4157158719341 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.45 us (3.4%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 711.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 254.65 us (91.9%)
LB move op cnt : 0
LB apply : 3.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.339748455824878e-22,6.796853085506038e-23,6.10674222084735e-23)
sum a = (-7.814655016884564e-26,-7.175394085996335e-26,-1.9121538343183817e-26)
sum e = 7.857915865543475e-16
sum de = -4.622231866529366e-32
Info: cfl dt = 49.41536255085546 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0915e+04 | 2592 | 1 | 8.384e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2121762.999986853 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26919.474063952846, dt = 49.41536255085546 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.22 us (1.9%)
patch tree reduce : 1.33 us (0.6%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.6%)
LB compute : 207.22 us (92.5%)
LB move op cnt : 0
LB apply : 2.88 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4470693001719423e-22,5.874103234560686e-23,6.079238455124797e-23)
sum a = (-4.2962738016946176e-26,-8.013324967667122e-26,1.1334546102665574e-25)
sum e = 7.857814766155114e-16
sum de = -2.0029671421627253e-32
Info: cfl dt = 49.41506428579787 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9901e+04 | 2592 | 1 | 8.669e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2052194.5233094052 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26968.8894265037, dt = 49.41506428579787 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (1.8%)
patch tree reduce : 1.24 us (0.5%)
gen split merge : 761.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 214.22 us (93.3%)
LB move op cnt : 0
LB apply : 2.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.43346163330497e-22,5.456987325806723e-23,6.966631019430123e-23)
sum a = (-1.6144562012904372e-25,1.5901896626251306e-25,1.1488670686978217e-26)
sum e = 7.857734198363511e-16
sum de = -3.0814879110195774e-33
Info: cfl dt = 49.41480449105546 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0034e+04 | 2592 | 1 | 8.630e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2061292.9449824847 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27018.3044907895, dt = 49.41480449105546 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.93 us (1.5%)
patch tree reduce : 1.13 us (0.4%)
gen split merge : 761.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 245.15 us (94.3%)
LB move op cnt : 0
LB apply : 2.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.570565295700502e-22,6.833720555584893e-23,6.771739068889184e-23)
sum a = (-2.4722692590113423e-25,1.7602552344603165e-25,3.005549165522233e-26)
sum e = 7.857656754294329e-16
sum de = -2.7733391199176196e-32
Info: cfl dt = 49.414583370429845 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9325e+04 | 2592 | 1 | 8.839e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2012650.7864058933 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27067.719295280553, dt = 49.414583370429845 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (2.0%)
patch tree reduce : 1.19 us (0.5%)
gen split merge : 882.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 202.92 us (92.8%)
LB move op cnt : 0
LB apply : 2.81 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.69046681318873e-22,7.745097253355756e-23,6.966130820110031e-23)
sum a = (-1.6495585259030574e-25,-1.6871691388341182e-27,2.857600213061519e-26)
sum e = 7.857582692695951e-16
sum de = -8.16594296420188e-32
Info: cfl dt = 49.414401013294295 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9219e+04 | 2592 | 1 | 8.871e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2005305.9106865537 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27117.133878650984, dt = 49.414401013294295 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.31 us (2.0%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 196.33 us (92.4%)
LB move op cnt : 0
LB apply : 2.92 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (63.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7502891977171174e-22,7.298274748743911e-23,7.103682005051789e-23)
sum a = (-8.905961216001915e-26,-1.685511719503044e-25,-1.3679471354054703e-25)
sum e = 7.857512158690879e-16
sum de = 3.543711097672514e-32
Info: cfl dt = 49.41425749369383 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9472e+04 | 2592 | 1 | 8.795e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2022706.5835871047 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27166.54827966428, dt = 49.41425749369383 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.88 us (2.1%)
patch tree reduce : 1.06 us (0.5%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 216.03 us (93.0%)
LB move op cnt : 0
LB apply : 2.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.768261587918779e-22,6.052984680786598e-23,6.019136342183815e-23)
sum a = (5.433965215478646e-26,-1.3554181364853633e-25,5.270283844792736e-26)
sum e = 7.857445292340351e-16
sum de = 6.008901426488176e-32
Info: cfl dt = 49.41415286850364 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9240e+04 | 2592 | 1 | 8.865e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2006770.9086708867 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27215.96253715797, dt = 7.6492102397969575 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.63 us (2.0%)
patch tree reduce : 992.00 ns (0.4%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 215.97 us (92.9%)
LB move op cnt : 0
LB apply : 2.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7456677259509757e-22,6.030719777746594e-23,6.527643892754436e-23)
sum a = (7.327610262884458e-26,-4.37676478362756e-26,1.2487441155220214e-25)
sum e = 7.85704872322277e-16
sum de = -5.700752635386218e-32
Info: cfl dt = 49.41415755882477 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9785e+04 | 2592 | 1 | 8.702e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 316436.59994089865 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 620 [SPH][rank=0]
Info: time since start : 69.16296710900001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000298309 s
sph::RenderFieldGetter compute custom field took : 0.00025317300000000004 s
rho_t_ampl=-0.000411694, rho_t_phi=3.14159 rad
eps_t_ampl=8.68429e-09, eps_t_phi=5.76757e-07 rad
vx_t_ampl=9.49769e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 27577.17s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 27223.61174739777, dt = 49.41415755882477 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.15 us (4.2%)
patch tree reduce : 1.64 us (0.7%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 217.47 us (90.5%)
LB move op cnt : 0
LB apply : 3.00 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.743100241636453e-22,5.849631899687889e-23,7.172303054306542e-23)
sum a = (-1.8715180463553574e-25,2.673098580613926e-25,5.300113308468937e-26)
sum e = 7.857397153207963e-16
sum de = -8.320017359752859e-32
Info: cfl dt = 49.414080354890224 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4114e+04 | 2592 | 1 | 5.876e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3027554.9093303233 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27273.025904956594, dt = 49.414080354890224 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (2.0%)
patch tree reduce : 1.04 us (0.5%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 184.37 us (92.9%)
LB move op cnt : 0
LB apply : 2.39 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (62.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.824232745975382e-22,7.939744657950536e-23,7.256625403898252e-23)
sum a = (2.942452360652885e-25,-1.2905735945989543e-26,1.0711749627473075e-25)
sum e = 7.857326279585125e-16
sum de = -6.933347799794049e-32
Info: cfl dt = 49.41405972189448 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4681e+04 | 2592 | 1 | 5.801e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3066505.8797614207 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27322.439985311485, dt = 49.41405972189448 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (2.0%)
patch tree reduce : 1.27 us (0.7%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 721.00 ns (0.4%)
LB compute : 180.26 us (93.2%)
LB move op cnt : 0
LB apply : 2.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6126720384586805e-22,7.182637662234337e-23,7.919641955674469e-23)
sum a = (2.673104701973548e-26,-6.58260651735333e-26,9.14307379623465e-26)
sum e = 7.857271868064652e-16
sum de = 8.320017359752859e-32
Info: cfl dt = 49.41407798216104 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4064e+04 | 2592 | 1 | 5.882e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3024140.321917768 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27371.85404503338, dt = 49.41407798216104 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.59 us (1.7%)
patch tree reduce : 771.00 ns (0.4%)
gen split merge : 631.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 611.00 ns (0.3%)
LB compute : 198.64 us (94.1%)
LB move op cnt : 0
LB apply : 1.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.669670190241093e-22,6.726788845579248e-23,8.332681196633374e-23)
sum a = (5.978678074199484e-25,9.443044412090713e-26,1.0023056773380556e-25)
sum e = 7.85722157572197e-16
sum de = -7.395570986446986e-32
Info: cfl dt = 49.414135191442426 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3955e+04 | 2592 | 1 | 5.897e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3016672.7763982103 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27421.26812301554, dt = 49.414135191442426 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (1.9%)
patch tree reduce : 771.00 ns (0.4%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.4%)
LB compute : 184.11 us (92.9%)
LB move op cnt : 0
LB apply : 2.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.231143869320552e-22,7.589744393855902e-23,8.849703652793112e-23)
sum a = (2.33330166317888e-25,-1.7674076758962767e-25,2.4054044978740615e-26)
sum e = 7.857175554046355e-16
sum de = 6.162975822039155e-33
Info: cfl dt = 49.41423131640201 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4640e+04 | 2592 | 1 | 5.806e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3063690.212728691 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27470.682258206984, dt = 49.41423131640201 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (1.7%)
patch tree reduce : 892.00 ns (0.4%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 215.99 us (93.9%)
LB move op cnt : 0
LB apply : 2.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1597678053768103e-22,6.046204917518561e-23,8.780355017368725e-23)
sum a = (1.1913791656245804e-25,6.196774771876332e-27,-1.2830380532498e-25)
sum e = 7.857133893522334e-16
sum de = -6.77927340424307e-32
Info: cfl dt = 49.4143663085384 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3823e+04 | 2592 | 1 | 5.915e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3007637.115940086 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27520.096489523385, dt = 49.4143663085384 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (1.8%)
patch tree reduce : 661.00 ns (0.3%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 751.00 ns (0.4%)
LB compute : 199.62 us (94.3%)
LB move op cnt : 0
LB apply : 1.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (58.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1808211767558996e-22,6.52831027298389e-23,7.769917590969219e-23)
sum a = (-1.1188239143047451e-25,3.4838347100309435e-26,5.0282545742645906e-26)
sum e = 7.857096677300864e-16
sum de = -6.933347799794049e-32
Info: cfl dt = 49.4145401022939 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4200e+04 | 2592 | 1 | 5.864e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3033521.4387906245 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27569.510855831923, dt = 7.65429088269957 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (2.1%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 181.45 us (92.5%)
LB move op cnt : 0
LB apply : 2.57 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.236278837949598e-22,6.625714209166109e-23,8.249641882582053e-23)
sum a = (-3.646253969135919e-25,-6.863253716184893e-26,6.28910837357318e-26)
sum e = 7.856987915609315e-16
sum de = 6.162975822039155e-32
Info: cfl dt = 49.414588578971276 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4912e+04 | 2592 | 1 | 5.771e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 477453.71538156684 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 628 [SPH][rank=0]
Info: time since start : 69.86603202500001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00029720800000000003 s
sph::RenderFieldGetter compute custom field took : 0.000246574 s
rho_t_ampl=-0.000201104, rho_t_phi=3.14159 rad
eps_t_ampl=8.03343e-09, eps_t_phi=6.3657e-07 rad
vx_t_ampl=9.85681e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 27930.72s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 27577.165146714622, dt = 49.414588578971276 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.02 us (3.5%)
patch tree reduce : 1.46 us (0.5%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 259.32 us (91.7%)
LB move op cnt : 0
LB apply : 3.75 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3887874062322688e-22,6.247491676082929e-23,8.565241056260042e-23)
sum a = (4.30473596923516e-27,-1.6970857414206913e-27,-5.905022365745004e-26)
sum e = 7.8570716524770895e-16
sum de = -6.162975822039155e-33
Info: cfl dt = 49.414788914504356 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4082e+04 | 2592 | 1 | 5.880e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3025387.244752345 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27626.579735293595, dt = 49.414788914504356 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (1.7%)
patch tree reduce : 660.00 ns (0.3%)
gen split merge : 550.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 205.09 us (93.8%)
LB move op cnt : 0
LB apply : 2.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3615720724983237e-22,6.404128277740044e-23,7.972161645739917e-23)
sum a = (2.645054183644713e-26,1.0056314050026725e-25,-1.4902105462942042e-25)
sum e = 7.857038039929125e-16
sum de = -5.238529448733282e-32
Info: cfl dt = 49.41504606209755 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4705e+04 | 2592 | 1 | 5.798e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3068197.16408498 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27675.9945242081, dt = 49.41504606209755 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.08 us (2.1%)
patch tree reduce : 791.00 ns (0.4%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 182.40 us (92.7%)
LB move op cnt : 0
LB apply : 2.37 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3353837324901885e-22,7.154656094900277e-23,7.013478936819721e-23)
sum a = (-8.77432749870459e-26,9.883908404835493e-26,2.0233139487821565e-25)
sum e = 7.857015304296682e-16
sum de = 4.468157470978387e-32
Info: cfl dt = 49.415341651641505 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4658e+04 | 2592 | 1 | 5.804e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3064944.0706643737 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27725.4095702702, dt = 49.415341651641505 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (1.8%)
patch tree reduce : 951.00 ns (0.5%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.4%)
LB compute : 185.21 us (93.0%)
LB move op cnt : 0
LB apply : 2.73 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.377490475248367e-22,7.63752367227148e-23,8.881411311118156e-23)
sum a = (1.7281391539253716e-25,-1.5250741893618811e-25,5.795462013216439e-26)
sum e = 7.856997249309175e-16
sum de = 9.244463733058732e-33
Info: cfl dt = 49.41567559051453 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4627e+04 | 2592 | 1 | 5.808e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3062831.567223714 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27774.82491192184, dt = 49.41567559051453 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (0.7%)
patch tree reduce : 641.00 ns (0.1%)
gen split merge : 451.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.1%)
LB compute : 510.50 us (97.5%)
LB move op cnt : 0
LB apply : 2.67 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2444947877560716e-22,6.263718979289563e-23,8.811076599326842e-23)
sum a = (-8.156589268244996e-26,6.339677912236548e-26,1.5105757323634617e-25)
sum e = 7.856983925938809e-16
sum de = -3.8518598887744717e-32
Info: cfl dt = 49.416047723876915 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3323e+04 | 2592 | 1 | 5.983e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2973376.3013353907 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27824.240587512355, dt = 49.416047723876915 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.8%)
patch tree reduce : 761.00 ns (0.4%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.4%)
LB compute : 185.83 us (93.3%)
LB move op cnt : 0
LB apply : 2.68 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3261407889579057e-22,7.109865528694574e-23,9.787580690494259e-23)
sum a = (2.098770339190654e-25,-4.219884130707974e-26,-7.69446356550208e-26)
sum e = 7.85697536100045e-16
sum de = 0
Info: cfl dt = 49.415997834825845 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4613e+04 | 2592 | 1 | 5.810e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3061959.8837947897 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27873.65663523623, dt = 49.415997834825845 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (1.9%)
patch tree reduce : 911.00 ns (0.5%)
gen split merge : 731.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 179.29 us (92.8%)
LB move op cnt : 0
LB apply : 2.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1073911253605396e-22,6.641058939639626e-23,8.844002693814201e-23)
sum a = (-6.542313279781812e-27,-1.0556860074807661e-26,-2.4831537739984054e-26)
sum e = 7.856971572439358e-16
sum de = -2.1570415377137042e-32
Info: cfl dt = 49.41554659236456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4579e+04 | 2592 | 1 | 5.814e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3059629.866549884 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27923.072633071057, dt = 7.645912960415444 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (1.7%)
patch tree reduce : 901.00 ns (0.4%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 511.00 ns (0.3%)
LB compute : 192.72 us (94.3%)
LB move op cnt : 0
LB apply : 2.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1998205606833703e-22,6.711223471922452e-23,8.953777752877415e-23)
sum a = (1.3356532456855912e-25,1.7937814313976337e-25,-2.647954216456875e-26)
sum e = 7.856971846785213e-16
sum de = 6.162975822039155e-33
Info: cfl dt = 49.41549705274632 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4519e+04 | 2592 | 1 | 5.822e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 472762.0392214692 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 636 [SPH][rank=0]
Info: time since start : 70.567218786 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000296297 s
sph::RenderFieldGetter compute custom field took : 0.00023047900000000001 s
rho_t_ampl=1.45899e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-2.69782e-10, eps_t_phi=6.28317 rad
vx_t_ampl=9.96661e-08, vx_t_phi=4.71239 rad
----- 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": [
1.0
],
"type": "constant_stopping_times"
},
"evol_mode": {
"type": "none"
},
"mode": {
"C_1_fluid": 0.1,
"C_drift": 1.0,
"cfl_density_threshold": 2.220446049250313e-16,
"clamp_dust_frac": null,
"dust_corrected_av": false,
"ensure_s_j_positivity": true,
"ndust": 1,
"pure_diffusion_mode": false,
"smooth_s_positivity_limiter": false,
"type": "monofluid_tva"
}
},
"enable_particle_reordering": false,
"eos_config": {
"Tvec": "f64_3",
"cs": 0.0031622776601683794,
"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"
},
"neigh_cache_strategy": "two_stage",
"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
}
]
------------------------------------
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 = 2592 ( 2.6e+03 ) Ntotal = 2592 ( 2.6e+03 rank min = 6.9e+06 max = 2.6e+03) rate = 2.592000e+03 N.s^-1
SPH setup: the generation step took : 0.0007391940000000001 s
SPH setup: final particle count = 2592 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 : 4.18 us (62.2%)
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 781.00 ns (0.3%)
patch tree reduce : 792.00 ns (0.3%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.3%)
LB compute : 256.42 us (96.6%)
LB move op cnt : 0
LB apply : 3.17 us (1.2%)
Info: patch count stable after 1 runs npatch = 1 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
SPH setup: injected 2592 / 2592 => 100.0% | ranks with patchs = 1 / 1 <- global loop -> (msg count : 0)
SPH setup: the injection step took : 0.004190011 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 | 1.6% 0.0% | 2.15 GB | 2.15 GB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 0.0061742690000000005 s
3.1622776601683796e-06
---------------- t = 0, dt = 0 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (1.0%)
patch tree reduce : 641.00 ns (0.3%)
gen split merge : 430.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 681.00 ns (0.3%)
LB compute : 221.18 us (96.2%)
LB move op cnt : 0
LB apply : 1.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (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: 1.183256172839506
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.030555555555555558 unconverged cnt = 2592
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.3290895061728396
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.03361111111111112 unconverged cnt = 2592
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.3290895061728396
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.03697222222222223 unconverged cnt = 2592
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.5088734567901234
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.04066944444444446 unconverged cnt = 2592
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.579861111111111
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.04473638888888891 unconverged cnt = 2592
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1840277777777777
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.049210027777777804 unconverged cnt = 2592
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.572759845179071e-24,0,0)
sum a = (-1.3886572387181868e-22,-2.1843502497826586e-23,2.1030939179290755e-23)
sum e = 7.856742013183861e-13
sum de = -2.524354896707238e-28
Info: cfl dt = 0.015626727013107633 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 | 1.4211e+04 | 2592 | 1 | 1.824e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [sph::Model][rank=0]
[ 2.22044605e-16-9.99802608e-01j -1.40506697e-02-9.86960402e-05j
1.40506697e-02-9.86960402e-05j 0.00000000e+00+0.00000000e+00j]
k=6.283185307179586 cs=0.0031622776601683794 ts=1 epsilon_0=0.5
eigenval = [-0.01404928-9.86960440e-05j 0.01404928-9.86960440e-05j
0. +4.42297751e-19j]
eigenvec = [[ 8.16483150e-01+0.00000000e+00j 8.16483150e-01+0.00000000e+00j
8.94427191e-01+0.00000000e+00j]
[ 4.02918285e-05-5.73550134e-03j 4.02918285e-05+5.73550134e-03j
4.47213595e-01+2.04384070e-17j]
[-5.77326527e-01-4.05571196e-03j 5.77326527e-01-4.05571196e-03j
-1.38043796e-17+7.84561320e-16j]]
447.2246304615506
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 : 71.309051628 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000274785 s
sph::RenderFieldGetter compute custom field took : 0.00021692 s
offset_rho=0.999981, ampl_rho=1.5987e-16, phi_rho=5.96884 rad
offset_eps=0.500009, ampl_eps=7.71362e-17, phi_eps=2.839 rad
offset_vx=0, ampl_vx=3.16228e-06, phi_vx=4.71239 rad
eigenval = [-0.01404928-9.86960440e-05j 0.01404928-9.86960440e-05j
0. +4.42297751e-19j]
eigenvec = [[ 8.16483150e-01+0.00000000e+00j 8.16483150e-01+0.00000000e+00j
8.94427191e-01+0.00000000e+00j]
[ 4.02918285e-05-5.73550134e-03j 4.02918285e-05+5.73550134e-03j
4.47213595e-01+2.04384070e-17j]
[-5.77326527e-01-4.05571196e-03j 5.77326527e-01-4.05571196e-03j
-1.38043796e-17+7.84561320e-16j]]
eigenvec=[[ 8.16483150e-01+0.00000000e+00j 8.16483150e-01+0.00000000e+00j
8.94427191e-01+0.00000000e+00j]
[ 4.02918285e-05-5.73550134e-03j 4.02918285e-05+5.73550134e-03j
4.47213595e-01+2.04384070e-17j]
[-5.77326527e-01-4.05571196e-03j 5.77326527e-01-4.05571196e-03j
-1.38043796e-17+7.84561320e-16j]]
v=[1.59870093e-16+0.j 7.71362122e-17+0.j 0.00000000e+00-0.001j]
c=[ 1.21675362e-05+8.65975542e-04j 1.21675362e-05-8.65975542e-04j
-2.22144147e-05+2.12918321e-21j]
coefs=[ 1.21675362e-05+8.65975542e-04j 1.21675362e-05-8.65975542e-04j
-2.22144147e-05+2.12918321e-21j]
coefs=[ 1.21675362e-05+8.65975542e-04j 1.21675362e-05-8.65975542e-04j
-2.22144147e-05+2.12918321e-21j]
decomp=[1.59868998e-16+1.90439936e-21j 7.71342083e-17+1.86406343e-24j
7.30172686e-22-1.00000000e-03j]
rho_t_ampl=-1.5987e-16, rho_t_phi=2.82724 rad
eps_t_ampl=-7.71362e-17, eps_t_phi=5.98059 rad
vx_t_ampl=3.16228e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 11.18s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0, dt = 0.015626727013107633 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.42 us (4.3%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 218.73 us (90.4%)
LB move op cnt : 0
LB apply : 3.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.722992818085409e-23,-3.413424413729224e-25,3.2864474538405424e-25)
sum a = (-7.420676742716286e-22,9.110973830695934e-23,3.457189824820694e-23)
sum e = 7.856742013183864e-13
sum de = -1.7165613297609217e-27
Info: cfl dt = 0.5313086680074991 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 | 3.1645e+04 | 2592 | 1 | 8.191e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 686.8124934683717 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.015626727013107633, dt = 0.5313086680074991 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (2.1%)
patch tree reduce : 992.00 ns (0.5%)
gen split merge : 821.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 188.58 us (92.4%)
LB move op cnt : 0
LB apply : 2.85 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (57.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.007037629169425e-22,4.894859595627272e-23,1.880279438956233e-23)
sum a = (3.5798032627971086e-22,2.14470627152598e-22,5.324007717412172e-23)
sum e = 7.856742013222172e-13
sum de = -2.3224065049706588e-27
Info: cfl dt = 0.8750938074908906 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 | 3.0093e+04 | 2592 | 1 | 8.613e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22206.49362537927 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5469353950206067, dt = 0.8750938074908906 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.81 us (2.1%)
patch tree reduce : 1.48 us (0.6%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 211.43 us (92.5%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.54694444000689e-22,2.6940187766725113e-22,7.035213887460081e-23)
sum a = (1.3638797614285887e-22,1.4452126154193806e-22,-4.854462370847051e-23)
sum e = 7.856742138701952e-13
sum de = -1.0097419586828951e-28
Info: cfl dt = 1.1042793925347705 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 | 3.0577e+04 | 2592 | 1 | 8.477e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37163.813043062364 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4220292025114973, dt = 1.1042793925347705 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.91 us (2.2%)
patch tree reduce : 1.42 us (0.6%)
gen split merge : 831.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 210.70 us (92.4%)
LB move op cnt : 0
LB apply : 2.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.938964154327826e-22,3.983876777475808e-22,-2.7790269424853276e-23)
sum a = (-3.3623052478030726e-22,-1.4926203576678867e-22,9.274976083193164e-23)
sum e = 7.856743279380031e-13
sum de = -1.7165613297609217e-27
Info: cfl dt = 1.257065126271388 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 | 3.0150e+04 | 2592 | 1 | 8.597e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46241.630850220165 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5263085950462676, dt = 1.257065126271388 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (2.0%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 237.84 us (92.7%)
LB move op cnt : 0
LB apply : 2.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9107921078815473e-22,4.8546245403546834e-23,1.6681645895140662e-22)
sum a = (2.1035719924426865e-22,8.250121919484224e-23,-1.6060517762903485e-22)
sum e = 7.856746921025182e-13
sum de = -2.5748419946413825e-27
Info: cfl dt = 1.3589180412955908 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 | 3.0304e+04 | 2592 | 1 | 8.553e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52908.548614622945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7833737213176555, dt = 1.3589180412955908 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.74 us (1.8%)
patch tree reduce : 1.58 us (0.6%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 239.34 us (93.3%)
LB move op cnt : 0
LB apply : 2.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8568046562630875e-22,3.063292739959055e-22,-2.1067464330813097e-22)
sum a = (3.4894679318683107e-22,-1.2507484167518527e-22,-5.033867946247821e-23)
sum e = 7.856754394388043e-13
sum de = -1.7670484276950664e-27
Info: cfl dt = 1.4268163200763067 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 | 3.0416e+04 | 2592 | 1 | 8.522e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57406.44544455982 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.1422917626132465, dt = 1.4268163200763067 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (1.7%)
patch tree reduce : 1.61 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 251.74 us (93.4%)
LB move op cnt : 0
LB apply : 3.16 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.166654107634995e-22,-1.3169640001984813e-23,-2.0757712584177079e-22)
sum a = (-9.257867034861233e-23,-2.110222315888715e-22,-1.236797073004863e-22)
sum e = 7.856766545300469e-13
sum de = -1.5146129380243427e-28
Info: cfl dt = 1.4720787630409824 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 | 3.0615e+04 | 2592 | 1 | 8.466e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60670.06975894757 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.569108082689553, dt = 1.4720787630409824 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (0.8%)
patch tree reduce : 1.36 us (0.3%)
gen split merge : 781.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 517.12 us (97.1%)
LB move op cnt : 0
LB apply : 2.82 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.530512540393942e-22,-3.851263078494565e-22,-4.419654841031716e-22)
sum a = (2.0506818155635112e-22,2.1141074537133842e-22,2.1033271898445353e-22)
sum e = 7.856783765558118e-13
sum de = -1.0097419586828951e-27
Info: cfl dt = 1.5022512051358807 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 | 2.9956e+04 | 2592 | 1 | 8.653e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61247.67485442044 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.041186845730536, dt = 1.5022512051358807 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (1.9%)
patch tree reduce : 1.64 us (0.7%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 219.60 us (92.8%)
LB move op cnt : 0
LB apply : 2.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.92017561344078e-22,2.4339330073783395e-22,1.1985339613366167e-22)
sum a = (-4.307917744230404e-23,-2.780244518617967e-22,8.068173463961793e-23)
sum e = 7.856806142878931e-13
sum de = 9.592548607487504e-28
Info: cfl dt = 1.5223641656239808 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 | 2.9945e+04 | 2592 | 1 | 8.656e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62479.01382764182 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.543438050866417, dt = 1.5223641656239808 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (2.1%)
patch tree reduce : 1.46 us (0.6%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.4%)
LB compute : 213.95 us (92.7%)
LB move op cnt : 0
LB apply : 2.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.276985652146013e-22,-5.4748834938177965e-22,1.452962040298638e-22)
sum a = (-1.4133359280370894e-22,4.7685943841741785e-23,-8.596954426497147e-23)
sum e = 7.856833600696918e-13
sum de = -2.069971015299935e-27
Info: cfl dt = 1.5357712931768945 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 | 2.9773e+04 | 2592 | 1 | 8.706e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62951.39793399601 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.065802216490397, dt = 0.11481354504836716 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.42 us (1.9%)
patch tree reduce : 1.29 us (0.6%)
gen split merge : 14.00 us (6.0%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 205.52 us (87.6%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.09388888001378e-22,-2.9408787735866793e-22,8.57376830672271e-24)
sum a = (-4.6044621825578187e-23,3.0821211254194844e-22,-1.2930525132460678e-22)
sum e = 7.856762552239773e-13
sum de = 1.0602290566170399e-27
Info: cfl dt = 1.5447137126635908 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 | 3.1488e+04 | 2592 | 1 | 8.232e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5021.2155242814 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 12 [SPH][rank=0]
Info: time since start : 72.482365822 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000273984 s
sph::RenderFieldGetter compute custom field took : 0.00021684000000000002 s
rho_t_ampl=0.000216239, rho_t_phi=3.14159 rad
eps_t_ampl=-1.26527e-07, eps_t_phi=6.28319 rad
vx_t_ampl=3.12229e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 22.36s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 11.180615761538764, dt = 1.5447137126635908 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.55 us (3.2%)
patch tree reduce : 1.50 us (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 273.53 us (92.2%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.845064509429756e-22,1.9696847059052307e-22,-1.9365358961115368e-22)
sum a = (-1.5274606058176402e-22,-2.936308200191226e-23,-9.22863237134472e-23)
sum e = 7.856857077365834e-13
sum de = 1.5146129380243427e-28
Info: cfl dt = 1.5506694599824253 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 | 2.9827e+04 | 2592 | 1 | 8.690e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63992.89321218806 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.725329474202354, dt = 1.5506694599824253 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (2.0%)
patch tree reduce : 1.53 us (0.7%)
gen split merge : 812.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 212.08 us (92.8%)
LB move op cnt : 0
LB apply : 2.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4154892431033086e-22,-1.092928929438015e-22,-3.0816735081311727e-22)
sum a = (1.2511030129131626e-22,-3.8627776438910646e-23,-9.101342361040523e-23)
sum e = 7.856901075170876e-13
sum de = 6.058451752097371e-28
Info: cfl dt = 1.5546397960377223 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 | 3.0877e+04 | 2592 | 1 | 8.395e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66500.1424958914 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.275998934184779, dt = 1.5546397960377223 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.63 us (2.0%)
patch tree reduce : 1.50 us (0.6%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 219.89 us (92.9%)
LB move op cnt : 0
LB apply : 2.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.274639775756204e-22,-1.7653109486220731e-22,-4.486735174737794e-22)
sum a = (3.775710339383702e-22,-1.463197777225756e-23,-1.4701575627019071e-22)
sum e = 7.856943245343408e-13
sum de = -3.07971297398283e-27
Info: cfl dt = 1.5572865776070532 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 | 3.0847e+04 | 2592 | 1 | 8.403e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66605.81655076041 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.830638730222502, dt = 1.5572865776070532 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 us (1.7%)
patch tree reduce : 1.45 us (0.5%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 249.11 us (93.9%)
LB move op cnt : 0
LB apply : 2.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.429575266326448e-21,-1.8066464431623343e-22,-7.211509089220329e-22)
sum a = (5.1763693136178335e-23,5.518163155679817e-23,-5.782936916086009e-23)
sum e = 7.856989829555541e-13
sum de = -2.0194839173657902e-28
Info: cfl dt = 1.5590514191308151 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 | 3.0620e+04 | 2592 | 1 | 8.465e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66228.73803230704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.387925307829555, dt = 1.5590514191308151 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (2.0%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 211.00 us (92.1%)
LB move op cnt : 0
LB apply : 3.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1140827937578525e-21,-4.027159322743064e-23,-7.418654872043973e-22)
sum a = (4.249314914751415e-22,-5.21324054466004e-23,-2.0604860179895716e-23)
sum e = 7.857040703657962e-13
sum de = -1.1107161545511846e-27
Info: cfl dt = 1.5602287273637745 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 | 3.0734e+04 | 2592 | 1 | 8.434e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66549.07934549157 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.94697672696037, dt = 1.5602287273637745 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (1.5%)
patch tree reduce : 1.59 us (0.6%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 251.21 us (94.0%)
LB move op cnt : 0
LB apply : 2.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1180718601089554e-21,-2.0526074287994036e-22,-7.449963202037834e-22)
sum a = (2.002637765327998e-22,-6.419465486286858e-23,-6.028727653489871e-23)
sum e = 7.857095745888326e-13
sum de = -2.0194839173657902e-28
Info: cfl dt = 1.561014771320639 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 | 3.0609e+04 | 2592 | 1 | 8.468e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66330.02209140928 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.507205454324144, dt = 1.561014771320639 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (1.6%)
patch tree reduce : 1.24 us (0.5%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 244.05 us (94.0%)
LB move op cnt : 0
LB apply : 2.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1624379890639142e-21,-3.1488349738274443e-22,-8.700624723815871e-22)
sum a = (-1.4231565555401403e-22,-3.2731914777707937e-24,1.027874415856982e-22)
sum e = 7.857154833547603e-13
sum de = 1.0097419586828951e-27
Info: cfl dt = 1.5615403952840217 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 | 3.0885e+04 | 2592 | 1 | 8.392e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66961.12685461805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.068220225644783, dt = 0.293011297432745 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.45 us (1.8%)
patch tree reduce : 1.20 us (0.5%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 233.63 us (93.6%)
LB move op cnt : 0
LB apply : 2.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9447153191923576e-21,-2.682888722766645e-22,-7.126635688551745e-22)
sum a = (2.523772894068319e-22,-8.094804162308984e-23,2.5687824847249637e-23)
sum e = 7.856840597495163e-13
sum de = -4.543838814073028e-28
Info: cfl dt = 1.561890432390597 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 | 3.1278e+04 | 2592 | 1 | 8.287e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12728.843463934563 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 20 [SPH][rank=0]
Info: time since start : 73.39104015400001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00027857 s
sph::RenderFieldGetter compute custom field took : 0.000236168 s
rho_t_ampl=0.000427018, rho_t_phi=3.14159 rad
eps_t_ampl=-4.88376e-07, eps_t_phi=6.28319 rad
vx_t_ampl=3.0035e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 33.54s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 22.361231523077528, dt = 1.561890432390597 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.93 us (3.2%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 289.54 us (92.3%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3497616446515177e-21,-4.0610240396821993e-22,-6.83837530363384e-22)
sum a = (-3.414625764099963e-22,5.778306483383945e-23,-3.785722975329141e-23)
sum e = 7.857205668039947e-13
sum de = -1.8175355256292112e-27
Info: cfl dt = 1.562126241659728 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 | 3.0230e+04 | 2592 | 1 | 8.574e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65577.95591756553 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.923121955468126, dt = 1.562126241659728 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (2.1%)
patch tree reduce : 1.50 us (0.6%)
gen split merge : 892.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 224.05 us (92.8%)
LB move op cnt : 0
LB apply : 2.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3712420227004837e-21,-2.0749646008069614e-22,-7.926005088006865e-22)
sum a = (-6.673533604524101e-23,-2.7474960556015133e-22,6.123831673659432e-23)
sum e = 7.857285278756443e-13
sum de = -2.0194839173657902e-28
Info: cfl dt = 1.5622863327519734 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 | 3.0520e+04 | 2592 | 1 | 8.493e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66217.73609239096 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25.485248197127852, dt = 1.5622863327519734 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.9%)
patch tree reduce : 2.00 us (0.9%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 216.39 us (92.3%)
LB move op cnt : 0
LB apply : 3.82 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5807487427655665e-21,-8.964556022092422e-22,-6.1952884672066e-22)
sum a = (-9.614586886810284e-23,-1.3651554801973673e-22,-3.167537411823956e-23)
sum e = 7.857356420111478e-13
sum de = -3.2311742677852644e-27
Info: cfl dt = 1.5623959939872984 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 | 3.0383e+04 | 2592 | 1 | 8.531e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65926.04186895078 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27.047534529879826, dt = 1.5623959939872984 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.48 us (1.9%)
patch tree reduce : 1.57 us (0.7%)
gen split merge : 1.12 us (0.5%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.4%)
LB compute : 223.44 us (93.0%)
LB move op cnt : 0
LB apply : 2.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3014064493454561e-21,-1.0017673900801923e-21,-7.415972190250791e-22)
sum a = (4.1247919254970455e-22,1.8587212431869364e-22,-8.317374876034036e-23)
sum e = 7.857431026686256e-13
sum de = 1.8175355256292112e-27
Info: cfl dt = 1.5624724508518686 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 | 2.9803e+04 | 2592 | 1 | 8.697e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64672.64109585438 (tsim/hr) [sph::Model][rank=0]
---------------- t = 28.609930523867124, dt = 1.5624724508518686 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.74 us (2.0%)
patch tree reduce : 1.60 us (0.7%)
gen split merge : 912.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 226.26 us (93.2%)
LB move op cnt : 0
LB apply : 2.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.373587899090292e-21,-4.595058771255878e-22,-9.117843372160338e-22)
sum a = (-9.365540908301545e-23,2.8861808269899536e-23,9.578472983034798e-23)
sum e = 7.857508975801059e-13
sum de = 2.473867798773093e-27
Info: cfl dt = 1.5625271860739294 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 | 2.9782e+04 | 2592 | 1 | 8.703e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64629.494041603946 (tsim/hr) [sph::Model][rank=0]
---------------- t = 30.17240297471899, dt = 1.5625271860739294 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (2.1%)
patch tree reduce : 1.68 us (0.8%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.4%)
LB compute : 202.88 us (92.4%)
LB move op cnt : 0
LB apply : 2.82 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8888468605083356e-21,-5.3708121218063e-22,-6.223092465231826e-22)
sum a = (-1.3429868578191571e-22,1.1090200857713303e-22,-1.8078970222417114e-23)
sum e = 7.857590114186505e-13
sum de = 1.2621774483536189e-27
Info: cfl dt = 1.5625678528926192 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 | 2.9715e+04 | 2592 | 1 | 8.723e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64486.17836892341 (tsim/hr) [sph::Model][rank=0]
---------------- t = 31.73493016079292, dt = 1.5625678528926192 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.81 us (1.9%)
patch tree reduce : 1.54 us (0.6%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 236.18 us (93.3%)
LB move op cnt : 0
LB apply : 2.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6037534022236932e-21,-2.9967396100516424e-22,-7.395164276258674e-22)
sum a = (1.384580103714431e-22,-7.510651334576966e-23,6.898907198223644e-23)
sum e = 7.857674280748308e-13
sum de = 1.2874209973206913e-27
Info: cfl dt = 1.562599551321692 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 | 3.0273e+04 | 2592 | 1 | 8.562e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65698.67430636575 (tsim/hr) [sph::Model][rank=0]
---------------- t = 33.29749801368554, dt = 0.24434927093075487 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (1.8%)
patch tree reduce : 1.55 us (0.6%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 248.37 us (93.4%)
LB move op cnt : 0
LB apply : 2.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (42.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.888025265527688e-21,-4.633619176304622e-22,-6.546341363031568e-22)
sum a = (-1.9050091742682582e-22,1.4522616479926941e-22,2.3603111022885627e-23)
sum e = 7.856945486790986e-13
sum de = -6.310887241768094e-28
Info: cfl dt = 1.5626155729684432 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 | 3.1183e+04 | 2592 | 1 | 8.312e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10582.84584878816 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 28 [SPH][rank=0]
Info: time since start : 74.31107205400001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000267474 s
sph::RenderFieldGetter compute custom field took : 0.000207746 s
rho_t_ampl=0.000627019, rho_t_phi=3.14159 rad
eps_t_ampl=-1.07312e-06, eps_t_phi=1.2387e-11 rad
vx_t_ampl=2.80908e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 44.72s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 33.541847284616296, dt = 1.5626155729684432 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.02 us (3.1%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 295.84 us (92.9%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4870869149717648e-21,-2.095115340981726e-22,-6.232965606837047e-22)
sum a = (7.39820605229824e-23,1.865345051841338e-22,-8.834738418170664e-23)
sum e = 7.857741187758915e-13
sum de = -2.4233807008389483e-27
Info: cfl dt = 1.5626368297788218 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 | 2.9076e+04 | 2592 | 1 | 8.915e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63104.017834449754 (tsim/hr) [sph::Model][rank=0]
---------------- t = 35.104462857584736, dt = 1.5626368297788218 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.63 us (2.0%)
patch tree reduce : 1.53 us (0.7%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 208.70 us (92.4%)
LB move op cnt : 0
LB apply : 2.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8370863767275502e-21,1.142402145747042e-22,-8.488192306248098e-22)
sum a = (3.3847145718357694e-22,7.514487517195345e-23,-9.024803462324758e-23)
sum e = 7.857847954635061e-13
sum de = -7.825500179792437e-28
Info: cfl dt = 1.562656813398163 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 | 3.0030e+04 | 2592 | 1 | 8.631e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65175.6832779907 (tsim/hr) [sph::Model][rank=0]
---------------- t = 36.66709968736356, dt = 1.562656813398163 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.60 us (1.7%)
patch tree reduce : 1.61 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 250.37 us (93.8%)
LB move op cnt : 0
LB apply : 2.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5329773253358845e-21,1.4465046160253345e-22,-9.913309500148773e-22)
sum a = (-2.509587543230579e-22,5.615426682563586e-23,7.462573655795383e-23)
sum e = 7.857940629272177e-13
sum de = -2.0447274663328626e-27
Info: cfl dt = 1.562676004196607 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 | 3.0100e+04 | 2592 | 1 | 8.611e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65328.472719621015 (tsim/hr) [sph::Model][rank=0]
---------------- t = 38.229756500761724, dt = 1.562676004196607 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (2.1%)
patch tree reduce : 1.60 us (0.7%)
gen split merge : 1.08 us (0.5%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.4%)
LB compute : 205.51 us (92.6%)
LB move op cnt : 0
LB apply : 2.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7302790292433903e-21,2.175694231515336e-22,-7.458945412567919e-22)
sum a = (-5.662586655680641e-23,-1.5729000635668968e-23,3.4810602637718944e-23)
sum e = 7.858035530005866e-13
sum de = 3.534096855390133e-28
Info: cfl dt = 1.5626950644332762 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 | 2.9914e+04 | 2592 | 1 | 8.665e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64925.76739277682 (tsim/hr) [sph::Model][rank=0]
---------------- t = 39.79243250495833, dt = 1.5626950644332762 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.32 us (1.8%)
patch tree reduce : 1.48 us (0.6%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 219.70 us (93.1%)
LB move op cnt : 0
LB apply : 2.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7853258929467652e-21,1.3682204145978294e-22,-7.226052615153895e-22)
sum a = (7.648535772964239e-23,6.987182904173467e-23,-6.66841937383718e-23)
sum e = 7.858132538435251e-13
sum de = -1.9689968194316455e-27
Info: cfl dt = 1.5627144339497991 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 | 2.9981e+04 | 2592 | 1 | 8.646e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65070.42258883244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 41.355127569391605, dt = 1.5627144339497991 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (2.0%)
patch tree reduce : 1.58 us (0.7%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 216.81 us (92.6%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9825086883021373e-21,3.128936970389891e-22,-9.061163222679384e-22)
sum a = (3.9962893355551654e-22,1.413084695685219e-22,1.1558073258730806e-22)
sum e = 7.858231463857911e-13
sum de = -3.281661365719409e-28
Info: cfl dt = 1.562734402655989 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 | 2.9041e+04 | 2592 | 1 | 8.925e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63030.76342131582 (tsim/hr) [sph::Model][rank=0]
---------------- t = 42.917842003341406, dt = 1.562734402655989 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (1.9%)
patch tree reduce : 1.53 us (0.7%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 202.85 us (92.7%)
LB move op cnt : 0
LB apply : 2.83 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.805746858910816e-21,5.895361202346089e-22,-5.830803195836027e-22)
sum a = (2.3009794426755794e-22,-4.7767143040497475e-23,5.1991893541919946e-23)
sum e = 7.858332109828054e-13
sum de = 1.6408306828597046e-27
Info: cfl dt = 1.562755160274197 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 | 2.9065e+04 | 2592 | 1 | 8.918e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63084.91874542974 (tsim/hr) [sph::Model][rank=0]
---------------- t = 44.4805764059974, dt = 0.24188664015765937 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.65 us (2.3%)
patch tree reduce : 1.52 us (0.7%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 189.05 us (91.8%)
LB move op cnt : 0
LB apply : 2.92 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.803282073968874e-21,4.302574167500803e-22,-6.201904083398608e-22)
sum a = (1.7439637206397983e-22,1.0444195226704947e-23,-1.2274144014814553e-22)
sum e = 7.85708005949673e-13
sum de = -7.573064690121713e-28
Info: cfl dt = 1.562759368597342 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 | 2.9678e+04 | 2592 | 1 | 8.734e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9970.428548844606 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 36 [SPH][rank=0]
Info: time since start : 75.246486837 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000325739 s
sph::RenderFieldGetter compute custom field took : 0.000231381 s
rho_t_ampl=0.000811212, rho_t_phi=3.14159 rad
eps_t_ampl=-1.86532e-06, eps_t_phi=2.78346e-11 rad
vx_t_ampl=2.5441e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 55.90s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 44.722463046155056, dt = 1.562759368597342 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.89 us (3.9%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.4%)
LB compute : 232.45 us (91.2%)
LB move op cnt : 0
LB apply : 3.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.9996432743435985e-21,4.536255357064816e-22,-8.331385733515156e-22)
sum a = (-2.7144727915295207e-22,-1.2249302182202128e-22,7.668868901007757e-23)
sum e = 7.858410609688354e-13
sum de = 1.5146129380243427e-28
Info: cfl dt = 1.5627805681025773 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 | 4.4233e+04 | 2592 | 1 | 5.860e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96008.05260303972 (tsim/hr) [sph::Model][rank=0]
---------------- t = 46.2852224147524, dt = 1.5627805681025773 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (1.9%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 721.00 ns (0.4%)
LB compute : 184.35 us (93.1%)
LB move op cnt : 0
LB apply : 2.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3752310890515866e-21,1.5833354832124486e-22,-5.574603290119943e-22)
sum a = (-1.150746469769242e-22,-9.734200565236688e-23,-3.7348545111554074e-23)
sum e = 7.858533490881613e-13
sum de = -1.7670484276950664e-28
Info: cfl dt = 1.562803285234225 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 | 4.4634e+04 | 2592 | 1 | 5.807e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96879.13106995108 (tsim/hr) [sph::Model][rank=0]
---------------- t = 47.84800298285497, dt = 1.562803285234225 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (1.8%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 701.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 182.75 us (92.5%)
LB move op cnt : 0
LB apply : 2.67 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.297179565890085e-21,2.583932260912988e-23,-7.049363447737717e-22)
sum a = (-2.141281918312244e-23,2.7651705775057475e-22,1.2769973496503358e-22)
sum e = 7.858638375514436e-13
sum de = -8.582806648804608e-28
Info: cfl dt = 1.5628270805577162 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 | 4.5322e+04 | 2592 | 1 | 5.719e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98374.40310509747 (tsim/hr) [sph::Model][rank=0]
---------------- t = 49.410806268089196, dt = 1.5628270805577162 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (1.8%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 841.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 185.17 us (93.0%)
LB move op cnt : 0
LB apply : 2.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2454190821093e-21,7.500937518433093e-22,-3.76394743627404e-22)
sum a = (-9.82062750305076e-24,-9.380750244094413e-23,-1.8526957573274794e-23)
sum e = 7.858744002064225e-13
sum de = 6.563322731438818e-28
Info: cfl dt = 1.5628519651990136 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 | 4.4250e+04 | 2592 | 1 | 5.858e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96047.75102490144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 50.97363334864691, dt = 1.5628519651990136 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (2.1%)
patch tree reduce : 1.10 us (0.6%)
gen split merge : 581.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 491.00 ns (0.3%)
LB compute : 178.28 us (93.7%)
LB move op cnt : 0
LB apply : 1.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.234738347360884e-21,3.1416700879122284e-22,-5.196131531796068e-22)
sum a = (-6.644649405985717e-23,-5.440273604673314e-23,6.527770257761156e-24)
sum e = 7.858850290182351e-13
sum de = 1.262177448353619e-28
Info: cfl dt = 1.5628779441555039 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 | 4.4966e+04 | 2592 | 1 | 5.764e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97603.80120337465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 52.53648531384593, dt = 1.5628779441555039 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (1.9%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 183.41 us (92.7%)
LB move op cnt : 0
LB apply : 2.92 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.146827684431614e-21,2.5990322780377767e-22,-4.89832629705003e-22)
sum a = (-9.178756424419991e-24,-1.1638516719324736e-22,5.649414850655233e-23)
sum e = 7.8589570315435e-13
sum de = -1.2874209973206913e-27
Info: cfl dt = 1.562905016089412 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 | 4.4621e+04 | 2592 | 1 | 5.809e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96856.77223372147 (tsim/hr) [sph::Model][rank=0]
---------------- t = 54.09936325800143, dt = 1.562905016089412 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (2.0%)
patch tree reduce : 1.40 us (0.7%)
gen split merge : 751.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.5%)
LB compute : 178.82 us (92.4%)
LB move op cnt : 0
LB apply : 2.77 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.118893455089603e-21,2.954051171628455e-23,-3.6249196636729474e-22)
sum a = (-2.0514199673039365e-23,-4.980057055912855e-23,-5.473298185612838e-23)
sum e = 7.85906401480136e-13
sum de = -1.5651000359584874e-27
Info: cfl dt = 1.562933175225479 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 | 4.4677e+04 | 2592 | 1 | 5.802e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96979.95060392222 (tsim/hr) [sph::Model][rank=0]
---------------- t = 55.66226827409084, dt = 0.2408105336029891 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (1.7%)
patch tree reduce : 1.27 us (0.7%)
gen split merge : 631.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 721.00 ns (0.4%)
LB compute : 180.22 us (93.7%)
LB move op cnt : 0
LB apply : 2.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1451844944703193e-21,6.959808105593424e-23,-4.625909649182036e-22)
sum a = (-1.2728303489248142e-22,9.409484004098744e-23,6.001305569796491e-23)
sum e = 7.857227300824604e-13
sum de = -1.0097419586828951e-28
Info: cfl dt = 1.562938046746408 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 | 4.5876e+04 | 2592 | 1 | 5.650e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15343.601262414064 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 44 [SPH][rank=0]
Info: time since start : 75.943279735 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000290478 s
sph::RenderFieldGetter compute custom field took : 0.000246012 s
rho_t_ampl=0.000974976, rho_t_phi=3.14159 rad
eps_t_ampl=-2.84454e-06, eps_t_phi=3.88547e-11 rad
vx_t_ampl=2.21538e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 67.08s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 55.90307880769383, dt = 1.562938046746408 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.09 us (4.1%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 751.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.4%)
LB compute : 222.25 us (90.8%)
LB move op cnt : 0
LB apply : 2.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.888025265527688e-21,2.3397805493788095e-22,-3.5497824960030023e-22)
sum a = (2.9277023638506617e-22,-2.8190912583431933e-22,-2.0602557656706625e-23)
sum e = 7.859146355552754e-13
sum de = 2.524354896707238e-29
Info: cfl dt = 1.5629670336832453 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 | 4.4386e+04 | 2592 | 1 | 5.840e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96351.26390934411 (tsim/hr) [sph::Model][rank=0]
---------------- t = 57.46601685444024, dt = 1.5629670336832453 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (1.8%)
patch tree reduce : 1.37 us (0.7%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.2%)
LB compute : 197.66 us (94.1%)
LB move op cnt : 0
LB apply : 2.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.737554475517083e-21,-5.004492285537479e-22,-4.501779726642224e-22)
sum a = (-9.715360646155314e-23,-9.905499909346274e-23,1.1727083978287692e-22)
sum e = 7.859272850159319e-13
sum de = -3.7865323450608567e-28
Info: cfl dt = 1.5629974937446107 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 | 4.4563e+04 | 2592 | 1 | 5.816e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96737.10859907643 (tsim/hr) [sph::Model][rank=0]
---------------- t = 59.028983888123484, dt = 1.5629974937446107 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (2.0%)
patch tree reduce : 991.00 ns (0.5%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.4%)
LB compute : 182.50 us (93.0%)
LB move op cnt : 0
LB apply : 1.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.326756985193391e-21,-5.1239284464937e-22,-1.591381564842762e-22)
sum a = (4.294374264471295e-22,-4.9761556832630517e-23,8.747958177516142e-23)
sum e = 7.859379410560157e-13
sum de = -8.077935669463161e-28
Info: cfl dt = 1.5630290113024543 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 | 4.4610e+04 | 2592 | 1 | 5.810e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96839.95341666178 (tsim/hr) [sph::Model][rank=0]
---------------- t = 60.591981381868095, dt = 1.5630290113024543 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (1.9%)
patch tree reduce : 1.04 us (0.5%)
gen split merge : 650.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.4%)
LB compute : 188.26 us (93.4%)
LB move op cnt : 0
LB apply : 2.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3389620013509678e-21,-5.516320283637654e-22,-4.568686307385671e-23)
sum a = (-1.5689896646050508e-22,1.623497557187088e-22,6.04630363423663e-23)
sum e = 7.85948513662923e-13
sum de = 1.0097419586828951e-28
Info: cfl dt = 1.5630615675671489 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 | 4.4183e+04 | 2592 | 1 | 5.867e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95915.50906463548 (tsim/hr) [sph::Model][rank=0]
---------------- t = 62.15501039317055, dt = 1.5630615675671489 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.05 us (2.0%)
patch tree reduce : 1.17 us (0.6%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 190.90 us (93.0%)
LB move op cnt : 0
LB apply : 2.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (63.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5978833288070277e-21,-1.321099054037848e-22,2.770676314298632e-23)
sum a = (2.074398951918918e-22,-7.952531933345133e-23,-6.210664626565926e-25)
sum e = 7.859590015870068e-13
sum de = 1.7670484276950664e-28
Info: cfl dt = 1.5630951468952903 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 | 4.4207e+04 | 2592 | 1 | 5.863e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95968.75219035828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 63.718071960737696, dt = 1.5630951468952903 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.82 us (2.0%)
patch tree reduce : 1.13 us (0.6%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 611.00 ns (0.3%)
LB compute : 180.49 us (93.5%)
LB move op cnt : 0
LB apply : 1.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.246943363518461e-21,-4.454858080905953e-22,-2.100312957264121e-23)
sum a = (-2.39674660760729e-23,3.882407365276222e-23,-4.549302334704202e-23)
sum e = 7.859693843277596e-13
sum de = -1.4136387421560532e-27
Info: cfl dt = 1.5631297329524512 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 | 4.4090e+04 | 2592 | 1 | 5.879e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95717.88275744353 (tsim/hr) [sph::Model][rank=0]
---------------- t = 65.28116710763298, dt = 1.5631297329524512 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (1.8%)
patch tree reduce : 1.34 us (0.6%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 192.56 us (92.9%)
LB move op cnt : 0
LB apply : 2.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.020183148859783e-21,-2.922326693567129e-22,-1.2718419602733743e-22)
sum a = (3.1169259578310123e-22,9.58512099260689e-23,3.838205514567123e-23)
sum e = 7.859796413819646e-13
sum de = 2.7767903863779616e-28
Info: cfl dt = 1.5631653087538708 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 | 3.6629e+04 | 2592 | 1 | 7.076e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79522.45040510186 (tsim/hr) [sph::Model][rank=0]
---------------- t = 66.84429684058543, dt = 0.23939772864716247 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.18 us (1.9%)
patch tree reduce : 921.00 ns (0.4%)
gen split merge : 731.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.4%)
LB compute : 207.68 us (93.3%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.389900890151106e-21,-2.2472387866172183e-22,-5.2441804681424964e-23)
sum a = (-2.752343185168736e-23,6.52347116680515e-23,-1.0408715247377694e-22)
sum e = 7.857372148304663e-13
sum de = 1.1864468014524018e-27
Info: cfl dt = 1.5631711909954875 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 | 4.6505e+04 | 2592 | 1 | 5.574e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15462.687106403378 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 52 [SPH][rank=0]
Info: time since start : 76.652604593 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00031878900000000004 s
sph::RenderFieldGetter compute custom field took : 0.00025733900000000004 s
rho_t_ampl=0.00111422, rho_t_phi=3.14159 rad
eps_t_ampl=-3.98563e-06, eps_t_phi=2.84226e-11 rad
vx_t_ampl=1.83138e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 78.26s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 67.08369456923259, dt = 1.5631711909954875 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.78 us (3.9%)
patch tree reduce : 1.50 us (0.6%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.4%)
LB compute : 225.47 us (90.7%)
LB move op cnt : 0
LB apply : 3.48 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2395490086926345e-21,-1.264566258787443e-22,-2.3220124513453723e-22)
sum a = (1.3579424539512541e-22,2.6609758458963273e-22,-1.575422729504458e-22)
sum e = 7.859874369628527e-13
sum de = 5.048709793414476e-29
Info: cfl dt = 1.5632075503713807 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 | 4.4161e+04 | 2592 | 1 | 5.869e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95877.70160350033 (tsim/hr) [sph::Model][rank=0]
---------------- t = 68.64686576022808, dt = 1.5632075503713807 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (1.8%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.4%)
LB compute : 181.11 us (93.1%)
LB move op cnt : 0
LB apply : 2.32 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.64623852411309e-21,4.465336626264599e-22,-5.20252267883277e-22)
sum a = (9.760291621659467e-23,6.606137141267871e-23,4.3904115677356484e-23)
sum e = 7.859991658904676e-13
sum de = -2.271919407036514e-28
Info: cfl dt = 1.5632451919859374 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 | 4.4280e+04 | 2592 | 1 | 5.854e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96137.30436499286 (tsim/hr) [sph::Model][rank=0]
---------------- t = 70.21007331059945, dt = 1.5632451919859374 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (2.1%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 187.99 us (92.3%)
LB move op cnt : 0
LB apply : 2.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.737435566964949e-21,3.934717852337509e-22,-2.941681122933159e-22)
sum a = (2.1607947991026196e-22,1.8301233793250349e-22,-1.9319656827208498e-23)
sum e = 7.860089224275754e-13
sum de = 1.1612032524853294e-27
Info: cfl dt = 1.5632837709398137 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 | 4.4860e+04 | 2592 | 1 | 5.778e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97398.14079430922 (tsim/hr) [sph::Model][rank=0]
---------------- t = 71.7733185025854, dt = 1.5632837709398137 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (1.6%)
patch tree reduce : 1.02 us (0.5%)
gen split merge : 550.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 661.00 ns (0.3%)
LB compute : 182.76 us (94.3%)
LB move op cnt : 0
LB apply : 1.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.188491211340363e-21,7.710123302958861e-22,-3.7378734746506035e-22)
sum a = (-7.036190763950486e-23,9.802314118838576e-23,9.141909253026205e-23)
sum e = 7.860184445090122e-13
sum de = 1.7165613297609217e-27
Info: cfl dt = 1.5633232632445504 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 | 4.4809e+04 | 2592 | 1 | 5.785e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97289.45164597828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 73.33660227352522, dt = 1.5633232632445504 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 us (1.7%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 204.56 us (93.4%)
LB move op cnt : 0
LB apply : 2.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.823703039932924e-21,8.577451597958687e-22,-1.4431170856527715e-22)
sum a = (-6.228716947032978e-23,-1.7197486327366725e-22,1.1072271743727772e-22)
sum e = 7.860277399455721e-13
sum de = -3.0292258760486853e-28
Info: cfl dt = 1.5633636491700997 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 | 3.3023e+04 | 2592 | 1 | 7.849e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71701.21056553422 (tsim/hr) [sph::Model][rank=0]
---------------- t = 74.89992553676977, dt = 1.5633636491700997 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (1.9%)
patch tree reduce : 1.45 us (0.7%)
gen split merge : 721.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 203.04 us (92.7%)
LB move op cnt : 0
LB apply : 2.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.750991884145631e-21,3.7797862207330073e-22,4.387706595467727e-23)
sum a = (2.190192494503909e-22,9.788378495967365e-23,3.073227466658452e-23)
sum e = 7.860367906090504e-13
sum de = -9.087677628146056e-28
Info: cfl dt = 1.563404908568176 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 | 3.3522e+04 | 2592 | 1 | 7.732e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72787.11966379572 (tsim/hr) [sph::Model][rank=0]
---------------- t = 76.46328918593987, dt = 1.563404908568176 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (2.2%)
patch tree reduce : 1.27 us (0.6%)
gen split merge : 751.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 200.58 us (92.8%)
LB move op cnt : 0
LB apply : 2.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (89.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.305568496082615e-21,7.418842207476219e-22,2.939697976548619e-23)
sum a = (-6.862885572720178e-23,-2.485413575193428e-22,1.5549991802717142e-22)
sum e = 7.860455786712899e-13
sum de = 2.524354896707238e-29
Info: cfl dt = 1.563447020851321 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 | 3.3444e+04 | 2592 | 1 | 7.750e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72620.34078032059 (tsim/hr) [sph::Model][rank=0]
---------------- t = 78.02669409450804, dt = 0.23761623626330675 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (1.9%)
patch tree reduce : 1.20 us (0.5%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 214.37 us (92.9%)
LB move op cnt : 0
LB apply : 2.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.0812730663658795e-21,4.1198495181915883e-22,1.638774580563885e-22)
sum a = (5.449485457575226e-23,6.043692593999858e-23,-7.948090119463104e-23)
sum e = 7.857500126647326e-13
sum de = 4.796274303743752e-28
Info: cfl dt = 1.563453759700516 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 | 3.4673e+04 | 2592 | 1 | 7.476e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11442.79573692288 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 60 [SPH][rank=0]
Info: time since start : 77.426394594 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000279982 s
sph::RenderFieldGetter compute custom field took : 0.00021891300000000002 s
rho_t_ampl=0.00122546, rho_t_phi=3.14159 rad
eps_t_ampl=-5.25938e-06, eps_t_phi=4.58393e-11 rad
vx_t_ampl=1.40189e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 89.44s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 78.26431033077135, dt = 1.563453759700516 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.20 us (3.7%)
patch tree reduce : 1.52 us (0.6%)
gen split merge : 821.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 249.89 us (91.7%)
LB move op cnt : 0
LB apply : 3.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.1527518296822015e-21,5.432283312667921e-22,1.1695115330529455e-23)
sum a = (1.7267615757324938e-22,-7.518892858934229e-23,2.9576367794227954e-23)
sum e = 7.860521616757066e-13
sum de = 8.835242138475332e-29
Info: cfl dt = 1.5634965756250359 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 | 3.3461e+04 | 2592 | 1 | 7.746e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72658.34354992396 (tsim/hr) [sph::Model][rank=0]
---------------- t = 79.82776409047187, dt = 1.5634965756250359 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (1.8%)
patch tree reduce : 1.37 us (0.6%)
gen split merge : 761.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 204.51 us (93.0%)
LB move op cnt : 0
LB apply : 2.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.545474230431651e-21,3.196421690919433e-22,1.431906637079545e-22)
sum a = (-1.9487205947230135e-23,1.477135405944087e-22,1.1196711473852379e-22)
sum e = 7.860617839771594e-13
sum de = 2.1835669856517607e-27
Info: cfl dt = 1.563540446170675 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 | 3.3779e+04 | 2592 | 1 | 7.673e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73351.10142420937 (tsim/hr) [sph::Model][rank=0]
---------------- t = 81.39126066609691, dt = 1.563540446170675 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (2.0%)
patch tree reduce : 1.03 us (0.5%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.4%)
LB compute : 207.12 us (93.3%)
LB move op cnt : 0
LB apply : 2.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.330216345502037e-21,7.248008219898639e-22,3.8266460159760843e-22)
sum a = (-1.1218622712308574e-22,-5.0429253192940574e-23,5.109815216963304e-23)
sum e = 7.860696670056421e-13
sum de = 3.0292258760486853e-28
Info: cfl dt = 1.5635842538371365 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 | 3.3319e+04 | 2592 | 1 | 7.779e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72355.80392871633 (tsim/hr) [sph::Model][rank=0]
---------------- t = 82.95480111226759, dt = 1.5635842538371365 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (1.8%)
patch tree reduce : 1.46 us (0.6%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 215.53 us (93.0%)
LB move op cnt : 0
LB apply : 2.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.062787179301313e-21,4.91073096772649e-22,4.1497532528376685e-22)
sum a = (1.2349599552855988e-23,7.369582613885549e-24,2.4019552293648133e-22)
sum e = 7.860771858461296e-13
sum de = 2.9030081312133234e-28
Info: cfl dt = 1.5636278627075135 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 | 3.7530e+04 | 2592 | 1 | 6.906e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81501.56867244364 (tsim/hr) [sph::Model][rank=0]
---------------- t = 84.51838536610472, dt = 1.5636278627075135 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (1.8%)
patch tree reduce : 1.36 us (0.6%)
gen split merge : 782.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 196.55 us (92.9%)
LB move op cnt : 0
LB apply : 2.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.2008151360500736e-21,5.477695691481048e-22,9.383865731317563e-22)
sum a = (1.9433288776625152e-22,-1.0447946160820697e-22,1.4678888511816687e-22)
sum e = 7.860843586632643e-13
sum de = -1.2874209973206913e-27
Info: cfl dt = 1.5636722134840249 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 | 4.4400e+04 | 2592 | 1 | 5.838e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96423.48923915022 (tsim/hr) [sph::Model][rank=0]
---------------- t = 86.08201322881224, dt = 1.5636722134840249 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (1.8%)
patch tree reduce : 1.18 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 191.00 us (93.2%)
LB move op cnt : 0
LB apply : 2.64 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.6871993645933246e-21,2.9696486388391825e-22,1.094889663312038e-21)
sum a = (-3.333878382408212e-23,1.3221165199898337e-22,-6.563946069203686e-23)
sum e = 7.860911719000443e-13
sum de = 1.0097419586828951e-28
Info: cfl dt = 1.5637172840319475 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 | 4.3683e+04 | 2592 | 1 | 5.934e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94869.22434610313 (tsim/hr) [sph::Model][rank=0]
---------------- t = 87.64568544229627, dt = 1.5637172840319475 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (2.0%)
patch tree reduce : 1.36 us (0.7%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 471.00 ns (0.2%)
LB compute : 185.73 us (93.4%)
LB move op cnt : 0
LB apply : 2.77 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.466601112289502e-21,6.887790170571052e-22,8.261639532633347e-22)
sum a = (8.531750377160177e-23,2.3382320354016126e-22,-3.2323562921080735e-23)
sum e = 7.860976121843251e-13
sum de = 1.5146129380243427e-28
Info: cfl dt = 1.56376305185944 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 | 3.9083e+04 | 2592 | 1 | 6.632e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84881.13998132969 (tsim/hr) [sph::Model][rank=0]
---------------- t = 89.20940272632822, dt = 0.23552336598189072 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (2.1%)
patch tree reduce : 1.02 us (0.5%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.4%)
LB compute : 185.55 us (93.2%)
LB move op cnt : 0
LB apply : 1.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.529042330818703e-21,8.233216138489006e-22,8.4459932151246255e-22)
sum a = (2.227164268633041e-22,1.0409443925338455e-22,-1.309964158646868e-22)
sum e = 7.857598599753991e-13
sum de = -1.7670484276950664e-28
Info: cfl dt = 1.5637701754936866 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 | 3.3714e+04 | 2592 | 1 | 7.688e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11028.233646367786 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 68 [SPH][rank=0]
Info: time since start : 78.223091631 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00026996800000000004 s
sph::RenderFieldGetter compute custom field took : 0.000206665 s
rho_t_ampl=0.00130596, rho_t_phi=3.14159 rad
eps_t_ampl=-6.63331e-06, eps_t_phi=3.09228e-11 rad
vx_t_ampl=9.37862e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 100.63s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 89.44492609231011, dt = 1.5637701754936866 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.05 us (3.6%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 257.76 us (91.6%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.9024572495229394e-21,9.70797912875106e-22,6.281311520590119e-22)
sum a = (-2.4018815762363364e-22,1.3188830944312312e-22,-3.890217861558173e-23)
sum e = 7.861023348016021e-13
sum de = -1.6408306828597046e-28
Info: cfl dt = 1.563816558762897 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 | 2.9972e+04 | 2592 | 1 | 8.648e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65096.80904146612 (tsim/hr) [sph::Model][rank=0]
---------------- t = 91.0086962678038, dt = 1.563816558762897 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (2.0%)
patch tree reduce : 1.54 us (0.7%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.4%)
LB compute : 199.04 us (92.7%)
LB move op cnt : 0
LB apply : 2.86 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.191366793772629e-21,1.1988868006665497e-21,6.393023917402012e-22)
sum a = (-7.988727444638546e-23,7.197531077105692e-23,-7.288687658004368e-23)
sum e = 7.861088773157086e-13
sum de = 1.8932661725304283e-28
Info: cfl dt = 1.5638637427801163 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 | 3.7230e+04 | 2592 | 1 | 6.962e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80862.19709686731 (tsim/hr) [sph::Model][rank=0]
---------------- t = 92.5725128265667, dt = 1.5638637427801163 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (1.5%)
patch tree reduce : 1.22 us (0.5%)
gen split merge : 782.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.4%)
LB compute : 219.58 us (94.1%)
LB move op cnt : 0
LB apply : 2.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.190545198791981e-21,1.2646400739614856e-21,4.987443314211261e-22)
sum a = (2.277358586981967e-22,5.861692055501224e-23,6.122221487764759e-23)
sum e = 7.861141019763083e-13
sum de = -2.7136815139602806e-28
Info: cfl dt = 1.5639115566380362 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 | 4.4585e+04 | 2592 | 1 | 5.814e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96839.21147066036 (tsim/hr) [sph::Model][rank=0]
---------------- t = 94.13637656934681, dt = 1.5639115566380362 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (1.6%)
patch tree reduce : 1.24 us (0.5%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 218.02 us (94.6%)
LB move op cnt : 0
LB apply : 1.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.781066591132289e-21,1.345673088283227e-21,6.993546336456186e-22)
sum a = (-2.1450047705683026e-22,1.4954919158693666e-22,-5.019596700860053e-24)
sum e = 7.861188679505343e-13
sum de = 2.524354896707238e-28
Info: cfl dt = 1.5639599708541607 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 | 4.3976e+04 | 2592 | 1 | 5.894e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95520.52398197897 (tsim/hr) [sph::Model][rank=0]
---------------- t = 95.70028812598484, dt = 1.5639599708541607 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (1.5%)
patch tree reduce : 881.00 ns (0.4%)
gen split merge : 782.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 220.73 us (94.3%)
LB move op cnt : 0
LB apply : 2.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.0757273002465096e-21,1.6507255277578929e-21,6.397060180052904e-22)
sum a = (-1.7790098815330384e-22,-1.088469429826872e-22,-1.85916108244493e-22)
sum e = 7.861232042328009e-13
sum de = -2.8398992587956425e-28
Info: cfl dt = 1.564008961261321 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 | 4.0134e+04 | 2592 | 1 | 6.458e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87178.02935844482 (tsim/hr) [sph::Model][rank=0]
---------------- t = 97.264248096839, dt = 1.564008961261321 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.33 us (1.7%)
patch tree reduce : 1.34 us (0.5%)
gen split merge : 832.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 238.04 us (93.7%)
LB move op cnt : 0
LB apply : 2.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (63.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.833151382210369e-21,1.278417836664295e-21,2.074741072073579e-22)
sum a = (2.647333076704742e-22,5.182767965932934e-23,-2.9101139126813173e-24)
sum e = 7.861271024369103e-13
sum de = -1.6408306828597046e-28
Info: cfl dt = 1.5640585034188346 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 | 3.2519e+04 | 2592 | 1 | 7.971e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70638.57488621796 (tsim/hr) [sph::Model][rank=0]
---------------- t = 98.82825705810032, dt = 1.5640585034188346 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.60 us (1.9%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 222.70 us (93.2%)
LB move op cnt : 0
LB apply : 2.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.601548087860835e-21,1.4850618117186846e-21,3.460340263461877e-22)
sum a = (1.255114707154605e-22,-4.5013917282595626e-23,4.2222806573588734e-23)
sum e = 7.861305549720919e-13
sum de = -6.310887241768095e-30
Info: cfl dt = 1.5641085726126922 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 | 4.1842e+04 | 2592 | 1 | 6.195e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90894.11142202646 (tsim/hr) [sph::Model][rank=0]
---------------- t = 100.39231556151915, dt = 0.23322629232973213 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (1.8%)
patch tree reduce : 1.33 us (0.6%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 461.00 ns (0.2%)
LB compute : 220.58 us (94.2%)
LB move op cnt : 0
LB apply : 2.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.526372147131599e-21,1.398807176172282e-21,3.9117675901032353e-22)
sum a = (-1.9528285696262505e-22,-1.2445448957519648e-22,1.17776979748776e-22)
sum e = 7.857658048359086e-13
sum de = 1.135959703518257e-28
Info: cfl dt = 1.564116163374542 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 | 4.6035e+04 | 2592 | 1 | 5.630e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14912.051024948256 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 76 [SPH][rank=0]
Info: time since start : 79.143911207 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000287984 s
sph::RenderFieldGetter compute custom field took : 0.00023021 s
rho_t_ampl=0.00135375, rho_t_phi=3.14159 rad
eps_t_ampl=-8.07249e-06, eps_t_phi=1.84834e-11 rad
vx_t_ampl=4.51092e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 111.81s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 100.62554185384889, dt = 1.564116163374542 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.13 us (4.1%)
patch tree reduce : 1.59 us (0.6%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 222.63 us (90.8%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.177399679101623e-21,1.1950355741947651e-21,5.842042465485198e-22)
sum a = (-1.7663008341761492e-22,2.105436928803177e-22,-1.508062131387207e-22)
sum e = 7.861329630457905e-13
sum de = -5.679798517591285e-29
Info: cfl dt = 1.5641667393753238 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 | 3.3120e+04 | 2592 | 1 | 7.826e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71949.85611798163 (tsim/hr) [sph::Model][rank=0]
---------------- t = 102.18965801722342, dt = 1.5641667393753238 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (2.1%)
patch tree reduce : 982.00 ns (0.4%)
gen split merge : 881.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.6%)
LB compute : 205.25 us (92.5%)
LB move op cnt : 0
LB apply : 3.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.8999059743879694e-21,1.786388189581899e-21,1.382705272627324e-22)
sum a = (-2.6665892090636654e-22,5.961929250741462e-24,7.64194992958901e-24)
sum e = 7.861357649468434e-13
sum de = 8.835242138475332e-29
Info: cfl dt = 1.5642178505216744 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 | 3.5823e+04 | 2592 | 1 | 7.236e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77823.02006417456 (tsim/hr) [sph::Model][rank=0]
---------------- t = 103.75382475659875, dt = 1.5642178505216744 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (1.9%)
patch tree reduce : 1.32 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 215.61 us (93.3%)
LB move op cnt : 0
LB apply : 2.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.4246132780834575e-21,1.6355003457727711e-21,2.7414387504888646e-22)
sum a = (-4.9501097584004877e-23,-3.9992379308226256e-23,-3.9703409275739335e-23)
sum e = 7.861378162555763e-13
sum de = 4.417621069237666e-29
Info: cfl dt = 1.56426941514775 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 | 4.6462e+04 | 2592 | 1 | 5.579e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100938.96627608861 (tsim/hr) [sph::Model][rank=0]
---------------- t = 105.31804260712042, dt = 1.56426941514775 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (1.5%)
patch tree reduce : 1.31 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.2%)
LB compute : 208.08 us (94.8%)
LB move op cnt : 0
LB apply : 1.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.520739890819202e-21,1.53717853394811e-21,1.7500781823751286e-22)
sum a = (-2.066824873191075e-23,-1.4684430674464418e-22,8.377217193306315e-23)
sum e = 7.861393580364378e-13
sum de = 8.204153414298523e-29
Info: cfl dt = 1.5643186483860132 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 | 4.6886e+04 | 2592 | 1 | 5.528e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101865.2377334688 (tsim/hr) [sph::Model][rank=0]
---------------- t = 106.88231202226817, dt = 1.5643186483860132 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (1.7%)
patch tree reduce : 781.00 ns (0.4%)
gen split merge : 441.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 183.45 us (93.8%)
LB move op cnt : 0
LB apply : 1.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.5147833272095084e-21,1.2238908885346113e-21,4.026287266096171e-22)
sum a = (-2.47017665900265e-22,6.197927193729909e-23,-1.073153060420826e-22)
sum e = 7.861404279340008e-13
sum de = 1.8932661725304283e-29
Info: cfl dt = 1.5643669219121206 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 | 4.6657e+04 | 2592 | 1 | 5.555e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101369.75984360526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 108.44663067065417, dt = 1.5643669219121206 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.36 us (2.2%)
patch tree reduce : 901.00 ns (0.5%)
gen split merge : 822.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.6%)
LB compute : 181.54 us (92.5%)
LB move op cnt : 0
LB apply : 2.91 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.949590167631971e-21,1.484211332539499e-21,8.528735898747634e-23)
sum a = (-2.602145352769136e-23,-1.0374742770149978e-22,5.1932058471603374e-23)
sum e = 7.861410246317798e-13
sum de = -1.262177448353619e-29
Info: cfl dt = 1.5643838816648246 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 | 4.6967e+04 | 2592 | 1 | 5.519e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102047.0067331283 (tsim/hr) [sph::Model][rank=0]
---------------- t = 110.0109975925663, dt = 1.5643838816648246 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (1.5%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 441.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 590.00 ns (0.3%)
LB compute : 197.46 us (94.5%)
LB move op cnt : 0
LB apply : 2.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.079761622378291e-21,1.1922305975811486e-21,2.9108968892577287e-22)
sum a = (1.2105688542976296e-23,-4.312220286304351e-23,-3.237039041412851e-22)
sum e = 7.861411320513445e-13
sum de = -2.4454688061851366e-29
Info: cfl dt = 1.5643825238565856 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 | 4.6980e+04 | 2592 | 1 | 5.517e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102075.34115170396 (tsim/hr) [sph::Model][rank=0]
---------------- t = 111.57538147423112, dt = 0.23077614115653944 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (1.9%)
patch tree reduce : 722.00 ns (0.4%)
gen split merge : 681.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.5%)
LB compute : 172.61 us (92.8%)
LB move op cnt : 0
LB apply : 2.49 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1129977068297923e-21,1.229581075646673e-21,-7.743287159191771e-23)
sum a = (-1.0653776163113498e-22,-2.8296134308767165e-23,1.5279224736095285e-23)
sum e = 7.857672930968246e-13
sum de = -2.0510383535746307e-29
Info: cfl dt = 1.5643823537370292 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 | 4.6191e+04 | 2592 | 1 | 5.611e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14805.212650882713 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 84 [SPH][rank=0]
Info: time since start : 79.863576135 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000314283 s
sph::RenderFieldGetter compute custom field took : 0.00025989300000000003 s
rho_t_ampl=0.00136768, rho_t_phi=3.14159 rad
eps_t_ampl=-9.54037e-06, eps_t_phi=2.16946e-11 rad
vx_t_ampl=-4.60789e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 122.99s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 111.80615761538766, dt = 1.5643823537370292 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.00 us (4.0%)
patch tree reduce : 1.49 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.4%)
LB compute : 228.42 us (91.1%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.9344291727547124e-21,1.1872047470354697e-21,-1.441571283627147e-23)
sum a = (-1.8639936123437521e-23,-1.061962661588322e-22,-5.12174087790776e-23)
sum e = 7.861409752829975e-13
sum de = 3.155443620884047e-29
Info: cfl dt = 1.564357976539681 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 | 4.6344e+04 | 2592 | 1 | 5.593e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100692.99399710956 (tsim/hr) [sph::Model][rank=0]
---------------- t = 113.37053996912469, dt = 1.564357976539681 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (2.0%)
patch tree reduce : 992.00 ns (0.5%)
gen split merge : 641.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.5%)
LB compute : 174.41 us (92.8%)
LB move op cnt : 0
LB apply : 2.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.970579351903197e-21,9.602327149208435e-22,-1.4655115482447538e-22)
sum a = (-4.685658874004611e-24,-8.080600257385377e-23,-4.291969483729844e-23)
sum e = 7.861397123034574e-13
sum de = -9.466330862652142e-30
Info: cfl dt = 1.5643088378546834 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 | 4.6614e+04 | 2592 | 1 | 5.561e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101279.48699433239 (tsim/hr) [sph::Model][rank=0]
---------------- t = 114.93489794566437, dt = 1.5643088378546834 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.18 us (1.9%)
patch tree reduce : 1.33 us (0.6%)
gen split merge : 721.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 201.61 us (93.0%)
LB move op cnt : 0
LB apply : 2.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.9784872035919283e-21,8.535280668092646e-22,-2.0720051528056373e-22)
sum a = (-2.7930378115539264e-22,-1.583623322274272e-22,7.773627566903891e-23)
sum e = 7.861383430707966e-13
sum de = -1.7670484276950664e-28
Info: cfl dt = 1.5642600667404332 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 | 4.5956e+04 | 2592 | 1 | 5.640e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99845.75430249568 (tsim/hr) [sph::Model][rank=0]
---------------- t = 116.49920678351906, dt = 1.5642600667404332 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (1.7%)
patch tree reduce : 1.18 us (0.6%)
gen split merge : 821.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 441.00 ns (0.2%)
LB compute : 201.16 us (94.0%)
LB move op cnt : 0
LB apply : 2.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.326859684565972e-21,5.451988754781886e-22,8.770836987231545e-24)
sum a = (1.198373303803645e-22,1.7516240507938324e-22,5.444652041318822e-23)
sum e = 7.861364632447416e-13
sum de = 5.36425415550288e-29
Info: cfl dt = 1.5642085712617302 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5934e+04 | 2592 | 1 | 5.643e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99796.37403818032 (tsim/hr) [sph::Model][rank=0]
---------------- t = 118.06346685025949, dt = 1.5642085712617302 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 us (1.8%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 431.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 187.64 us (93.5%)
LB move op cnt : 0
LB apply : 2.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8285461196237808e-21,1.0800957201443532e-21,7.572093383725017e-23)
sum a = (2.0116239604288287e-23,-1.0485259931883912e-22,1.999502517192615e-23)
sum e = 7.861341187835388e-13
sum de = 2.8398992587956425e-28
Info: cfl dt = 1.5641575652180806 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5893e+04 | 2592 | 1 | 5.648e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99702.18963305652 (tsim/hr) [sph::Model][rank=0]
---------------- t = 119.62767542152122, dt = 1.5641575652180806 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.76 us (1.8%)
patch tree reduce : 942.00 ns (0.5%)
gen split merge : 530.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.4%)
LB compute : 195.49 us (93.4%)
LB move op cnt : 0
LB apply : 2.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7765802370978337e-21,6.970398978390832e-22,8.005164165211715e-23)
sum a = (-2.5092024205834006e-22,-9.55146789253899e-23,-8.716304746772903e-24)
sum e = 7.861313162062316e-13
sum de = 1.199068575935938e-28
Info: cfl dt = 1.5641070736726035 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5291e+04 | 2592 | 1 | 5.723e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98392.91914207883 (tsim/hr) [sph::Model][rank=0]
---------------- t = 121.1918329867393, dt = 1.5641070736726035 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (1.8%)
patch tree reduce : 1.14 us (0.5%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.2%)
LB compute : 196.21 us (93.9%)
LB move op cnt : 0
LB apply : 2.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1688053501639316e-21,5.551093649322476e-22,4.3963885791492365e-23)
sum a = (-1.8081508285028752e-22,-4.9134027560912904e-23,1.1460453188540272e-22)
sum e = 7.86128061369959e-13
sum de = -3.407879110554771e-28
Info: cfl dt = 1.5640571214165855 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4609e+04 | 2592 | 1 | 5.810e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96908.23360041232 (tsim/hr) [sph::Model][rank=0]
---------------- t = 122.7559400604119, dt = 0.23083331651450578 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (1.8%)
patch tree reduce : 1.10 us (0.5%)
gen split merge : 431.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 491.00 ns (0.2%)
LB compute : 193.56 us (94.0%)
LB move op cnt : 0
LB apply : 1.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1905776171510873e-21,5.799048446997543e-22,1.6686192642806611e-22)
sum a = (-5.1478060506187647e-23,8.194742987790014e-23,4.341518289323653e-24)
sum e = 7.857644021371429e-13
sum de = -1.0097419586828951e-28
Info: cfl dt = 1.5640498994193694 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6679e+04 | 2592 | 1 | 5.553e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14965.400467972622 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 92 [SPH][rank=0]
Info: time since start : 80.54846980800001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00033629600000000003 s
sph::RenderFieldGetter compute custom field took : 0.00024963700000000004 s
rho_t_ampl=0.00134747, rho_t_phi=3.14159 rad
eps_t_ampl=-1.09998e-05, eps_t_phi=2.36597e-11 rad
vx_t_ampl=-5.41067e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 134.17s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 122.98677337692641, dt = 1.5640498994193694 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.23 us (3.9%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.4%)
LB compute : 240.51 us (91.6%)
LB move op cnt : 0
LB apply : 2.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1156070751670133e-21,7.232860062442954e-22,1.6092608911312857e-22)
sum a = (1.6620609710065123e-22,1.3793934845220263e-22,-1.180066900282162e-22)
sum e = 7.861253774413926e-13
sum de = -1.262177448353619e-29
Info: cfl dt = 1.5640004801482659 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4487e+04 | 2592 | 1 | 5.826e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96639.11799210643 (tsim/hr) [sph::Model][rank=0]
---------------- t = 124.55082327634578, dt = 1.5640004801482659 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (1.7%)
patch tree reduce : 1.14 us (0.5%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 641.00 ns (0.3%)
LB compute : 198.97 us (94.2%)
LB move op cnt : 0
LB apply : 1.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5510524149101268e-21,9.827880646239288e-22,-1.1931578220845746e-22)
sum a = (-6.88085796292184e-23,-6.740097641225232e-23,-7.13244910608501e-23)
sum e = 7.861202045815849e-13
sum de = 1.5146129380243427e-28
Info: cfl dt = 1.5639517745301368 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4872e+04 | 2592 | 1 | 5.776e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97471.80722729334 (tsim/hr) [sph::Model][rank=0]
---------------- t = 126.11482375649405, dt = 1.5639517745301368 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (1.8%)
patch tree reduce : 1.64 us (0.8%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 194.42 us (92.7%)
LB move op cnt : 0
LB apply : 2.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (60.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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2694507352932362e-21,7.168095270609109e-22,-1.943583557708012e-22)
sum a = (-5.690828983140394e-23,-7.634454726176777e-23,-3.7726415447981265e-23)
sum e = 7.861156167983171e-13
sum de = 8.835242138475332e-29
Info: cfl dt = 1.5639036782514575 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5187e+04 | 2592 | 1 | 5.736e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98152.32433503588 (tsim/hr) [sph::Model][rank=0]
---------------- t = 127.67877553102419, dt = 1.5639036782514575 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (1.9%)
patch tree reduce : 1.27 us (0.6%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 187.99 us (92.8%)
LB move op cnt : 0
LB apply : 2.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1870858384833357e-21,5.905278110510935e-22,-2.2708595066915106e-22)
sum a = (-1.6695066755186292e-22,3.001113359698375e-22,-1.7974844498850393e-22)
sum e = 7.861105678117058e-13
sum de = 1.3757734187054446e-27
Info: cfl dt = 1.5638562208411673 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5303e+04 | 2592 | 1 | 5.721e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98402.75902831089 (tsim/hr) [sph::Model][rank=0]
---------------- t = 129.24267920927565, dt = 1.5638562208411673 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (1.8%)
patch tree reduce : 1.13 us (0.5%)
gen split merge : 541.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.3%)
LB compute : 200.17 us (94.2%)
LB move op cnt : 0
LB apply : 2.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (54.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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8342107942952844e-21,1.3541810894304779e-21,-6.192410617466904e-22)
sum a = (2.349248147788613e-23,8.585888190948441e-23,9.709333052953873e-23)
sum e = 7.861051106417002e-13
sum de = -4.796274303743752e-28
Info: cfl dt = 1.5638094254369752 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4892e+04 | 2592 | 1 | 5.774e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97506.61703646265 (tsim/hr) [sph::Model][rank=0]
---------------- t = 130.8065354301168, dt = 1.5638094254369752 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (1.7%)
patch tree reduce : 1.41 us (0.7%)
gen split merge : 852.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 187.47 us (93.2%)
LB move op cnt : 0
LB apply : 2.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0178372724699746e-21,1.3206497442828065e-21,-2.5093522990129297e-22)
sum a = (2.8948385646247664e-23,-2.1884253431905536e-22,-9.210096069216303e-23)
sum e = 7.860992562136686e-13
sum de = -3.9127500898962186e-28
Info: cfl dt = 1.5637633148444021 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4751e+04 | 2592 | 1 | 5.792e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97198.02916532951 (tsim/hr) [sph::Model][rank=0]
---------------- t = 132.37034485555378, dt = 1.5637633148444021 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.97 us (2.0%)
patch tree reduce : 1.36 us (0.7%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.5%)
LB compute : 181.82 us (92.7%)
LB move op cnt : 0
LB apply : 2.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.073705731153997e-21,7.405009885731725e-22,-5.428912414193364e-22)
sum a = (4.6946450691054416e-23,2.2383197873949316e-23,3.2456503403405317e-23)
sum e = 7.860930163813445e-13
sum de = -1.7670484276950664e-28
Info: cfl dt = 1.563717911505156 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4858e+04 | 2592 | 1 | 5.778e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97426.43641445121 (tsim/hr) [sph::Model][rank=0]
---------------- t = 133.9341081703982, dt = 0.2332809680669925 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (1.8%)
patch tree reduce : 1.13 us (0.6%)
gen split merge : 691.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 441.00 ns (0.2%)
LB compute : 180.87 us (93.7%)
LB move op cnt : 0
LB apply : 1.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.102461555476655e-21,9.341920052607932e-22,-4.379305604140243e-22)
sum a = (1.6144341369721093e-22,7.986972328407915e-23,-6.497550087694623e-23)
sum e = 7.857574368322194e-13
sum de = 6.310887241768094e-29
Info: cfl dt = 1.5637113917996992 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6267e+04 | 2592 | 1 | 5.602e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14990.498799815692 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 100 [SPH][rank=0]
Info: time since start : 81.240522517 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00031013700000000004 s
sph::RenderFieldGetter compute custom field took : 0.000241126 s
rho_t_ampl=0.0012937, rho_t_phi=3.14159 rad
eps_t_ampl=-1.24139e-05, eps_t_phi=3.00555e-11 rad
vx_t_ampl=-1.02137e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 145.35s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 134.16738913846518, dt = 1.5637113917996992 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.07 us (4.1%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 222.41 us (90.8%)
LB move op cnt : 0
LB apply : 3.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4089164832581293e-21,1.0657627389585283e-21,-5.508980074624638e-22)
sum a = (1.5027485692903555e-22,6.952907991498143e-23,-1.1271514672225458e-22)
sum e = 7.86088109205656e-13
sum de = 8.582806648804608e-28
Info: cfl dt = 1.563666624249585 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2514e+04 | 2592 | 1 | 7.972e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70614.83451001391 (tsim/hr) [sph::Model][rank=0]
---------------- t = 135.73110053026488, dt = 1.563666624249585 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (2.1%)
patch tree reduce : 1.46 us (0.7%)
gen split merge : 832.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 200.33 us (92.3%)
LB move op cnt : 0
LB apply : 2.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6171908108522413e-21,1.1664145427986191e-21,-7.64472434463972e-22)
sum a = (-2.1765848276369367e-22,1.548371562051158e-22,4.5467101134929025e-23)
sum e = 7.860795655153484e-13
sum de = -3.660314600225495e-28
Info: cfl dt = 1.5636228209823089 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7609e+04 | 2592 | 1 | 6.892e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81677.40672599367 (tsim/hr) [sph::Model][rank=0]
---------------- t = 137.29476715451446, dt = 1.5636228209823089 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (1.7%)
patch tree reduce : 1.33 us (0.6%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 204.67 us (93.4%)
LB move op cnt : 0
LB apply : 2.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9545744589601263e-21,1.4752251374386682e-21,-5.697068867639771e-22)
sum a = (2.729235826338028e-23,7.301002700828092e-23,1.7656354628090963e-22)
sum e = 7.860722370791154e-13
sum de = 4.796274303743752e-28
Info: cfl dt = 1.5635797873412998 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4962e+04 | 2592 | 1 | 5.765e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97644.74715848474 (tsim/hr) [sph::Model][rank=0]
---------------- t = 138.85838997549678, dt = 1.5635797873412998 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 us (1.8%)
patch tree reduce : 1.28 us (0.7%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 501.00 ns (0.3%)
LB compute : 179.59 us (94.0%)
LB move op cnt : 0
LB apply : 1.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1944801933091623e-21,1.5254322932091669e-21,-1.911429979279414e-22)
sum a = (-3.1519721187242526e-22,-1.0460628129241456e-22,3.550261767746154e-23)
sum e = 7.8606454046101e-13
sum de = 7.825500179792437e-28
Info: cfl dt = 1.5635375499904882 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5176e+04 | 2592 | 1 | 5.738e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98105.01435298104 (tsim/hr) [sph::Model][rank=0]
---------------- t = 140.42196976283807, dt = 1.5635375499904882 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (1.9%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.4%)
LB compute : 177.56 us (92.5%)
LB move op cnt : 0
LB apply : 2.47 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4086245943199396e-21,1.2227900796347595e-21,-2.459133304403849e-22)
sum a = (-6.657486827558332e-23,-1.1463075300910861e-22,1.5082643295525592e-23)
sum e = 7.86056530961766e-13
sum de = -4.417621069237666e-28
Info: cfl dt = 1.5634951784897388 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5004e+04 | 2592 | 1 | 5.759e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97730.4576197994 (tsim/hr) [sph::Model][rank=0]
---------------- t = 141.98550731282856, dt = 1.5634951784897388 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (1.6%)
patch tree reduce : 1.36 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.4%)
LB compute : 216.55 us (93.9%)
LB move op cnt : 0
LB apply : 2.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5273450690234865e-21,1.0357745221648987e-21,-2.382953887267622e-22)
sum a = (-4.262023962108304e-24,-8.952777687799547e-23,1.25499682356882e-22)
sum e = 7.860482240370958e-13
sum de = 3.9127500898962186e-28
Info: cfl dt = 1.5634528412477113 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3999e+04 | 2592 | 1 | 5.891e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95545.24064057945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 143.5490024913183, dt = 1.5634528412477113 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (1.9%)
patch tree reduce : 1.15 us (0.6%)
gen split merge : 541.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 681.00 ns (0.4%)
LB compute : 180.60 us (94.0%)
LB move op cnt : 0
LB apply : 1.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5626736531913241e-21,9.15661187220723e-22,4.423570032746242e-23)
sum a = (-1.385542910332377e-22,-8.654553352508527e-23,2.1575599598361616e-23)
sum e = 7.86039636390003e-13
sum de = 5.553580772755923e-28
Info: cfl dt = 1.563411363825246 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4954e+04 | 2592 | 1 | 5.766e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97615.52973660252 (tsim/hr) [sph::Model][rank=0]
---------------- t = 145.11245533256601, dt = 0.23554956743791422 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (1.8%)
patch tree reduce : 901.00 ns (0.4%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.4%)
LB compute : 196.66 us (93.7%)
LB move op cnt : 0
LB apply : 2.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.449293545861985e-21,8.976952157298478e-22,-3.1922377751372337e-23)
sum a = (3.463022843428723e-22,7.263011956361633e-23,1.1123671699171878e-22)
sum e = 7.857469478307889e-13
sum de = 4.0389678347315804e-28
Info: cfl dt = 1.5634054739599186 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5973e+04 | 2592 | 1 | 5.638e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15040.240188392509 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 108 [SPH][rank=0]
Info: time since start : 81.968610181 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00030577 s
sph::RenderFieldGetter compute custom field took : 0.00025834 s
rho_t_ampl=0.0012078, rho_t_phi=3.14159 rad
eps_t_ampl=-1.37469e-05, eps_t_phi=3.29212e-11 rad
vx_t_ampl=-1.47488e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 156.53s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 145.34800490000393, dt = 1.5634054739599186 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.95 us (4.0%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 225.85 us (90.7%)
LB move op cnt : 0
LB apply : 3.62 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0613818064442863e-21,1.029939914060145e-21,1.5254553320783382e-22)
sum a = (1.7552606516236998e-22,4.0130983344268085e-24,1.2496981707420109e-23)
sum e = 7.8603300376148e-13
sum de = 7.825500179792437e-28
Info: cfl dt = 1.5633647150483316 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4386e+04 | 2592 | 1 | 5.840e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96379.531696815 (tsim/hr) [sph::Model][rank=0]
---------------- t = 146.91141037396386, dt = 1.5633647150483316 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (1.8%)
patch tree reduce : 1.02 us (0.5%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.3%)
LB compute : 193.23 us (93.5%)
LB move op cnt : 0
LB apply : 2.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1353253547025507e-21,9.82479966506186e-22,9.48977521335264e-23)
sum a = (2.0212520266082903e-22,-2.0946695414591458e-22,5.0133570156309625e-23)
sum e = 7.860219476762597e-13
sum de = 4.796274303743752e-28
Info: cfl dt = 1.5633251595294109 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4637e+04 | 2592 | 1 | 5.807e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96922.99559155591 (tsim/hr) [sph::Model][rank=0]
---------------- t = 148.47477508901218, dt = 1.5633251595294109 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (1.9%)
patch tree reduce : 1.13 us (0.6%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 185.56 us (93.1%)
LB move op cnt : 0
LB apply : 2.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.505864690974521e-21,4.881557927202722e-22,2.0269268088377884e-22)
sum a = (-1.2062041309629405e-22,-5.7976503715544e-24,-5.311386616332306e-23)
sum e = 7.8601262571081e-13
sum de = -9.34011311781678e-28
Info: cfl dt = 1.5632865195165615 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4660e+04 | 2592 | 1 | 5.804e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96969.22839651322 (tsim/hr) [sph::Model][rank=0]
---------------- t = 150.03810024854158, dt = 1.5632865195165615 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (2.2%)
patch tree reduce : 1.07 us (0.6%)
gen split merge : 931.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.4%)
LB compute : 178.54 us (92.2%)
LB move op cnt : 0
LB apply : 2.66 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.073705731153997e-21,6.383151128551542e-22,3.8955832483402015e-23)
sum a = (2.549511924321413e-22,1.3798448001241887e-22,1.8625358320714424e-22)
sum e = 7.860030627303991e-13
sum de = -2.0194839173657902e-28
Info: cfl dt = 1.5632488191717044 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4779e+04 | 2592 | 1 | 5.788e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97226.23237222269 (tsim/hr) [sph::Model][rank=0]
---------------- t = 151.60138676805815, dt = 1.5632488191717044 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (1.8%)
patch tree reduce : 1.14 us (0.6%)
gen split merge : 531.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 191.71 us (94.2%)
LB move op cnt : 0
LB apply : 1.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.730981715671904e-21,9.664075146972716e-22,5.1721647990460015e-22)
sum a = (-8.761540223309991e-23,-3.9299359128017097e-23,1.0861830630321575e-22)
sum e = 7.859933129236047e-13
sum de = -1.6913177807938493e-27
Info: cfl dt = 1.5632120764589468 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4613e+04 | 2592 | 1 | 5.810e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96863.25518405445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 153.16463558722984, dt = 1.5632120764589468 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 us (1.9%)
patch tree reduce : 1.03 us (0.5%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.5%)
LB compute : 183.30 us (93.3%)
LB move op cnt : 0
LB apply : 2.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3555128095160497e-21,7.664518362822145e-22,6.26328300569134e-22)
sum a = (1.1326457053518544e-22,1.0639183625310251e-22,5.277925824437712e-23)
sum e = 7.859833954089264e-13
sum de = 1.2621774483536189e-27
Info: cfl dt = 1.5631763088906805 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4312e+04 | 2592 | 1 | 5.849e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96207.93335692573 (tsim/hr) [sph::Model][rank=0]
---------------- t = 154.72784766368878, dt = 1.5631763088906805 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (1.9%)
patch tree reduce : 1.42 us (0.7%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.5%)
LB compute : 184.79 us (92.4%)
LB move op cnt : 0
LB apply : 2.96 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.707977056213777e-21,1.0465130253103914e-21,6.651874495257754e-22)
sum a = (2.247190646286321e-22,3.1100509168247404e-23,1.390616939014188e-22)
sum e = 7.859733298703568e-13
sum de = 6.563322731438818e-28
Info: cfl dt = 1.563141533478883 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3911e+04 | 2592 | 1 | 5.903e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95335.20751012042 (tsim/hr) [sph::Model][rank=0]
---------------- t = 156.29102397257947, dt = 0.2375966889632366 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.70 us (1.7%)
patch tree reduce : 1.04 us (0.5%)
gen split merge : 521.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 330.00 ns (0.2%)
LB compute : 200.66 us (94.8%)
LB move op cnt : 0
LB apply : 1.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8394322531173586e-21,9.95330225500374e-22,7.656653772045318e-22)
sum a = (2.58365946570457e-22,-1.075483074105543e-22,-9.70883458990672e-24)
sum e = 7.857340226020907e-13
sum de = 2.7767903863779616e-28
Info: cfl dt = 1.5631366968890066 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7265e+04 | 2592 | 1 | 6.956e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12297.289687194572 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 116 [SPH][rank=0]
Info: time since start : 82.67999010700001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000289456 s
sph::RenderFieldGetter compute custom field took : 0.00021463700000000003 s
rho_t_ampl=0.00109201, rho_t_phi=3.14159 rad
eps_t_ampl=-1.49655e-05, eps_t_phi=3.42042e-11 rad
vx_t_ampl=-1.89019e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 167.71s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 156.5286206615427, dt = 1.5631366968890066 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.90 us (3.9%)
patch tree reduce : 1.48 us (0.6%)
gen split merge : 971.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.4%)
LB compute : 228.22 us (90.9%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2830935426669458e-21,8.105355419625757e-22,7.328154490806126e-22)
sum a = (-3.350567030452612e-24,-2.3684441047339145e-23,-9.09190997640355e-23)
sum e = 7.859656445958712e-13
sum de = -1.1612032524853294e-27
Info: cfl dt = 1.5631027126462211 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3886e+04 | 2592 | 1 | 5.906e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95278.56016730946 (tsim/hr) [sph::Model][rank=0]
---------------- t = 158.09175735843172, dt = 1.5631027126462211 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.33 us (2.1%)
patch tree reduce : 1.17 us (0.6%)
gen split merge : 1.13 us (0.5%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.4%)
LB compute : 190.61 us (92.4%)
LB move op cnt : 0
LB apply : 2.73 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.04318780831791e-21,8.388613126625515e-22,5.272281847793462e-22)
sum a = (6.038723107758272e-23,-1.4050808642117614e-22,9.977693478768242e-24)
sum e = 7.859531823139218e-13
sum de = 8.330371159133885e-28
Info: cfl dt = 1.563070132864315 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4600e+04 | 2592 | 1 | 5.812e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96826.23043982708 (tsim/hr) [sph::Model][rank=0]
---------------- t = 159.65486007107793, dt = 1.563070132864315 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (1.6%)
patch tree reduce : 1.34 us (0.7%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.3%)
LB compute : 194.30 us (94.1%)
LB move op cnt : 0
LB apply : 2.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1787509801247283e-21,5.280352428356018e-22,6.216800450584282e-22)
sum a = (9.376452716638269e-23,-7.947492242454321e-23,1.0358910003914176e-22)
sum e = 7.859428104422009e-13
sum de = -1.0349855076499675e-27
Info: cfl dt = 1.5630385903758022 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4335e+04 | 2592 | 1 | 5.846e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96248.13784273407 (tsim/hr) [sph::Model][rank=0]
---------------- t = 161.21793020394225, dt = 1.5630385903758022 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (1.9%)
patch tree reduce : 901.00 ns (0.5%)
gen split merge : 792.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.5%)
LB compute : 182.24 us (93.1%)
LB move op cnt : 0
LB apply : 2.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (55.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.358680280886505e-21,4.515177915520279e-22,8.567544028067633e-22)
sum a = (2.0539874516184596e-22,1.7078940762532105e-22,-1.0885693828602147e-22)
sum e = 7.859323458871481e-13
sum de = 6.058451752097371e-28
Info: cfl dt = 1.5630081052246632 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4555e+04 | 2592 | 1 | 5.818e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96724.26785712127 (tsim/hr) [sph::Model][rank=0]
---------------- t = 162.78096879431806, dt = 1.5630081052246632 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.98 us (1.9%)
patch tree reduce : 1.12 us (0.5%)
gen split merge : 711.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 651.00 ns (0.3%)
LB compute : 195.56 us (93.0%)
LB move op cnt : 0
LB apply : 3.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.76865617622955e-21,9.142169772938038e-22,5.205794478185876e-22)
sum a = (2.1407684214493396e-22,1.5303786119165092e-22,7.856867585821847e-23)
sum e = 7.859218384587832e-13
sum de = 1.7165613297609217e-27
Info: cfl dt = 1.5629786916895572 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4676e+04 | 2592 | 1 | 5.802e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96985.12373000334 (tsim/hr) [sph::Model][rank=0]
---------------- t = 164.34397689954272, dt = 1.5629786916895572 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (2.0%)
patch tree reduce : 1.32 us (0.7%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 460.00 ns (0.2%)
LB compute : 182.24 us (93.7%)
LB move op cnt : 0
LB apply : 2.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.165486551882236e-21,1.1393404207019732e-21,7.898544910362467e-22)
sum a = (-1.5790028534316907e-23,1.1236254108499714e-24,-7.78499671267342e-23)
sum e = 7.85911308639061e-13
sum de = 3.0292258760486853e-28
Info: cfl dt = 1.5629503635569968 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4457e+04 | 2592 | 1 | 5.830e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96507.17724170991 (tsim/hr) [sph::Model][rank=0]
---------------- t = 165.90695559123228, dt = 1.5629503635569968 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (1.9%)
patch tree reduce : 1.15 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.4%)
LB compute : 182.84 us (93.0%)
LB move op cnt : 0
LB apply : 2.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.878749903636299e-21,1.0223529979107293e-21,5.459393536283332e-22)
sum a = (4.1778104765919467e-22,2.7080159696479193e-22,9.389908903505269e-23)
sum e = 7.859007772030527e-13
sum de = -1.1107161545511846e-27
Info: cfl dt = 1.5629231340667165 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4341e+04 | 2592 | 1 | 5.846e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96253.80548540926 (tsim/hr) [sph::Model][rank=0]
---------------- t = 167.46990595478928, dt = 0.23933046829216664 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.87 us (2.0%)
patch tree reduce : 1.06 us (0.6%)
gen split merge : 681.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.6%)
LB compute : 176.58 us (92.6%)
LB move op cnt : 0
LB apply : 2.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.287082609018049e-21,1.2981136507120802e-21,7.02629891463784e-22)
sum a = (-1.893904804607946e-22,-1.3675469514270472e-22,6.417914953019927e-23)
sum e = 7.857199929426419e-13
sum de = -5.048709793414476e-29
Info: cfl dt = 1.5629194917474118 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5675e+04 | 2592 | 1 | 5.675e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15182.569782757837 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 124 [SPH][rank=0]
Info: time since start : 83.376575231 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000319451 s
sph::RenderFieldGetter compute custom field took : 0.00025470500000000004 s
rho_t_ampl=0.000949311, rho_t_phi=3.14159 rad
eps_t_ampl=-1.60389e-05, eps_t_phi=3.11871e-11 rad
vx_t_ampl=-2.25688e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 178.89s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 167.70923642308145, dt = 1.5629194917474118 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.20 us (3.5%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 266.63 us (92.1%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9025761580750735e-21,1.0356076356844547e-21,7.993802917083442e-22)
sum a = (-4.1208123248095346e-24,5.2738584983026833e-23,1.9625675137786527e-22)
sum e = 7.858928168116714e-13
sum de = -6.563322731438818e-28
Info: cfl dt = 1.562893105856764 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3228e+04 | 2592 | 1 | 5.996e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93835.64814400098 (tsim/hr) [sph::Model][rank=0]
---------------- t = 169.27215591482886, dt = 1.562893105856764 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (1.8%)
patch tree reduce : 1.20 us (0.5%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 207.13 us (93.5%)
LB move op cnt : 0
LB apply : 2.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (58.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.0857918387594396e-21,1.2660072593589692e-21,1.209321944590381e-21)
sum a = (-2.6934194201504314e-22,-8.388277147232795e-23,5.985814366111041e-23)
sum e = 7.858801881011298e-13
sum de = -2.0194839173657902e-28
Info: cfl dt = 1.5628682888111702 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7050e+04 | 2592 | 1 | 6.996e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80424.9207300413 (tsim/hr) [sph::Model][rank=0]
---------------- t = 170.83504902068563, dt = 1.5628682888111702 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (1.9%)
patch tree reduce : 1.40 us (0.6%)
gen split merge : 751.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 211.12 us (93.2%)
LB move op cnt : 0
LB apply : 2.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.426051069299591e-21,1.0282582118341324e-21,1.196284117320888e-21)
sum a = (2.0393527910256782e-22,2.8354404167624115e-23,-1.0864416804284735e-22)
sum e = 7.858698090393513e-13
sum de = -2.8272774843121063e-27
Info: cfl dt = 1.5628446040106463 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1911e+04 | 2592 | 1 | 8.123e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69267.51371506247 (tsim/hr) [sph::Model][rank=0]
---------------- t = 172.3979173094968, dt = 1.5628446040106463 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.63 us (2.1%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 207.43 us (92.7%)
LB move op cnt : 0
LB apply : 2.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (56.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.157270602075762e-21,1.160278255286909e-21,8.948167057612915e-22)
sum a = (-2.0646425115237303e-22,-1.2734697126945442e-22,1.2947635745939136e-22)
sum e = 7.858594919404844e-13
sum de = 1.5146129380243427e-28
Info: cfl dt = 1.5628220669396464 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3436e+04 | 2592 | 1 | 7.752e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72577.72430289956 (tsim/hr) [sph::Model][rank=0]
---------------- t = 173.96076191350744, dt = 1.5628220669396464 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (1.9%)
patch tree reduce : 1.82 us (0.8%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 206.00 us (92.8%)
LB move op cnt : 0
LB apply : 2.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.41044076466729e-21,8.394710901872507e-22,1.2832379035383828e-21)
sum a = (1.6299674170749738e-22,-9.119739387510574e-23,2.0736957650196716e-22)
sum e = 7.858492794308249e-13
sum de = -7.068193710780266e-28
Info: cfl dt = 1.5628006878918181 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3858e+04 | 2592 | 1 | 5.910e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95197.91147492727 (tsim/hr) [sph::Model][rank=0]
---------------- t = 175.52358398044709, dt = 1.5628006878918181 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.87 us (1.8%)
patch tree reduce : 1.46 us (0.7%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 461.00 ns (0.2%)
LB compute : 198.58 us (94.0%)
LB move op cnt : 0
LB apply : 2.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (54.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.083327053817498e-21,7.250254768673847e-22,1.6681818411358229e-21)
sum a = (-2.423063321831152e-22,9.861687193611922e-23,1.3984118869878291e-22)
sum e = 7.858391913083299e-13
sum de = 6.058451752097371e-28
Info: cfl dt = 1.562780476642079 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.1393e+04 | 2592 | 1 | 6.262e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89846.87937362192 (tsim/hr) [sph::Model][rank=0]
---------------- t = 177.0863846683389, dt = 1.562780476642079 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (1.5%)
patch tree reduce : 981.00 ns (0.4%)
gen split merge : 561.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.4%)
LB compute : 232.50 us (94.5%)
LB move op cnt : 0
LB apply : 2.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.42933744922218e-21,1.0274943852505618e-21,1.8339562152091445e-21)
sum a = (-1.777982887807229e-22,-3.1242046755703296e-23,4.9157444601354613e-23)
sum e = 7.858292473691847e-13
sum de = 8.077935669463161e-28
Info: cfl dt = 1.5627614423874483 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2606e+04 | 2592 | 1 | 7.949e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70772.54548142714 (tsim/hr) [sph::Model][rank=0]
---------------- t = 178.64916514498097, dt = 0.24068703963925486 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.05 us (1.7%)
patch tree reduce : 1.18 us (0.5%)
gen split merge : 821.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 227.43 us (93.6%)
LB move op cnt : 0
LB apply : 2.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3644314457510368e-21,9.186779812902877e-22,1.7749283826142772e-21)
sum a = (5.2312492908407646e-23,6.895936918651861e-23,5.019827322342034e-23)
sum e = 7.857063042330792e-13
sum de = -7.825500179792437e-28
Info: cfl dt = 1.5627591024937486 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3071e+04 | 2592 | 1 | 7.838e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11055.250902412681 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 132 [SPH][rank=0]
Info: time since start : 84.17688042600001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00027655700000000003 s
sph::RenderFieldGetter compute custom field took : 0.00021074 s
rho_t_ampl=0.000783365, rho_t_phi=3.14159 rad
eps_t_ampl=-1.69403e-05, eps_t_phi=2.47988e-11 rad
vx_t_ampl=-2.5658e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 190.07s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 178.88985218462022, dt = 1.5627591024937486 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.97 us (3.6%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 251.41 us (91.6%)
LB move op cnt : 0
LB apply : 3.47 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.48274112296426e-21,1.0385794987785152e-21,1.8535014480034896e-21)
sum a = (-2.7742951760579083e-22,-1.6784362054382996e-22,8.967599249079699e-23)
sum e = 7.858218162138925e-13
sum de = -1.5146129380243427e-28
Info: cfl dt = 1.562740942847623 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2231e+04 | 2592 | 1 | 8.042e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69956.4919011025 (tsim/hr) [sph::Model][rank=0]
---------------- t = 180.45261128711397, dt = 1.562740942847623 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (2.1%)
patch tree reduce : 1.49 us (0.7%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 204.22 us (92.7%)
LB move op cnt : 0
LB apply : 2.82 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (52.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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7942445291817523e-21,5.910926576002885e-22,2.0244888756252854e-21)
sum a = (6.695357221197547e-23,-9.952787755217274e-24,-1.7064631773399434e-23)
sum e = 7.858102710679251e-13
sum de = -7.573064690121713e-29
Info: cfl dt = 1.5627244762146015 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7444e+04 | 2592 | 1 | 6.922e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81271.98999073343 (tsim/hr) [sph::Model][rank=0]
---------------- t = 182.0153522299616, dt = 1.5627244762146015 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (1.9%)
patch tree reduce : 1.31 us (0.7%)
gen split merge : 650.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 640.00 ns (0.3%)
LB compute : 181.93 us (93.3%)
LB move op cnt : 0
LB apply : 1.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (58.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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.150816750782717e-21,6.98997604628907e-22,1.9144175859737496e-21)
sum a = (1.4650065498668663e-22,-2.5855369386095647e-25,-7.578803812849608e-23)
sum e = 7.858009230476886e-13
sum de = -1.2874209973206913e-27
Info: cfl dt = 1.5627092079859897 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4097e+04 | 2592 | 1 | 5.878e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95711.11315672492 (tsim/hr) [sph::Model][rank=0]
---------------- t = 183.5780767061762, dt = 1.5627092079859897 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.70 us (1.9%)
patch tree reduce : 891.00 ns (0.4%)
gen split merge : 772.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.4%)
LB compute : 184.88 us (93.1%)
LB move op cnt : 0
LB apply : 2.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.500816212538503e-21,7.060004180967687e-22,1.7500986687161504e-21)
sum a = (-2.3344209258722426e-22,2.0501159159445777e-22,3.504025581503402e-23)
sum e = 7.857917825440284e-13
sum de = -1.2369338993865465e-27
Info: cfl dt = 1.562695148772616 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4291e+04 | 2592 | 1 | 5.852e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96129.79679001181 (tsim/hr) [sph::Model][rank=0]
---------------- t = 185.1407859141622, dt = 1.562695148772616 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (2.0%)
patch tree reduce : 882.00 ns (0.5%)
gen split merge : 580.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.6%)
LB compute : 178.37 us (92.5%)
LB move op cnt : 0
LB apply : 2.63 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8073900488721105e-21,1.1866463191970609e-21,1.891452104215459e-21)
sum a = (1.140797468050465e-22,2.840106769357879e-22,-5.56401605544384e-23)
sum e = 7.857828829211134e-13
sum de = 1.6155871338926322e-27
Info: cfl dt = 1.562682304691926 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3473e+04 | 2592 | 1 | 5.962e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94354.03050596271 (tsim/hr) [sph::Model][rank=0]
---------------- t = 186.7034810629348, dt = 1.562682304691926 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.93 us (2.0%)
patch tree reduce : 1.34 us (0.7%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 702.00 ns (0.4%)
LB compute : 183.25 us (93.2%)
LB move op cnt : 0
LB apply : 2.39 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2247602990409816e-21,1.6921454684619364e-21,1.733651286512441e-21)
sum a = (-1.845700286602775e-22,9.241622180492293e-23,-6.93995540710102e-23)
sum e = 7.857742413282991e-13
sum de = 3.0292258760486853e-28
Info: cfl dt = 1.5626706813293838 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3964e+04 | 2592 | 1 | 5.896e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95419.81170806018 (tsim/hr) [sph::Model][rank=0]
---------------- t = 188.26616336762672, dt = 1.5626706813293838 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.9%)
patch tree reduce : 651.00 ns (0.3%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.4%)
LB compute : 180.17 us (93.7%)
LB move op cnt : 0
LB apply : 1.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7342680955944936e-21,1.6868564507740189e-21,1.6144518576822234e-21)
sum a = (2.2141342857368364e-22,-4.39791508991936e-23,6.849710932438847e-23)
sum e = 7.857658746224927e-13
sum de = 2.271919407036514e-28
Info: cfl dt = 1.5626602836761807 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3621e+04 | 2592 | 1 | 5.942e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94672.94487209695 (tsim/hr) [sph::Model][rank=0]
---------------- t = 189.8288340489561, dt = 0.2416338972028882 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (1.8%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.4%)
LB compute : 199.23 us (93.4%)
LB move op cnt : 0
LB apply : 2.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1302768762665324e-21,1.5698947028259202e-21,1.738746617626057e-21)
sum a = (-8.100413012320301e-24,-5.0980861151138887e-23,-3.181323934393403e-22)
sum e = 7.856943663030366e-13
sum de = 1.741804878727994e-27
Info: cfl dt = 1.5626593166377243 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5915e+04 | 2592 | 1 | 7.217e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12053.162012370625 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 140 [SPH][rank=0]
Info: time since start : 85.07771490200001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00030156400000000004 s
sph::RenderFieldGetter compute custom field took : 0.000240604 s
rho_t_ampl=0.000598413, rho_t_phi=3.14159 rad
eps_t_ampl=-1.76472e-05, eps_t_phi=1.80784e-11 rad
vx_t_ampl=-2.80925e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 201.25s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 190.070467946159, dt = 1.5626593166377243 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.94 us (3.8%)
patch tree reduce : 1.55 us (0.6%)
gen split merge : 821.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.4%)
LB compute : 236.28 us (91.1%)
LB move op cnt : 0
LB apply : 3.62 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0834459623696316e-21,1.489699330261792e-21,1.194902672330776e-21)
sum a = (-6.351314323051455e-23,-3.087304610475763e-23,3.2075778588310673e-23)
sum e = 7.857597220883583e-13
sum de = 4.0389678347315804e-28
Info: cfl dt = 1.5626498025910447 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4163e+04 | 2592 | 1 | 5.869e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95849.03766721344 (tsim/hr) [sph::Model][rank=0]
---------------- t = 191.63312726279673, dt = 1.5626498025910447 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (1.9%)
patch tree reduce : 881.00 ns (0.4%)
gen split merge : 471.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 611.00 ns (0.3%)
LB compute : 188.07 us (93.7%)
LB move op cnt : 0
LB apply : 1.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.865723292498075e-21,1.4568804620114008e-21,1.5186539128005551e-21)
sum a = (9.529859904431021e-23,4.990878601129145e-23,-6.154413926935278e-23)
sum e = 7.857503963034747e-13
sum de = -2.9534952291474682e-27
Info: cfl dt = 1.562642063083725 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4607e+04 | 2592 | 1 | 5.811e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96813.74082477021 (tsim/hr) [sph::Model][rank=0]
---------------- t = 193.19577706538777, dt = 1.562642063083725 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (1.7%)
patch tree reduce : 911.00 ns (0.5%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.6%)
LB compute : 182.52 us (93.3%)
LB move op cnt : 0
LB apply : 2.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (61.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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2822719476862987e-21,1.5978738631434355e-21,1.3493348789624831e-21)
sum a = (-6.047645115751239e-22,-3.131325432848889e-23,3.681651081285369e-24)
sum e = 7.857430097642038e-13
sum de = -2.271919407036514e-28
Info: cfl dt = 1.5626355581590308 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4803e+04 | 2592 | 1 | 5.785e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97237.0596689741 (tsim/hr) [sph::Model][rank=0]
---------------- t = 194.7584191284715, dt = 1.5626355581590308 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.23 us (2.0%)
patch tree reduce : 951.00 ns (0.4%)
gen split merge : 821.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.4%)
LB compute : 198.79 us (93.4%)
LB move op cnt : 0
LB apply : 2.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6464763412173572e-21,1.4854308875888974e-21,1.4060502396549308e-21)
sum a = (-4.15117282682877e-22,1.0986450922702902e-22,-3.4734216606445883e-23)
sum e = 7.857359527890049e-13
sum de = 4.543838814073028e-28
Info: cfl dt = 1.562630293364392 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4237e+04 | 2592 | 1 | 5.859e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96008.09110526805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 196.32105468663053, dt = 1.562630293364392 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (0.7%)
patch tree reduce : 1.10 us (0.2%)
gen split merge : 531.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.1%)
LB compute : 557.69 us (97.7%)
LB move op cnt : 0
LB apply : 2.16 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.262791485255029e-21,1.7674112711421804e-21,1.3217585001460141e-21)
sum a = (-2.8161451703846345e-22,5.451758333093893e-23,1.4357278809884013e-22)
sum e = 7.857292483287558e-13
sum de = -2.1204581132340797e-27
Info: cfl dt = 1.5626262705534348 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4320e+04 | 2592 | 1 | 5.848e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96189.13917183579 (tsim/hr) [sph::Model][rank=0]
---------------- t = 197.8836849799949, dt = 1.5626262705534348 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 us (1.7%)
patch tree reduce : 1.04 us (0.5%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 190.78 us (93.5%)
LB move op cnt : 0
LB apply : 2.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.98824908828238e-22,1.8096592255376575e-21,1.6854230741015001e-21)
sum a = (1.3197511247727234e-22,2.790102003561861e-22,-3.2636134244119593e-23)
sum e = 7.857229091927769e-13
sum de = 3.0292258760486853e-27
Info: cfl dt = 1.5626234910468997 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3572e+04 | 2592 | 1 | 5.949e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94565.70321094575 (tsim/hr) [sph::Model][rank=0]
---------------- t = 199.44631125054835, dt = 1.5626234910468997 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (1.5%)
patch tree reduce : 1.03 us (0.5%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 204.80 us (93.7%)
LB move op cnt : 0
LB apply : 2.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2940120945196295e-21,2.4208681227422344e-21,1.4967507384953445e-21)
sum a = (1.7532708512799446e-22,3.7985115557976096e-23,1.1693057628344044e-22)
sum e = 7.857169476390249e-13
sum de = -1.9185097214975007e-27
Info: cfl dt = 1.5626219555686127 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3571e+04 | 2592 | 1 | 5.949e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94562.04738017663 (tsim/hr) [sph::Model][rank=0]
---------------- t = 201.00893474159525, dt = 0.24214896610251913 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (2.0%)
patch tree reduce : 1.21 us (0.6%)
gen split merge : 701.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.3%)
LB compute : 178.47 us (93.5%)
LB move op cnt : 0
LB apply : 2.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.421359316519974e-21,2.241728323407173e-21,1.6419235843227328e-21)
sum a = (1.1617866523216912e-22,-6.508058738991309e-24,1.131272102864144e-22)
sum e = 7.856854071195625e-13
sum de = 2.2214323091023692e-27
Info: cfl dt = 1.5626223912375572 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5517e+04 | 2592 | 1 | 5.695e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15308.299571026664 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 148 [SPH][rank=0]
Info: time since start : 85.77914622200001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00029929100000000003 s
sph::RenderFieldGetter compute custom field took : 0.000270478 s
rho_t_ampl=0.000399169, rho_t_phi=3.14159 rad
eps_t_ampl=-1.81423e-05, eps_t_phi=2.12834e-11 rad
vx_t_ampl=-2.98122e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 212.43s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 201.25108370769777, dt = 1.5626223912375572 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.96 us (3.6%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 240.18 us (86.6%)
LB move op cnt : 0
LB apply : 3.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6818049253851948e-21,2.2261693684611633e-21,1.818238205602734e-21)
sum a = (1.0594724023879467e-22,1.4235713897977943e-22,3.537901677485159e-23)
sum e = 7.857126921492362e-13
sum de = 1.7670484276950664e-27
Info: cfl dt = 1.5626217263460607 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3312e+04 | 2592 | 1 | 5.984e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94001.36160885384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 202.81370609893534, dt = 1.5626217263460607 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (2.0%)
patch tree reduce : 1.03 us (0.5%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.5%)
LB compute : 190.77 us (93.2%)
LB move op cnt : 0
LB apply : 2.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.823940857037192e-21,2.5648526431006883e-21,1.8127766918418403e-21)
sum a = (-1.2762001720876256e-22,8.125716773748197e-23,1.8586054700961337e-23)
sum e = 7.857064949311267e-13
sum de = 1.3631516442219084e-27
Info: cfl dt = 1.562622873512533 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4772e+04 | 2592 | 1 | 5.789e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97168.3264230729 (tsim/hr) [sph::Model][rank=0]
---------------- t = 204.3763278252814, dt = 1.562622873512533 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (1.8%)
patch tree reduce : 821.00 ns (0.4%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 184.72 us (94.4%)
LB move op cnt : 0
LB apply : 1.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4443639759781008e-21,2.6442585142381007e-21,1.82869916235265e-21)
sum a = (3.773560071270289e-23,-9.158613958364599e-23,5.738448801381612e-23)
sum e = 7.857018004662385e-13
sum de = 1.868022623563356e-27
Info: cfl dt = 1.5626252609979703 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4645e+04 | 2592 | 1 | 5.806e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96893.9840912609 (tsim/hr) [sph::Model][rank=0]
---------------- t = 205.93895069879395, dt = 1.5626252609979703 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (1.6%)
patch tree reduce : 671.00 ns (0.3%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 202.13 us (90.1%)
LB move op cnt : 0
LB apply : 11.11 us (5.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6727673805980735e-21,2.3660459139163805e-21,1.9486832725878107e-21)
sum a = (-1.0278602517653813e-22,1.5507015415300434e-22,6.274951294832353e-23)
sum e = 7.856975220945018e-13
sum de = -1.868022623563356e-27
Info: cfl dt = 1.562628889214837 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4085e+04 | 2592 | 1 | 5.880e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95678.4828584128 (tsim/hr) [sph::Model][rank=0]
---------------- t = 207.50157595979192, dt = 1.562628889214837 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (2.0%)
patch tree reduce : 1.14 us (0.5%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 200.53 us (93.0%)
LB move op cnt : 0
LB apply : 2.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3408430084165304e-21,2.800990594218162e-21,2.0509292360494338e-21)
sum a = (-7.68255494013167e-23,-6.459529775214361e-23,-7.111435233362102e-23)
sum e = 7.856936722371945e-13
sum de = 6.563322731438818e-28
Info: cfl dt = 1.5626337557614784 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4922e+04 | 2592 | 1 | 5.770e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97494.60741013347 (tsim/hr) [sph::Model][rank=0]
---------------- t = 209.06420484900676, dt = 1.5626337557614784 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (1.8%)
patch tree reduce : 1.15 us (0.6%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.2%)
LB compute : 193.78 us (94.3%)
LB move op cnt : 0
LB apply : 2.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3112655891132246e-21,2.528509902628614e-21,1.8352137770177727e-21)
sum a = (1.5942472915491717e-22,-1.756505217079385e-22,1.7270493889459796e-22)
sum e = 7.856902581084783e-13
sum de = 8.582806648804608e-28
Info: cfl dt = 1.5626398577137244 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4307e+04 | 2592 | 1 | 5.850e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96160.98087806968 (tsim/hr) [sph::Model][rank=0]
---------------- t = 210.62683860476824, dt = 1.5626398577137244 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (2.0%)
patch tree reduce : 791.00 ns (0.4%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.4%)
LB compute : 180.16 us (93.2%)
LB move op cnt : 0
LB apply : 1.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5363826138106077e-21,2.1673418841046535e-21,2.2955895255484277e-21)
sum a = (9.160463098679014e-23,1.421044053767047e-22,-5.1257923360743315e-23)
sum e = 7.856872861701542e-13
sum de = 1.5651000359584874e-27
Info: cfl dt = 1.5626471915605211 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4637e+04 | 2592 | 1 | 5.807e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96877.77508921702 (tsim/hr) [sph::Model][rank=0]
---------------- t = 212.18947846248196, dt = 0.24222100675459046 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 16.75 us (8.0%)
patch tree reduce : 891.00 ns (0.4%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.6%)
LB compute : 181.95 us (87.2%)
LB move op cnt : 0
LB apply : 2.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.59225107249463e-21,2.4499127890502766e-21,2.108187132143723e-21)
sum a = (-1.4144431556477275e-22,4.1464555131798914e-23,-2.773699172387192e-23)
sum e = 7.856803464500576e-13
sum de = -1.2621774483536189e-27
Info: cfl dt = 1.5626490179748582 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5387e+04 | 2592 | 1 | 5.711e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15269.174560330064 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 156 [SPH][rank=0]
Info: time since start : 86.481149914 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000303577 s
sph::RenderFieldGetter compute custom field took : 0.000270108 s
rho_t_ampl=0.000190694, rho_t_phi=3.14159 rad
eps_t_ampl=-1.84134e-05, eps_t_phi=2.89755e-11 rad
vx_t_ampl=-3.07751e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 223.61s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 212.43169946923655, dt = 1.5626490179748582 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.19 us (4.0%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.4%)
LB compute : 229.93 us (90.8%)
LB move op cnt : 0
LB apply : 3.56 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4082137968296159e-21,2.5026681730029396e-21,2.067692581135357e-21)
sum a = (-5.292227043310687e-24,-8.760819685414595e-23,-1.3834777903046953e-23)
sum e = 7.85685352702653e-13
sum de = -8.077935669463161e-28
Info: cfl dt = 1.5626571879072273 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.8897e+04 | 2592 | 1 | 6.664e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84419.03945020714 (tsim/hr) [sph::Model][rank=0]
---------------- t = 213.9943484872114, dt = 1.5626571879072273 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.04 us (2.0%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 802.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 191.07 us (92.9%)
LB move op cnt : 0
LB apply : 2.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5741759829203874e-21,2.2647458202868727e-21,2.056935706389571e-21)
sum a = (-2.9814590666859886e-22,9.892417555035402e-23,-2.268040461692334e-23)
sum e = 7.856828772873369e-13
sum de = -1.868022623563356e-27
Info: cfl dt = 1.5626671630395526 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4547e+04 | 2592 | 1 | 5.819e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96683.58937297671 (tsim/hr) [sph::Model][rank=0]
---------------- t = 215.55700567511863, dt = 1.5626671630395526 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (0.5%)
patch tree reduce : 1.30 us (0.2%)
gen split merge : 671.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.00 us (0.1%)
LB compute : 720.07 us (97.9%)
LB move op cnt : 0
LB apply : 3.49 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.328627227374664e-22,2.5647756185712526e-21,2.0145824417673033e-21)
sum a = (4.253912316352108e-22,8.851769651779088e-23,6.337578316862845e-23)
sum e = 7.85681333840056e-13
sum de = -1.1107161545511846e-27
Info: cfl dt = 1.5626783540001186 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4072e+04 | 2592 | 1 | 5.881e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95652.97505707642 (tsim/hr) [sph::Model][rank=0]
---------------- t = 217.11967283815818, dt = 1.5626783540001186 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (1.8%)
patch tree reduce : 1.26 us (0.6%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 571.00 ns (0.3%)
LB compute : 194.34 us (94.0%)
LB move op cnt : 0
LB apply : 2.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.914316304908404e-21,2.6952551714353153e-21,2.1808569957068635e-21)
sum a = (9.180641920713469e-23,1.388705096976833e-22,1.3364830177734002e-22)
sum e = 7.856802490523734e-13
sum de = 5.09919689134862e-27
Info: cfl dt = 1.562690756106027 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4302e+04 | 2592 | 1 | 5.851e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96152.82815749335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 218.6823511921583, dt = 1.562690756106027 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 us (1.9%)
patch tree reduce : 671.00 ns (0.4%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.5%)
LB compute : 176.77 us (93.2%)
LB move op cnt : 0
LB apply : 2.45 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.958682433863363e-21,2.9515992241080853e-21,2.4446146333193145e-21)
sum a = (-3.0886214491105165e-22,-9.558808666173604e-23,2.593991482677095e-23)
sum e = 7.856796257384597e-13
sum de = -1.3631516442219084e-27
Info: cfl dt = 1.5627043627977313 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4109e+04 | 2592 | 1 | 5.876e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95734.51130633248 (tsim/hr) [sph::Model][rank=0]
---------------- t = 220.24504194826434, dt = 1.5627043627977313 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (2.1%)
patch tree reduce : 1.12 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 182.41 us (92.5%)
LB move op cnt : 0
LB apply : 2.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1699512524418747e-21,2.619148517642065e-21,2.4009936010684476e-21)
sum a = (1.0296093504546502e-22,6.535895509236342e-23,3.476159778894898e-23)
sum e = 7.856794648199896e-13
sum de = 1.868022623563356e-27
Info: cfl dt = 1.5627191670139198 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3309e+04 | 2592 | 1 | 5.985e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93999.18200615128 (tsim/hr) [sph::Model][rank=0]
---------------- t = 221.80774631106206, dt = 1.5627191670139198 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (1.9%)
patch tree reduce : 1.16 us (0.6%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.4%)
LB compute : 196.58 us (93.3%)
LB move op cnt : 0
LB apply : 2.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5330962338880183e-21,2.847160380904073e-21,2.4622090574350283e-21)
sum a = (1.8922840801344032e-22,1.2543073536885147e-22,1.9484125097248465e-23)
sum e = 7.856797663425819e-13
sum de = 2.3728936029048035e-27
Info: cfl dt = 1.562709560434223 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4421e+04 | 2592 | 1 | 5.835e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96412.57232906655 (tsim/hr) [sph::Model][rank=0]
---------------- t = 223.37046547807597, dt = 0.24184975269935194 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (1.9%)
patch tree reduce : 871.00 ns (0.4%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 611.00 ns (0.3%)
LB compute : 183.80 us (93.7%)
LB move op cnt : 0
LB apply : 2.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7384949790498644e-21,2.9243774716633546e-21,2.4549840885718383e-21)
sum a = (-3.725010547560354e-22,1.2490492761924344e-22,9.358286426311281e-23)
sum e = 7.856797018166309e-13
sum de = 5.048709793414476e-29
Info: cfl dt = 1.562708246895685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5266e+04 | 2592 | 1 | 5.726e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15204.828892719279 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 164 [SPH][rank=0]
Info: time since start : 87.19179967100001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000279462 s
sph::RenderFieldGetter compute custom field took : 0.00021027 s
rho_t_ampl=-2.17227e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-1.8454e-05, eps_t_phi=3.17453e-11 rad
vx_t_ampl=-3.09584e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 234.79s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 223.61231523077532, dt = 1.562708246895685 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.51 us (3.8%)
patch tree reduce : 1.57 us (0.6%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 251.23 us (91.8%)
LB move op cnt : 0
LB apply : 2.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (7.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.711252671252078e-22,3.1194035801945272e-21,2.6101871831957027e-21)
sum a = (-8.814895756721174e-23,4.7008719707608304e-24,-1.4432675639267266e-23)
sum e = 7.856803438747138e-13
sum de = 5.048709793414476e-28
Info: cfl dt = 1.5626960499907172 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4351e+04 | 2592 | 1 | 5.844e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96260.7302949396 (tsim/hr) [sph::Model][rank=0]
---------------- t = 225.175023477671, dt = 1.5626960499907172 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (1.8%)
patch tree reduce : 1.13 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.4%)
LB compute : 183.27 us (93.6%)
LB move op cnt : 0
LB apply : 2.64 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0450688153834722e-21,3.0330269891431846e-21,2.5032349104839755e-21)
sum a = (3.281549842722839e-22,-2.6678443678994565e-23,1.1018099916406026e-22)
sum e = 7.856818096726791e-13
sum de = -2.3224065049706588e-27
Info: cfl dt = 1.5626856770895807 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4089e+04 | 2592 | 1 | 5.879e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95691.50500190452 (tsim/hr) [sph::Model][rank=0]
---------------- t = 226.7377195276617, dt = 1.5626856770895807 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (2.0%)
patch tree reduce : 630.00 ns (0.3%)
gen split merge : 550.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 762.00 ns (0.4%)
LB compute : 184.95 us (93.6%)
LB move op cnt : 0
LB apply : 2.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.980043903360195e-21,2.9663365840734477e-21,2.772779828460161e-21)
sum a = (2.487089961924571e-23,1.858686516958659e-22,1.0118847865014848e-22)
sum e = 7.856835596091702e-13
sum de = 1.0097419586828951e-27
Info: cfl dt = 1.5626765405520082 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4344e+04 | 2592 | 1 | 5.845e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96244.03460572999 (tsim/hr) [sph::Model][rank=0]
---------------- t = 228.30040520475129, dt = 1.5626765405520082 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (2.1%)
patch tree reduce : 651.00 ns (0.3%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 188.25 us (93.0%)
LB move op cnt : 0
LB apply : 2.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7204198894756216e-21,3.422957250700591e-21,2.9238784487168963e-21)
sum a = (2.2912550958343235e-22,-9.175854214367198e-23,-1.0808988033309248e-22)
sum e = 7.856857624833837e-13
sum de = 2.928251680180396e-27
Info: cfl dt = 1.562668644889363 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4359e+04 | 2592 | 1 | 5.843e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96275.05950901586 (tsim/hr) [sph::Model][rank=0]
---------------- t = 229.8630817453033, dt = 1.562668644889363 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (1.7%)
patch tree reduce : 1.21 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 581.00 ns (0.3%)
LB compute : 203.56 us (93.9%)
LB move op cnt : 0
LB apply : 2.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3579775944579917e-21,3.0627584575053618e-21,2.5914525908765382e-21)
sum a = (8.610700519831761e-23,-1.349094160839973e-22,-3.496689813095679e-23)
sum e = 7.856884133000403e-13
sum de = -2.8272774843121063e-27
Info: cfl dt = 1.5626619935910804 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4229e+04 | 2592 | 1 | 5.860e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95994.48799586158 (tsim/hr) [sph::Model][rank=0]
---------------- t = 231.42575039019266, dt = 1.5626619935910804 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (1.8%)
patch tree reduce : 891.00 ns (0.4%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.4%)
LB compute : 187.21 us (93.7%)
LB move op cnt : 0
LB apply : 1.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2938931859674956e-21,2.8181092958852445e-21,2.5939446438873345e-21)
sum a = (-5.36925157274638e-23,-2.759020148771836e-23,6.031155829634333e-23)
sum e = 7.85691506548735e-13
sum de = -1.5146129380243427e-27
Info: cfl dt = 1.5626565895937599 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4185e+04 | 2592 | 1 | 5.866e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95898.17703982003 (tsim/hr) [sph::Model][rank=0]
---------------- t = 232.98841238378375, dt = 1.5626565895937599 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (1.8%)
patch tree reduce : 1.28 us (0.6%)
gen split merge : 711.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.4%)
LB compute : 192.13 us (93.0%)
LB move op cnt : 0
LB apply : 2.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0884944408056498e-21,2.8590285771479558e-21,2.762634909221362e-21)
sum a = (-6.389826587769301e-23,1.401252203520085e-22,7.08899296551347e-23)
sum e = 7.856950358111135e-13
sum de = 1.0602290566170399e-27
Info: cfl dt = 1.5626524352097662 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4418e+04 | 2592 | 1 | 5.835e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96403.4330532916 (tsim/hr) [sph::Model][rank=0]
---------------- t = 234.5510689733775, dt = 0.24186201893652992 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (1.7%)
patch tree reduce : 1.12 us (0.5%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.4%)
LB compute : 204.79 us (93.6%)
LB move op cnt : 0
LB apply : 2.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1624379890639142e-21,3.0238418140079784e-21,2.7880456715854387e-21)
sum a = (1.9484638462915612e-22,-2.4367055895609563e-23,8.647073553034214e-23)
sum e = 7.856835389298383e-13
sum de = -3.736045247126712e-27
Info: cfl dt = 1.5626524846053218 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4789e+04 | 2592 | 1 | 5.787e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15045.528981697948 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 172 [SPH][rank=0]
Info: time since start : 87.892399045 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000272872 s
sph::RenderFieldGetter compute custom field took : 0.00021716000000000001 s
rho_t_ampl=-0.000232708, rho_t_phi=3.14159 rad
eps_t_ampl=-1.82636e-05, eps_t_phi=4.19589e-11 rad
vx_t_ampl=-3.0359e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 245.97s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 234.79293099231404, dt = 1.5626524846053218 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.01 us (3.9%)
patch tree reduce : 1.38 us (0.5%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 236.35 us (91.3%)
LB move op cnt : 0
LB apply : 3.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4516394222517935e-21,2.965964298847842e-21,2.9250535838907952e-21)
sum a = (5.198513865830595e-23,1.0916885637247392e-22,-1.2825513742134977e-22)
sum e = 7.856980596863462e-13
sum de = -1.3631516442219084e-27
Info: cfl dt = 1.5626491972544 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4150e+04 | 2592 | 1 | 5.871e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95820.83984858546 (tsim/hr) [sph::Model][rank=0]
---------------- t = 236.35558347691935, dt = 1.5626491972544 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (2.1%)
patch tree reduce : 1.34 us (0.7%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 185.76 us (92.4%)
LB move op cnt : 0
LB apply : 2.64 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.388376608741945e-21,3.240832750849896e-21,2.5568648369170766e-21)
sum a = (1.5070491055171816e-22,8.704581687008213e-23,-2.908700817165112e-24)
sum e = 7.857032892273217e-13
sum de = -7.573064690121713e-28
Info: cfl dt = 1.5626477397484762 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4449e+04 | 2592 | 1 | 5.831e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96470.57571873903 (tsim/hr) [sph::Model][rank=0]
---------------- t = 237.91823267417374, dt = 1.5626477397484762 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (1.8%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.3%)
LB compute : 190.46 us (94.0%)
LB move op cnt : 0
LB apply : 1.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7301601206912566e-21,3.3595853191073745e-21,2.65025581642841e-21)
sum a = (-8.325067889841069e-23,-1.0882262208634843e-22,-1.1178533986140996e-22)
sum e = 7.857081432398784e-13
sum de = 0
Info: cfl dt = 1.5626475357851384 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4488e+04 | 2592 | 1 | 5.826e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96553.36332128017 (tsim/hr) [sph::Model][rank=0]
---------------- t = 239.48088041392222, dt = 1.5626475357851384 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (1.8%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 751.00 ns (0.4%)
LB compute : 187.29 us (93.1%)
LB move op cnt : 0
LB apply : 2.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.453282612213088e-21,3.0364866742570047e-21,2.3905068136000692e-21)
sum a = (2.6626096083761545e-22,-6.443119438457962e-23,2.5362663044717255e-22)
sum e = 7.857133969696237e-13
sum de = 7.573064690121713e-28
Info: cfl dt = 1.5626485844056082 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4354e+04 | 2592 | 1 | 5.844e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96263.86905315718 (tsim/hr) [sph::Model][rank=0]
---------------- t = 241.04352794970737, dt = 1.5626485844056082 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (1.8%)
patch tree reduce : 1.10 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.4%)
LB compute : 182.28 us (93.2%)
LB move op cnt : 0
LB apply : 2.32 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.994713704459714e-21,2.970598608035556e-21,3.0723411661105476e-21)
sum a = (-2.4364142402666715e-22,-4.6324487645096806e-23,-1.2376977911982157e-22)
sum e = 7.857190403251111e-13
sum de = 2.524354896707238e-28
Info: cfl dt = 1.5626508846260425 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4407e+04 | 2592 | 1 | 5.837e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96378.82400781164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 242.606176534113, dt = 1.5626508846260425 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (2.0%)
patch tree reduce : 1.13 us (0.6%)
gen split merge : 782.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 681.00 ns (0.3%)
LB compute : 185.93 us (93.4%)
LB move op cnt : 0
LB apply : 2.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (58.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.320184225348212e-21,2.9122589456988056e-21,2.5840632286940283e-21)
sum a = (-5.375670283532687e-23,1.6223637521021e-22,-8.926295874932287e-23)
sum e = 7.857250620122088e-13
sum de = 2.1204581132340797e-27
Info: cfl dt = 1.5626544349035802 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4469e+04 | 2592 | 1 | 5.829e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96514.1905936342 (tsim/hr) [sph::Model][rank=0]
---------------- t = 244.16882741873903, dt = 1.5626544349035802 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (1.8%)
patch tree reduce : 981.00 ns (0.5%)
gen split merge : 451.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.4%)
LB compute : 176.78 us (93.3%)
LB move op cnt : 0
LB apply : 2.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4220620029484875e-21,3.3289231376811827e-21,2.47153712702099e-21)
sum a = (1.389458323912025e-22,1.0959750590217204e-22,3.27788954488537e-23)
sum e = 7.857314498889368e-13
sum de = 4.0389678347315804e-28
Info: cfl dt = 1.5626592330700069 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4262e+04 | 2592 | 1 | 5.856e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96064.53473974229 (tsim/hr) [sph::Model][rank=0]
---------------- t = 245.7314818536426, dt = 0.24206490021020954 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (2.0%)
patch tree reduce : 1.19 us (0.6%)
gen split merge : 691.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 178.62 us (92.6%)
LB move op cnt : 0
LB apply : 2.53 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.489432791361573e-21,3.314198615137393e-21,2.574826369429466e-21)
sum a = (2.0162454321949703e-22,-4.895330073533593e-23,-3.444391652417573e-23)
sum e = 7.856914754887134e-13
sum de = 7.573064690121713e-29
Info: cfl dt = 1.5626606418054292 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5213e+04 | 2592 | 1 | 5.733e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15200.723982093252 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 180 [SPH][rank=0]
Info: time since start : 88.589961566 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00028927600000000004 s
sph::RenderFieldGetter compute custom field took : 0.000219733 s
rho_t_ampl=-0.000436932, rho_t_phi=3.14159 rad
eps_t_ampl=-1.78474e-05, eps_t_phi=4.20926e-11 rad
vx_t_ampl=-2.89939e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 257.15s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 245.97354675385282, dt = 1.5626606418054292 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.20 us (4.2%)
patch tree reduce : 1.62 us (0.7%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 219.96 us (90.5%)
LB move op cnt : 0
LB apply : 3.49 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8953007118013806e-21,3.2185148934459043e-21,2.5128660750916877e-21)
sum a = (-3.7767694266634427e-23,1.7946138677469083e-22,-1.1706582369629678e-22)
sum e = 7.857366125913294e-13
sum de = -4.0389678347315804e-28
Info: cfl dt = 1.562666328318053 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1860e+04 | 2592 | 1 | 8.135e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69148.65322103778 (tsim/hr) [sph::Model][rank=0]
---------------- t = 247.53620739565824, dt = 1.562666328318053 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.34 us (1.8%)
patch tree reduce : 1.47 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 226.86 us (92.9%)
LB move op cnt : 0
LB apply : 3.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6463574326652235e-21,3.67745913337769e-21,2.265376252960658e-21)
sum a = (1.74024086838374e-22,8.488782624525428e-23,6.442728101355526e-23)
sum e = 7.857450526421616e-13
sum de = -1.2369338993865465e-27
Info: cfl dt = 1.5626738036114485 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2473e+04 | 2592 | 1 | 7.982e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70477.37661370052 (tsim/hr) [sph::Model][rank=0]
---------------- t = 249.09887372397628, dt = 1.5626738036114485 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (1.8%)
patch tree reduce : 1.42 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 220.30 us (93.1%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (59.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1343848511697695e-21,3.736132568675329e-21,2.5078616590141164e-21)
sum a = (1.991597582775549e-22,1.7059193197628605e-22,1.1963448786054876e-23)
sum e = 7.857525121863614e-13
sum de = -1.6913177807938493e-27
Info: cfl dt = 1.56268251758461 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4060e+04 | 2592 | 1 | 5.883e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95626.7077328128 (tsim/hr) [sph::Model][rank=0]
---------------- t = 250.66154752758774, dt = 1.56268251758461 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (2.0%)
patch tree reduce : 1.32 us (0.7%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 181.58 us (92.9%)
LB move op cnt : 0
LB apply : 2.49 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (58.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3915440801124e-21,4.069655199842662e-21,2.4855648031524853e-21)
sum a = (4.8788620686724726e-23,5.97255021124568e-23,7.946608979711326e-23)
sum e = 7.85760276487818e-13
sum de = -1.9185097214975007e-27
Info: cfl dt = 1.562692463834673 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3528e+04 | 2592 | 1 | 5.955e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94473.47155208026 (tsim/hr) [sph::Model][rank=0]
---------------- t = 252.22423004517236, dt = 1.562692463834673 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (2.1%)
patch tree reduce : 1.48 us (0.7%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.5%)
LB compute : 185.95 us (92.5%)
LB move op cnt : 0
LB apply : 2.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3118493669896043e-21,4.076414102300644e-21,2.6624884613083e-21)
sum a = (-2.94811386415112e-23,6.964602080211948e-24,3.213225059666384e-23)
sum e = 7.857683334862388e-13
sum de = 1.337908095254836e-27
Info: cfl dt = 1.5627036369327303 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3610e+04 | 2592 | 1 | 5.944e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94651.66152018233 (tsim/hr) [sph::Model][rank=0]
---------------- t = 253.78692250900704, dt = 1.5627036369327303 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 us (1.8%)
patch tree reduce : 1.27 us (0.7%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.4%)
LB compute : 181.75 us (93.9%)
LB move op cnt : 0
LB apply : 1.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1516383457633643e-21,4.04627825515893e-21,2.6757175292776092e-21)
sum a = (-4.0236972306126995e-22,-5.907315048262027e-23,3.567492337087489e-23)
sum e = 7.857766672466586e-13
sum de = -1.464125840090198e-27
Info: cfl dt = 1.5627160308997827 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3666e+04 | 2592 | 1 | 5.936e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94773.36631810441 (tsim/hr) [sph::Model][rank=0]
---------------- t = 255.34962614593977, dt = 1.5627160308997827 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 us (1.8%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.5%)
LB compute : 188.38 us (93.2%)
LB move op cnt : 0
LB apply : 2.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (57.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3826254438774132e-21,3.902280897378903e-21,2.73423537774428e-21)
sum a = (1.182519088161465e-22,-2.6983708537679313e-23,1.103165532373914e-22)
sum e = 7.857852611330165e-13
sum de = 1.5651000359584874e-27
Info: cfl dt = 1.5627296391473455 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.0278e+04 | 2592 | 1 | 6.435e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87420.31494745713 (tsim/hr) [sph::Model][rank=0]
---------------- t = 256.91234217683956, dt = 0.24182033855203144 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (1.7%)
patch tree reduce : 1.14 us (0.5%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 13.78 us (6.4%)
LB compute : 187.61 us (87.3%)
LB move op cnt : 0
LB apply : 2.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6586813573749342e-21,3.920676922492461e-21,2.8192339997790875e-21)
sum a = (2.0845405149612843e-22,1.2066388983263566e-22,5.005481612467543e-23)
sum e = 7.857027120848488e-13
sum de = 1.337908095254836e-27
Info: cfl dt = 1.5627323661781394 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4465e+04 | 2592 | 1 | 5.829e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14933.994899238547 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 188 [SPH][rank=0]
Info: time since start : 89.343325889 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000284288 s
sph::RenderFieldGetter compute custom field took : 0.000252593 s
rho_t_ampl=-0.00062925, rho_t_phi=3.14159 rad
eps_t_ampl=-1.72165e-05, eps_t_phi=4.70504e-11 rad
vx_t_ampl=-2.68989e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 268.33s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 257.1541625153916, dt = 1.5627323661781394 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.87 us (4.0%)
patch tree reduce : 1.64 us (0.7%)
gen split merge : 711.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.4%)
LB compute : 224.96 us (90.9%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0259343137243146e-21,4.127192523331124e-21,2.8901700241846638e-21)
sum a = (-1.5721990199982047e-22,-8.790153632487079e-23,1.0414795017658762e-22)
sum e = 7.857920401461527e-13
sum de = 3.1806871698511196e-27
Info: cfl dt = 1.5627468610868915 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2446e+04 | 2592 | 1 | 7.989e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70422.98616785642 (tsim/hr) [sph::Model][rank=0]
---------------- t = 258.7168948815697, dt = 1.5627468610868915 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (1.8%)
patch tree reduce : 1.71 us (0.8%)
gen split merge : 851.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 203.54 us (92.5%)
LB move op cnt : 0
LB apply : 2.86 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5157238307422892e-21,3.8266749030269846e-21,3.0951934520970186e-21)
sum a = (2.2967430935566164e-22,1.290644778665719e-22,-3.0266898972912727e-23)
sum e = 7.858028195296751e-13
sum de = -9.34011311781678e-28
Info: cfl dt = 1.5627630579745877 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7485e+04 | 2592 | 1 | 6.915e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81360.28379642763 (tsim/hr) [sph::Model][rank=0]
---------------- t = 260.2796417426566, dt = 1.5627630579745877 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (1.8%)
patch tree reduce : 1.33 us (0.6%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 203.04 us (93.3%)
LB move op cnt : 0
LB apply : 2.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2436569835958715e-21,4.1980165781472434e-21,2.9428652687069217e-21)
sum a = (-3.6638001168244274e-23,1.4522759396534294e-22,9.472462022638239e-23)
sum e = 7.858121281104564e-13
sum de = 9.844984097158227e-28
Info: cfl dt = 1.5627804470530684 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4455e+04 | 2592 | 1 | 5.831e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96490.05142711803 (tsim/hr) [sph::Model][rank=0]
---------------- t = 261.8424048006312, dt = 1.5627804470530684 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (1.9%)
patch tree reduce : 1.04 us (0.5%)
gen split merge : 741.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 201.19 us (93.3%)
LB move op cnt : 0
LB apply : 2.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (62.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.00539443920813e-21,4.437671982775614e-21,3.188565117433859e-21)
sum a = (-3.3180883538738955e-22,9.483735449890039e-23,2.3218482061873235e-22)
sum e = 7.858216143556468e-13
sum de = -7.068193710780266e-28
Info: cfl dt = 1.56279901664943 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4848e+04 | 2592 | 1 | 5.780e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97342.79722045516 (tsim/hr) [sph::Model][rank=0]
---------------- t = 263.40518524768424, dt = 1.56279901664943 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (1.9%)
patch tree reduce : 1.15 us (0.6%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 192.35 us (93.8%)
LB move op cnt : 0
LB apply : 2.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2207712326898787e-21,4.546424199628024e-21,3.658833383487791e-21)
sum a = (-4.966798406444888e-23,-2.7774859773651954e-22,-9.61825914494884e-23)
sum e = 7.858312675385984e-13
sum de = 6.563322731438818e-28
Info: cfl dt = 1.5628187570389438 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4255e+04 | 2592 | 1 | 5.857e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96058.08091774187 (tsim/hr) [sph::Model][rank=0]
---------------- t = 264.96798426433367, dt = 1.5628187570389438 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (2.0%)
patch tree reduce : 811.00 ns (0.4%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.5%)
LB compute : 183.53 us (93.0%)
LB move op cnt : 0
LB apply : 2.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.309503490599796e-21,3.821283185966487e-21,3.2519312911301394e-21)
sum a = (7.387936115040147e-23,2.083202614931763e-23,-1.1270681676099477e-22)
sum e = 7.858410686808708e-13
sum de = -2.1709452111682245e-27
Info: cfl dt = 1.5628396579706418 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4367e+04 | 2592 | 1 | 5.842e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96302.9507545915 (tsim/hr) [sph::Model][rank=0]
---------------- t = 266.5308030213726, dt = 1.5628396579706418 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (1.7%)
patch tree reduce : 1.32 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.4%)
LB compute : 206.13 us (93.7%)
LB move op cnt : 0
LB apply : 2.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (56.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.561733149658543e-21,4.087069162205915e-21,3.0628764235409954e-21)
sum a = (-1.6087856714801586e-22,-6.783148135053711e-23,-4.807879517524505e-23)
sum e = 7.85850998321187e-13
sum de = -1.6155871338926322e-27
Info: cfl dt = 1.5628617086164949 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4244e+04 | 2592 | 1 | 5.858e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96035.88029989507 (tsim/hr) [sph::Model][rank=0]
---------------- t = 268.09364267934325, dt = 0.24113559758711745 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (1.9%)
patch tree reduce : 1.03 us (0.5%)
gen split merge : 751.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 184.95 us (93.1%)
LB move op cnt : 0
LB apply : 2.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (59.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4105596732194242e-21,4.001604028086228e-21,3.101784532110469e-21)
sum a = (-7.034907021793224e-23,5.2532935506974896e-23,-6.160354078543592e-24)
sum e = 7.857161148182221e-13
sum de = -1.539856486991415e-27
Info: cfl dt = 1.562865671798009 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5340e+04 | 2592 | 1 | 5.717e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15184.68733108419 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 196 [SPH][rank=0]
Info: time since start : 90.074531433 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000308665 s
sph::RenderFieldGetter compute custom field took : 0.00025701900000000004 s
rho_t_ampl=-0.000804825, rho_t_phi=3.14159 rad
eps_t_ampl=-1.63871e-05, eps_t_phi=5.45368e-11 rad
vx_t_ampl=-2.41285e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 279.52s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 268.33477827693036, dt = 1.562865671798009 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.75 us (3.7%)
patch tree reduce : 1.56 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 238.25 us (91.5%)
LB move op cnt : 0
LB apply : 3.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.215841662805994e-21,4.098192787998587e-21,3.0972107403672017e-21)
sum a = (-1.8478184611622568e-22,1.1101080071034314e-22,-9.543194507497453e-23)
sum e = 7.858587103015886e-13
sum de = -1.7670484276950664e-28
Info: cfl dt = 1.5628885845615665 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3817e+04 | 2592 | 1 | 5.916e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95110.89403713812 (tsim/hr) [sph::Model][rank=0]
---------------- t = 269.8976439487284, dt = 1.5628885845615665 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (2.1%)
patch tree reduce : 1.26 us (0.7%)
gen split merge : 691.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.6%)
LB compute : 176.45 us (92.2%)
LB move op cnt : 0
LB apply : 2.64 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.911029924985815e-21,4.317565066542224e-21,2.8783014902892144e-21)
sum a = (-4.570635576713977e-22,-2.5951349170822156e-23,1.0443511554198157e-22)
sum e = 7.858707277566798e-13
sum de = -1.5146129380243427e-28
Info: cfl dt = 1.5629130691124564 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3939e+04 | 2592 | 1 | 5.899e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95377.93921637947 (tsim/hr) [sph::Model][rank=0]
---------------- t = 271.46053253328995, dt = 1.5629130691124564 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (1.8%)
patch tree reduce : 1.35 us (0.7%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 611.00 ns (0.3%)
LB compute : 189.28 us (93.6%)
LB move op cnt : 0
LB apply : 1.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.429564501442158e-22,4.16965229518255e-21,3.1977094709778875e-21)
sum a = (7.825692190666331e-23,-1.3105818961221268e-22,-5.697727078398233e-23)
sum e = 7.858809471852603e-13
sum de = 5.048709793414476e-28
Info: cfl dt = 1.5629386690187121 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4260e+04 | 2592 | 1 | 5.856e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96074.93005979733 (tsim/hr) [sph::Model][rank=0]
---------------- t = 273.02344560240243, dt = 1.5629386690187121 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 us (1.6%)
patch tree reduce : 1.22 us (0.6%)
gen split merge : 641.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 201.43 us (93.4%)
LB move op cnt : 0
LB apply : 2.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4813357501072332e-21,3.8827808540101006e-21,2.9825207271619566e-21)
sum a = (4.775520825012919e-24,2.1746993313434584e-22,-2.1962242550791263e-23)
sum e = 7.858911978048008e-13
sum de = -6.058451752097371e-28
Info: cfl dt = 1.5629653676547115 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3633e+04 | 2592 | 1 | 5.940e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94716.52690263934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 274.58638427142114, dt = 1.5629653676547115 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (1.8%)
patch tree reduce : 1.30 us (0.7%)
gen split merge : 762.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.5%)
LB compute : 180.11 us (92.7%)
LB move op cnt : 0
LB apply : 2.70 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4616174705716958e-21,4.4951900501317165e-21,2.975557673470168e-21)
sum a = (-1.705323081706226e-22,-3.34152065993816e-23,1.986949157413425e-22)
sum e = 7.859014733734788e-13
sum de = 1.5146129380243427e-28
Info: cfl dt = 1.562993151265395 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4473e+04 | 2592 | 1 | 5.828e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96540.3982006824 (tsim/hr) [sph::Model][rank=0]
---------------- t = 276.14934963907587, dt = 1.562993151265395 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (2.1%)
patch tree reduce : 1.21 us (0.6%)
gen split merge : 711.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 530.00 ns (0.3%)
LB compute : 184.91 us (93.4%)
LB move op cnt : 0
LB apply : 2.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1124396037965577e-21,4.246753849147678e-21,3.458556214233085e-21)
sum a = (1.1352131896663773e-22,2.0971412465736544e-22,4.033858682064056e-23)
sum e = 7.859117537639982e-13
sum de = 2.3728936029048035e-27
Info: cfl dt = 1.5630220056073578 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4600e+04 | 2592 | 1 | 5.812e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96817.82438196284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 277.71234279034127, dt = 1.5630220056073578 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (1.8%)
patch tree reduce : 1.16 us (0.6%)
gen split merge : 541.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.5%)
LB compute : 174.48 us (93.0%)
LB move op cnt : 0
LB apply : 1.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (59.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4525799257845746e-21,4.764416455352606e-21,3.397851384327352e-21)
sum a = (-9.26990211758556e-23,-1.4048822853468102e-22,-9.073461043832048e-23)
sum e = 7.859220186333564e-13
sum de = -5.806016262426647e-28
Info: cfl dt = 1.5630519159079261 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7597e+04 | 2592 | 1 | 6.894e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81618.07040798986 (tsim/hr) [sph::Model][rank=0]
---------------- t = 279.27536479594863, dt = 0.2400292425205066 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (1.9%)
patch tree reduce : 1.44 us (0.7%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.6%)
LB compute : 179.46 us (92.6%)
LB move op cnt : 0
LB apply : 2.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (59.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2447163956807866e-21,4.456934533845323e-21,3.2736372786834727e-21)
sum a = (8.020820998570085e-23,-1.1880797978418843e-22,-1.1591138885364637e-22)
sum e = 7.857303336419672e-13
sum de = 9.087677628146056e-28
Info: cfl dt = 1.5630569953276596 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7755e+04 | 2592 | 1 | 6.865e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12586.450266794758 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 204 [SPH][rank=0]
Info: time since start : 90.95750362000001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000328413 s
sph::RenderFieldGetter compute custom field took : 0.000249508 s
rho_t_ampl=-0.000959257, rho_t_phi=3.14159 rad
eps_t_ampl=-1.53806e-05, eps_t_phi=5.29501e-11 rad
vx_t_ampl=-2.07541e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 290.70s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 279.51539403846914, dt = 1.5630569953276596 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.45 us (3.8%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 251.47 us (91.6%)
LB move op cnt : 0
LB apply : 3.54 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.365490857835952e-21,4.273879320930614e-21,3.0894395899711974e-21)
sum a = (-2.394692620155672e-22,9.74438525399215e-23,9.69911307005507e-24)
sum e = 7.859298895470508e-13
sum de = 2.7767903863779616e-28
Info: cfl dt = 1.563087721151688 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0940e+04 | 2592 | 1 | 8.378e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67166.95938653423 (tsim/hr) [sph::Model][rank=0]
---------------- t = 281.0784510337968, dt = 1.563087721151688 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (2.0%)
patch tree reduce : 1.37 us (0.6%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 205.31 us (92.8%)
LB move op cnt : 0
LB apply : 2.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.314541204151525e-22,4.595225657736322e-21,3.2027683413761262e-21)
sum a = (-2.1084181190863487e-22,-1.209971613317435e-22,9.839780545558338e-23)
sum e = 7.859419241015398e-13
sum de = 7.32062920045099e-28
Info: cfl dt = 1.5631198487072413 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3127e+04 | 2592 | 1 | 6.010e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93626.04282068042 (tsim/hr) [sph::Model][rank=0]
---------------- t = 282.6415387549485, dt = 1.5631198487072413 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (1.8%)
patch tree reduce : 881.00 ns (0.4%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 611.00 ns (0.3%)
LB compute : 185.06 us (93.6%)
LB move op cnt : 0
LB apply : 1.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.798114686980722e-22,4.235643060776579e-21,3.425897822628538e-21)
sum a = (-2.5783961228597974e-22,-3.5259583026884695e-23,1.412476657480723e-22)
sum e = 7.859520285221376e-13
sum de = 1.5146129380243427e-27
Info: cfl dt = 1.5631529865361902 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.8498e+04 | 2592 | 1 | 6.733e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83580.12302164381 (tsim/hr) [sph::Model][rank=0]
---------------- t = 284.20465860365573, dt = 1.5631529865361902 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (1.8%)
patch tree reduce : 841.00 ns (0.4%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.4%)
LB compute : 199.56 us (93.7%)
LB move op cnt : 0
LB apply : 2.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (59.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.09388888001378e-23,4.247370045383163e-21,3.6801792667524046e-21)
sum a = (8.665259561515376e-24,6.158412005451703e-23,8.601842617836922e-23)
sum e = 7.859620129099055e-13
sum de = -3.0292258760486853e-28
Info: cfl dt = 1.5631871135096371 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2052e+04 | 2592 | 1 | 8.087e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69587.40728622026 (tsim/hr) [sph::Model][rank=0]
---------------- t = 285.7678115901919, dt = 1.5631871135096371 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (2.0%)
patch tree reduce : 1.33 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.4%)
LB compute : 207.74 us (93.3%)
LB move op cnt : 0
LB apply : 2.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.93309408091116e-22,4.419237445397338e-21,3.771476286690158e-21)
sum a = (5.2890176879175335e-24,-2.9433800649462185e-23,-1.3618221499820342e-22)
sum e = 7.859718782058946e-13
sum de = -7.825500179792437e-28
Info: cfl dt = 1.5632222122143016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6065e+04 | 2592 | 1 | 7.187e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78301.27782906478 (tsim/hr) [sph::Model][rank=0]
---------------- t = 287.33099870370154, dt = 1.5632222122143016 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (1.9%)
patch tree reduce : 1.06 us (0.5%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 203.38 us (93.2%)
LB move op cnt : 0
LB apply : 2.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.694831536523419e-22,4.3023077910031705e-21,3.3849226338456835e-21)
sum a = (3.1323308637181508e-24,-4.9268068294755094e-23,6.19987188892067e-23)
sum e = 7.859816051369463e-13
sum de = 0
Info: cfl dt = 1.563258264799138 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4908e+04 | 2592 | 1 | 5.772e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97501.33279436083 (tsim/hr) [sph::Model][rank=0]
---------------- t = 288.89422091591587, dt = 1.563258264799138 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (2.0%)
patch tree reduce : 1.20 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 641.00 ns (0.3%)
LB compute : 183.68 us (93.3%)
LB move op cnt : 0
LB apply : 2.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7194793859428405e-22,4.2097050504891094e-21,3.636743062501993e-21)
sum a = (-3.094717218510388e-22,-3.529939909223101e-24,2.5641813435094188e-23)
sum e = 7.859911745059775e-13
sum de = -2.2466758580694416e-27
Info: cfl dt = 1.5632952529453392 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4785e+04 | 2592 | 1 | 5.788e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97237.126179366 (tsim/hr) [sph::Model][rank=0]
---------------- t = 290.457479180715, dt = 0.23853061929287378 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (2.1%)
patch tree reduce : 881.00 ns (0.5%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 501.00 ns (0.3%)
LB compute : 178.88 us (93.5%)
LB move op cnt : 0
LB apply : 1.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0762894246480729e-22,4.2447126991176315e-21,3.6144418036726154e-21)
sum a = (-7.291655453245532e-24,6.6804838647974e-23,-6.75907430364357e-23)
sum e = 7.857439426067076e-13
sum de = 1.0097419586828951e-28
Info: cfl dt = 1.5633012959147072 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5953e+04 | 2592 | 1 | 5.641e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15223.987439683546 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 212 [SPH][rank=0]
Info: time since start : 91.72613884600001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000304529 s
sph::RenderFieldGetter compute custom field took : 0.000247515 s
rho_t_ampl=-0.00108868, rho_t_phi=3.14159 rad
eps_t_ampl=-1.42228e-05, eps_t_phi=6.70695e-11 rad
vx_t_ampl=-1.68622e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 301.88s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 290.69600980000786, dt = 1.5633012959147072 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.63 us (4.0%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 892.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.4%)
LB compute : 220.67 us (90.7%)
LB move op cnt : 0
LB apply : 3.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4647849419421516e-24,4.3575407973193486e-21,3.4976576977757025e-21)
sum a = (-4.889132005930565e-22,-5.734842283586818e-23,7.10343229979359e-23)
sum e = 7.859984186514668e-13
sum de = 1.2621774483536189e-27
Info: cfl dt = 1.5633390323580758 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4068e+04 | 2592 | 1 | 5.882e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95681.77116254419 (tsim/hr) [sph::Model][rank=0]
---------------- t = 292.25931109592256, dt = 1.5633390323580758 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (1.8%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.3%)
LB compute : 178.25 us (93.8%)
LB move op cnt : 0
LB apply : 2.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2471811806227286e-21,4.170595845668137e-21,3.717064800244422e-21)
sum a = (1.8073805832085184e-22,4.871340141969768e-23,-1.320143468871377e-22)
sum e = 7.860092515581858e-13
sum de = 9.592548607487504e-28
Info: cfl dt = 1.563377965207155 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3883e+04 | 2592 | 1 | 5.907e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95282.48803964618 (tsim/hr) [sph::Model][rank=0]
---------------- t = 293.82265012828066, dt = 1.563377965207155 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (1.7%)
patch tree reduce : 791.00 ns (0.4%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.5%)
LB compute : 184.70 us (93.6%)
LB move op cnt : 0
LB apply : 1.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.4835627179449076e-22,4.329818385433285e-21,3.35195952368043e-21)
sum a = (9.631917405933314e-23,-9.179538704797072e-23,4.260041201188441e-23)
sum e = 7.86018229901855e-13
sum de = -1.1612032524853294e-27
Info: cfl dt = 1.5634177778450173 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4562e+04 | 2592 | 1 | 5.817e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96760.77411542596 (tsim/hr) [sph::Model][rank=0]
---------------- t = 295.3860280934878, dt = 1.5634177778450173 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.76 us (1.8%)
patch tree reduce : 1.26 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 198.85 us (93.2%)
LB move op cnt : 0
LB apply : 2.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (51.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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7769910345881572e-22,4.0766451758889516e-21,3.555056198394287e-21)
sum a = (2.71216205564645e-22,9.731613022450957e-23,8.209320259134225e-23)
sum e = 7.860269473274799e-13
sum de = 1.0097419586828951e-28
Info: cfl dt = 1.5634584452063016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3805e+04 | 2592 | 1 | 5.917e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95118.80479912438 (tsim/hr) [sph::Model][rank=0]
---------------- t = 296.94944587133284, dt = 1.5634584452063016 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (2.2%)
patch tree reduce : 1.11 us (0.6%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.4%)
LB compute : 177.88 us (93.0%)
LB move op cnt : 0
LB apply : 2.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5715922894263115e-22,4.3765016689821014e-21,3.714277374723529e-21)
sum a = (-2.4080435385911915e-22,-8.836032370755774e-23,3.726949007753791e-27)
sum e = 7.860354139187567e-13
sum de = -4.543838814073028e-28
Info: cfl dt = 1.5634999466857131 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4171e+04 | 2592 | 1 | 5.868e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95917.00132953511 (tsim/hr) [sph::Model][rank=0]
---------------- t = 298.51290431653916, dt = 1.5634999466857131 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (1.6%)
patch tree reduce : 951.00 ns (0.5%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 661.00 ns (0.3%)
LB compute : 189.19 us (94.1%)
LB move op cnt : 0
LB apply : 1.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.7734668375613e-22,4.0933659174872826e-21,3.650111459830844e-21)
sum a = (5.778123449834179e-23,-3.538855899674707e-23,-1.5289381413449604e-23)
sum e = 7.860436131740278e-13
sum de = -8.204153414298523e-28
Info: cfl dt = 1.5635422613018695 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3676e+04 | 2592 | 1 | 5.935e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94843.08298615977 (tsim/hr) [sph::Model][rank=0]
---------------- t = 300.0764042632249, dt = 1.5635422613018695 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (1.8%)
patch tree reduce : 1.06 us (0.5%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 186.31 us (93.1%)
LB move op cnt : 0
LB apply : 2.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.140254924586435e-22,4.0793538718407736e-21,3.614250478787272e-21)
sum a = (1.1169840510332637e-22,1.899031248386729e-22,3.016738088561899e-23)
sum e = 7.860515289538768e-13
sum de = 3.407879110554771e-28
Info: cfl dt = 1.5635850699068585 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4198e+04 | 2592 | 1 | 5.865e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95980.01721418717 (tsim/hr) [sph::Model][rank=0]
---------------- t = 301.63994652452675, dt = 0.2366790370198828 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.93 us (1.9%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 751.00 ns (0.4%)
LB compute : 192.59 us (93.5%)
LB move op cnt : 0
LB apply : 2.37 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.121477148583679e-22,4.300420690031996e-21,3.656927249902955e-21)
sum a = (2.131011981054152e-23,-7.22225314286858e-24,-1.4588563228025992e-22)
sum e = 7.857555867681363e-13
sum de = -2.524354896707238e-28
Info: cfl dt = 1.5635916242556072 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6264e+04 | 2592 | 1 | 5.603e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15208.03800025142 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 220 [SPH][rank=0]
Info: time since start : 92.42878219500001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000289767 s
sph::RenderFieldGetter compute custom field took : 0.00022151600000000003 s
rho_t_ampl=-0.00118989, rho_t_phi=3.14159 rad
eps_t_ampl=-1.29432e-05, eps_t_phi=8.10925e-11 rad
vx_t_ampl=-1.25521e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 313.06s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 301.87662556154663, dt = 1.5635916242556072 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.72 us (3.9%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 721.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 228.00 us (91.3%)
LB move op cnt : 0
LB apply : 2.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.955385289056484e-23,4.265778907918294e-21,3.407987668359801e-21)
sum a = (-1.5293220319456694e-22,1.644483732687633e-23,1.331243086482945e-22)
sum e = 7.860574284329563e-13
sum de = 4.543838814073028e-28
Info: cfl dt = 1.5636336401990663 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1827e+04 | 2592 | 1 | 8.144e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69116.31046422054 (tsim/hr) [sph::Model][rank=0]
---------------- t = 303.4402171858022, dt = 1.5636336401990663 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.08 us (1.8%)
patch tree reduce : 1.46 us (0.7%)
gen split merge : 841.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 205.66 us (92.9%)
LB move op cnt : 0
LB apply : 2.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.407857071173215e-22,4.309952475549663e-21,3.834274119049965e-21)
sum a = (-1.5920970234357584e-22,1.9872494076796057e-22,-4.4055805117641143e-23)
sum e = 7.860659639067003e-13
sum de = -3.7865323450608567e-29
Info: cfl dt = 1.5636766133029727 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2292e+04 | 2592 | 1 | 8.027e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70130.02553182827 (tsim/hr) [sph::Model][rank=0]
---------------- t = 305.00385082600127, dt = 1.5636766133029727 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (1.7%)
patch tree reduce : 1.34 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 216.54 us (93.4%)
LB move op cnt : 0
LB apply : 2.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.287547478342295e-22,4.763370205494438e-21,3.6268626937784634e-21)
sum a = (-1.0436823738536299e-23,-1.7883275428705683e-22,2.7346113970056614e-23)
sum e = 7.860729199384718e-13
sum de = -7.446846945286351e-28
Info: cfl dt = 1.563720316422511 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5280e+04 | 2592 | 1 | 7.347e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76619.60002828778 (tsim/hr) [sph::Model][rank=0]
---------------- t = 306.56752743930423, dt = 1.563720316422511 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (2.0%)
patch tree reduce : 1.02 us (0.5%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 1.11 us (0.6%)
LB compute : 185.04 us (92.2%)
LB move op cnt : 0
LB apply : 2.68 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.309849451371908e-22,4.188465536497218e-21,3.7254491232801464e-21)
sum a = (3.401916716743074e-23,-9.352046571796894e-23,7.440385424573332e-23)
sum e = 7.86079498494396e-13
sum de = -2.6505726415425997e-28
Info: cfl dt = 1.563764722288565 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4167e+04 | 2592 | 1 | 5.869e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95922.63942539859 (tsim/hr) [sph::Model][rank=0]
---------------- t = 308.13124775572675, dt = 1.563764722288565 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (1.9%)
patch tree reduce : 1.30 us (0.7%)
gen split merge : 862.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 641.00 ns (0.3%)
LB compute : 180.28 us (93.4%)
LB move op cnt : 0
LB apply : 2.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.397879022853312e-22,4.1088542666146435e-21,3.878591818008468e-21)
sum a = (-1.5944077593188293e-22,5.2436103237222083e-23,3.372587551432548e-23)
sum e = 7.8608571985598e-13
sum de = -1.262177448353619e-28
Info: cfl dt = 1.5638098085397685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4099e+04 | 2592 | 1 | 5.878e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95779.34131517337 (tsim/hr) [sph::Model][rank=0]
---------------- t = 309.6950124780153, dt = 1.5638098085397685 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 us (1.9%)
patch tree reduce : 902.00 ns (0.5%)
gen split merge : 580.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 751.00 ns (0.4%)
LB compute : 180.91 us (93.4%)
LB move op cnt : 0
LB apply : 2.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.284023281315438e-22,4.304971555979488e-21,3.899527278882817e-21)
sum a = (-7.050311927680362e-23,1.6322911909643292e-22,1.6696280075276488e-22)
sum e = 7.860915719417891e-13
sum de = -6.058451752097371e-28
Info: cfl dt = 1.5638555525058773 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3261e+04 | 2592 | 1 | 5.992e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93961.35120356918 (tsim/hr) [sph::Model][rank=0]
---------------- t = 311.2588222865551, dt = 1.5638555525058773 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (1.9%)
patch tree reduce : 1.12 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 179.62 us (93.2%)
LB move op cnt : 0
LB apply : 2.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.703036721445603e-22,4.647037491203398e-21,4.2648115871758356e-21)
sum a = (1.2913162359893804e-22,3.215282671395574e-23,8.705615386537472e-23)
sum e = 7.860970432802391e-13
sum de = 6.058451752097371e-28
Info: cfl dt = 1.563901931201412 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4404e+04 | 2592 | 1 | 5.837e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96445.6500220966 (tsim/hr) [sph::Model][rank=0]
---------------- t = 312.82267783906093, dt = 0.23456348402447702 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (1.9%)
patch tree reduce : 1.33 us (0.7%)
gen split merge : 931.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.4%)
LB compute : 182.00 us (92.8%)
LB move op cnt : 0
LB apply : 2.52 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.75996459221454e-22,4.5519121973503175e-21,4.222750555222623e-21)
sum a = (-1.964125500610152e-23,-1.0181479400068495e-23,1.5351222521280572e-22)
sum e = 7.857641228275816e-13
sum de = -2.145701662201152e-28
Info: cfl dt = 1.563909082349102 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6026e+04 | 2592 | 1 | 5.632e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14994.39704545992 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 228 [SPH][rank=0]
Info: time since start : 93.18806479300001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000287834 s
sph::RenderFieldGetter compute custom field took : 0.00022274800000000002 s
rho_t_ampl=-0.00126037, rho_t_phi=3.14159 rad
eps_t_ampl=-1.15743e-05, eps_t_phi=1.03953e-10 rad
vx_t_ampl=-7.93365e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 324.24s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 313.0572413230854, dt = 1.563909082349102 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.88 us (3.9%)
patch tree reduce : 1.61 us (0.6%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 232.20 us (91.3%)
LB move op cnt : 0
LB apply : 2.97 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.3617829155387495e-22,4.531096318270322e-21,4.4706238023003476e-21)
sum a = (-3.617585399163012e-22,2.2093804280607273e-23,-1.1974029889569805e-22)
sum e = 7.861010202539835e-13
sum de = -6.310887241768095e-30
Info: cfl dt = 1.5639560332525937 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3990e+04 | 2592 | 1 | 5.892e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95550.56784658271 (tsim/hr) [sph::Model][rank=0]
---------------- t = 314.6211504054345, dt = 1.5639560332525937 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (2.0%)
patch tree reduce : 1.30 us (0.7%)
gen split merge : 691.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 182.85 us (92.7%)
LB move op cnt : 0
LB apply : 2.59 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.657567873456097e-21,4.59091870279871e-21,4.06968418730531e-21)
sum a = (1.6906884211134446e-22,2.1552827312148776e-22,-1.826218324705912e-22)
sum e = 7.861063964061508e-13
sum de = -1.4515040656066617e-28
Info: cfl dt = 1.564003691770806 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4382e+04 | 2592 | 1 | 5.840e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96405.4191921377 (tsim/hr) [sph::Model][rank=0]
---------------- t = 316.18510643868706, dt = 1.564003691770806 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (1.7%)
patch tree reduce : 1.19 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 511.00 ns (0.3%)
LB compute : 188.10 us (94.1%)
LB move op cnt : 0
LB apply : 2.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.850923817962133e-22,5.0793184065288614e-21,3.73489099021519e-21)
sum a = (1.6982624998412878e-22,1.007240143364368e-22,-1.4151948318512667e-22)
sum e = 7.861106399647003e-13
sum de = 4.67005655890839e-28
Info: cfl dt = 1.5640519163326139 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4315e+04 | 2592 | 1 | 5.849e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96262.51693360602 (tsim/hr) [sph::Model][rank=0]
---------------- t = 317.74911013045784, dt = 1.5640519163326139 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.76 us (1.8%)
patch tree reduce : 1.06 us (0.5%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 191.94 us (93.3%)
LB move op cnt : 0
LB apply : 2.39 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (62.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.104742595148252e-22,5.146958780794972e-21,3.5456892843527955e-21)
sum a = (-2.5534915250089237e-22,2.719718081750206e-23,8.284525594750964e-23)
sum e = 7.861144255011464e-13
sum de = -1.8932661725304283e-28
Info: cfl dt = 1.5641006771263848 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4612e+04 | 2592 | 1 | 5.810e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96910.65874973754 (tsim/hr) [sph::Model][rank=0]
---------------- t = 319.31316204679047, dt = 1.5641006771263848 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (1.9%)
patch tree reduce : 841.00 ns (0.4%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 183.58 us (93.2%)
LB move op cnt : 0
LB apply : 2.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.43758581738776e-21,5.132237467606575e-21,3.850726655375755e-21)
sum a = (2.279797697080764e-22,-1.2770737185086997e-22,6.152926302902907e-24)
sum e = 7.861177835381149e-13
sum de = -2.524354896707238e-29
Info: cfl dt = 1.5641499497216165 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4422e+04 | 2592 | 1 | 5.835e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96501.06311871081 (tsim/hr) [sph::Model][rank=0]
---------------- t = 320.87726272391683, dt = 1.5641499497216165 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (2.0%)
patch tree reduce : 1.28 us (0.6%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 580.00 ns (0.3%)
LB compute : 194.44 us (93.6%)
LB move op cnt : 0
LB apply : 2.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.082148733180449e-22,4.811356487332875e-21,3.8003734923801026e-21)
sum a = (-8.823159846858545e-23,-1.867403552448978e-23,1.3709353393429642e-22)
sum e = 7.861207076010087e-13
sum de = -1.262177448353619e-28
Info: cfl dt = 1.5641997094549307 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4930e+04 | 2592 | 1 | 5.769e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97607.76801458614 (tsim/hr) [sph::Model][rank=0]
---------------- t = 322.44141267363847, dt = 1.5641997094549307 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (1.8%)
patch tree reduce : 891.00 ns (0.4%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 611.00 ns (0.3%)
LB compute : 195.38 us (93.9%)
LB move op cnt : 0
LB apply : 2.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0939537167319916e-21,4.867423926051272e-21,4.117220530749724e-21)
sum a = (2.9467017477781324e-22,-5.0126219839177626e-23,6.869831771052692e-24)
sum e = 7.861231920280432e-13
sum de = 5.99534287967969e-29
Info: cfl dt = 1.5642499314349458 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4229e+04 | 2592 | 1 | 7.573e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74361.44797891744 (tsim/hr) [sph::Model][rank=0]
---------------- t = 324.0056123830934, dt = 0.23224470153076027 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 16.21 us (6.0%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 239.34 us (89.1%)
LB move op cnt : 0
LB apply : 3.79 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.256737666568018e-22,4.831142163331668e-21,4.016968074234521e-21)
sum a = (1.2633306569610789e-22,8.707582935762592e-24,-3.614603202160043e-23)
sum e = 7.857687292003201e-13
sum de = -1.262177448353619e-29
Info: cfl dt = 1.5642574777650031 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4089e+04 | 2592 | 1 | 7.604e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10995.698619065208 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 236 [SPH][rank=0]
Info: time since start : 93.92208596100001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000273933 s
sph::RenderFieldGetter compute custom field took : 0.00022080500000000002 s
rho_t_ampl=-0.00129841, rho_t_phi=3.14159 rad
eps_t_ampl=-1.0151e-05, eps_t_phi=1.27075e-10 rad
vx_t_ampl=-3.12405e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 335.42s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 324.2378570846242, dt = 1.5642574777650031 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.27 us (3.9%)
patch tree reduce : 1.51 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.4%)
LB compute : 240.67 us (91.3%)
LB move op cnt : 0
LB apply : 3.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.385555098143601e-22,4.851611432029203e-21,3.9554312701298984e-21)
sum a = (8.527899150688392e-23,1.3450047400226026e-22,-4.015940139518918e-23)
sum e = 7.861248671399902e-13
sum de = -1.072850831100576e-28
Info: cfl dt = 1.5643066424929872 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3304e+04 | 2592 | 1 | 7.783e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72355.5810674671 (tsim/hr) [sph::Model][rank=0]
---------------- t = 325.8021145623892, dt = 1.5643066424929872 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.98 us (1.7%)
patch tree reduce : 1.38 us (0.6%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 216.09 us (93.5%)
LB move op cnt : 0
LB apply : 2.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (62.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.51415092179447e-22,5.160396351826107e-21,3.889470680242078e-21)
sum a = (5.649749234108025e-23,-1.618046667636528e-23,5.122223650449619e-23)
sum e = 7.861265394336115e-13
sum de = -6.153115060723892e-29
Info: cfl dt = 1.5643545780337302 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6948e+04 | 2592 | 1 | 7.015e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80275.4316064739 (tsim/hr) [sph::Model][rank=0]
---------------- t = 327.36642120488216, dt = 1.5643545780337302 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (2.1%)
patch tree reduce : 1.17 us (0.6%)
gen split merge : 842.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 183.67 us (92.7%)
LB move op cnt : 0
LB apply : 2.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.8763878180669377e-22,5.0171981235389754e-21,4.0410748719991104e-21)
sum a = (-5.268477813401349e-23,3.059348116230712e-23,1.1135659631368787e-22)
sum e = 7.861276517727094e-13
sum de = -2.3665827156630354e-29
Info: cfl dt = 1.5644029059735198 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5760e+04 | 2592 | 1 | 5.664e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99423.16564528615 (tsim/hr) [sph::Model][rank=0]
---------------- t = 328.9307757829159, dt = 1.5644029059735198 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (1.8%)
patch tree reduce : 851.00 ns (0.4%)
gen split merge : 541.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 601.00 ns (0.3%)
LB compute : 180.28 us (93.9%)
LB move op cnt : 0
LB apply : 1.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.549103848978721e-22,5.101649101354426e-21,4.262317185403944e-21)
sum a = (-2.1271607545823672e-23,-1.3431372963532113e-22,-1.737247439827613e-23)
sum e = 7.861282694605442e-13
sum de = 1.8143800820083272e-29
Info: cfl dt = 1.564429761369872 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.2321e+04 | 2592 | 1 | 6.125e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91954.59467045739 (tsim/hr) [sph::Model][rank=0]
---------------- t = 330.4951786888894, dt = 1.564429761369872 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (1.6%)
patch tree reduce : 1.14 us (0.5%)
gen split merge : 761.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 223.36 us (93.7%)
LB move op cnt : 0
LB apply : 2.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.621506906648271e-22,4.762676984729517e-21,4.134447103273677e-21)
sum a = (-1.6781077479722814e-22,-7.725269454567427e-23,-1.1761016684385875e-22)
sum e = 7.861284220739718e-13
sum de = -2.2482535798798836e-29
Info: cfl dt = 1.5644313356204504 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4961e+04 | 2592 | 1 | 5.765e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97691.55466677889 (tsim/hr) [sph::Model][rank=0]
---------------- t = 332.05960845025925, dt = 1.5644313356204504 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (1.7%)
patch tree reduce : 1.22 us (0.5%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.4%)
LB compute : 220.33 us (93.8%)
LB move op cnt : 0
LB apply : 2.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.40674903154964e-22,4.686284698306276e-21,3.872046658238835e-21)
sum a = (-1.8046847246782692e-22,-1.3839332180179985e-22,3.777330907951401e-23)
sum e = 7.861281074816814e-13
sum de = -4.1020767071492614e-29
Info: cfl dt = 1.564400905937924 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4905e+04 | 2592 | 1 | 5.772e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97571.4959435354 (tsim/hr) [sph::Model][rank=0]
---------------- t = 333.6240397858797, dt = 1.564400905937924 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (1.6%)
patch tree reduce : 1.18 us (0.5%)
gen split merge : 831.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 571.00 ns (0.3%)
LB compute : 212.96 us (94.5%)
LB move op cnt : 0
LB apply : 2.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2336248634420469e-21,4.422032793944775e-21,4.0526826465690185e-21)
sum a = (-2.394179123292767e-22,-1.0974130006763872e-22,-5.681811624585472e-23)
sum e = 7.861273231128575e-13
sum de = -2.745235950169121e-28
Info: cfl dt = 1.5643529372318417 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4980e+04 | 2592 | 1 | 5.763e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97731.67122471026 (tsim/hr) [sph::Model][rank=0]
---------------- t = 335.1884406918176, dt = 0.23003215434528101 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (1.5%)
patch tree reduce : 1.05 us (0.5%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.4%)
LB compute : 218.49 us (94.1%)
LB move op cnt : 0
LB apply : 2.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3265677956277821e-21,4.419221398620372e-21,3.965623197147134e-21)
sum a = (2.038454171515595e-22,-2.8564967969121815e-23,7.214217084397494e-24)
sum e = 7.85769003527447e-13
sum de = -1.5777218104420236e-28
Info: cfl dt = 1.5643459543487703 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.9237e+04 | 2592 | 1 | 6.606e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12535.822852695901 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 244 [SPH][rank=0]
Info: time since start : 94.659931392 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000281004 s
sph::RenderFieldGetter compute custom field took : 0.00025976300000000004 s
rho_t_ampl=-0.00130312, rho_t_phi=3.14159 rad
eps_t_ampl=-8.70925e-06, eps_t_phi=1.60086e-10 rad
vx_t_ampl=1.75478e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 346.60s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 335.4184728461629, dt = 1.5643459543487703 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.64 us (3.6%)
patch tree reduce : 1.55 us (0.6%)
gen split merge : 762.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 246.64 us (92.0%)
LB move op cnt : 0
LB apply : 2.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.622931210832483e-22,4.3838222086338855e-21,3.9842734762493604e-21)
sum a = (-4.303103711140673e-23,1.8225197143521612e-22,-1.4418136397466167e-22)
sum e = 7.861264957807493e-13
sum de = -4.733165431326071e-29
Info: cfl dt = 1.5642955880519522 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5783e+04 | 2592 | 1 | 5.662e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99471.84465150397 (tsim/hr) [sph::Model][rank=0]
---------------- t = 336.98281880051167, dt = 1.5642955880519522 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.8%)
patch tree reduce : 981.00 ns (0.5%)
gen split merge : 581.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 701.00 ns (0.4%)
LB compute : 184.36 us (93.7%)
LB move op cnt : 0
LB apply : 2.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2177064606920039e-21,4.83384123121731e-21,3.640313672335606e-21)
sum a = (-3.5946064145480307e-22,1.5764664597475388e-22,-2.5333176033738127e-23)
sum e = 7.861242461399249e-13
sum de = -7.888609052210118e-29
Info: cfl dt = 1.5642453787765516 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6003e+04 | 2592 | 1 | 5.634e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99947.33660235934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 338.5471143885636, dt = 1.5642453787765516 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (1.6%)
patch tree reduce : 1.46 us (0.7%)
gen split merge : 641.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 206.41 us (93.5%)
LB move op cnt : 0
LB apply : 2.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.040225735692616e-21,5.061195176623722e-21,3.693643216817734e-21)
sum a = (-2.348221154062804e-22,-1.64450379115884e-23,1.2719907131296872e-22)
sum e = 7.861220804739469e-13
sum de = -7.573064690121713e-29
Info: cfl dt = 1.5641956470463072 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4368e+04 | 2592 | 1 | 5.842e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96391.45174252863 (tsim/hr) [sph::Model][rank=0]
---------------- t = 340.11135976734016, dt = 1.5641956470463072 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 17.40 us (8.0%)
patch tree reduce : 1.11 us (0.5%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 751.00 ns (0.3%)
LB compute : 188.49 us (86.9%)
LB move op cnt : 0
LB apply : 2.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3004659458126747e-21,4.8993473841469736e-21,4.011906381986434e-21)
sum a = (-3.0211587928993016e-22,2.6719277711754645e-22,1.79223005189862e-22)
sum e = 7.861194325332289e-13
sum de = 3.534096855390133e-28
Info: cfl dt = 1.5641464230882496 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5219e+04 | 2592 | 1 | 5.732e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98238.70098999269 (tsim/hr) [sph::Model][rank=0]
---------------- t = 341.67555541438645, dt = 1.5641464230882496 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.32 us (2.2%)
patch tree reduce : 1.27 us (0.6%)
gen split merge : 721.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 721.00 ns (0.4%)
LB compute : 184.09 us (92.8%)
LB move op cnt : 0
LB apply : 2.49 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.8180707836205267e-21,5.539097078862867e-21,4.332925209945526e-21)
sum a = (-5.076686735106476e-22,-8.466961515160883e-23,9.483406742075954e-24)
sum e = 7.861163496525199e-13
sum de = 1.8932661725304283e-29
Info: cfl dt = 1.5640977308975799 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2837e+04 | 2592 | 1 | 7.893e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71336.31797469554 (tsim/hr) [sph::Model][rank=0]
---------------- t = 343.2397018374747, dt = 1.5640977308975799 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (2.1%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 227.27 us (92.6%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.783034088390879e-21,5.1315185719985085e-21,4.215009392028022e-21)
sum a = (-1.494660993699608e-22,1.6154591248507978e-23,1.3034093079570366e-23)
sum e = 7.861128381415144e-13
sum de = 4.543838814073028e-28
Info: cfl dt = 1.5640495941812451 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.3302e+04 | 2592 | 1 | 1.112e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50619.538460635835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 344.80379956837226, dt = 1.5640495941812451 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (2.4%)
patch tree reduce : 1.52 us (0.7%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 211.88 us (92.3%)
LB move op cnt : 0
LB apply : 2.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.743186731829481e-21,5.235607595464667e-21,4.238172170241822e-21)
sum a = (1.7117417924925338e-22,2.552366244774199e-22,-1.075781490706243e-22)
sum e = 7.861089052486939e-13
sum de = 1.0097419586828951e-28
Info: cfl dt = 1.564002036335883 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3178e+04 | 2592 | 1 | 6.003e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93795.77605310184 (tsim/hr) [sph::Model][rank=0]
---------------- t = 346.3678491625535, dt = 0.2312394451481623 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (1.4%)
patch tree reduce : 1.31 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.3%)
LB compute : 214.31 us (94.5%)
LB move op cnt : 0
LB apply : 2.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.442482968912538e-21,5.481617523771482e-21,4.118974094546024e-21)
sum a = (-1.2554998298017834e-23,-7.387264156254705e-23,-1.4198256879809514e-22)
sum e = 7.857651762222669e-13
sum de = 4.417621069237666e-29
Info: cfl dt = 1.563995182678314 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.2493e+04 | 2592 | 1 | 1.152e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7224.028579660298 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 252 [SPH][rank=0]
Info: time since start : 95.488139024 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000313572 s
sph::RenderFieldGetter compute custom field took : 0.000257309 s
rho_t_ampl=-0.00127443, rho_t_phi=3.14159 rad
eps_t_ampl=-7.28553e-06, eps_t_phi=2.07063e-10 rad
vx_t_ampl=6.5794e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 357.78s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 346.5990886077017, dt = 1.563995182678314 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.83 us (3.9%)
patch tree reduce : 1.50 us (0.6%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 227.92 us (91.1%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.476373761864243e-21,5.328075543052216e-21,3.892936211457178e-21)
sum a = (-1.984151878263432e-22,1.468582975283112e-22,-2.9808390063134676e-23)
sum e = 7.861057255349072e-13
sum de = -3.9127500898962186e-28
Info: cfl dt = 1.5639481779054065 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8796e+04 | 2592 | 1 | 9.001e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62550.96955014589 (tsim/hr) [sph::Model][rank=0]
---------------- t = 348.16308379037997, dt = 1.5639481779054065 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (2.0%)
patch tree reduce : 1.38 us (0.6%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 221.72 us (93.0%)
LB move op cnt : 0
LB apply : 2.97 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.947353084520356e-21,5.7303201012531524e-21,3.934037371712772e-21)
sum a = (6.690864123647132e-23,2.171796870559775e-22,-5.321204087120041e-23)
sum e = 7.860998326471725e-13
sum de = -3.660314600225495e-28
Info: cfl dt = 1.5639019468517579 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9692e+04 | 2592 | 1 | 8.730e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64495.00891085008 (tsim/hr) [sph::Model][rank=0]
---------------- t = 349.72703196828536, dt = 1.5639019468517579 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (2.4%)
patch tree reduce : 1.62 us (0.7%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 202.71 us (92.1%)
LB move op cnt : 0
LB apply : 2.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.640076561758234e-21,6.124944045073046e-21,3.832517908879549e-21)
sum a = (-1.0786001605311437e-22,4.239357889644154e-25,4.8418856745241834e-23)
sum e = 7.860946699181711e-13
sum de = -8.835242138475332e-29
Info: cfl dt = 1.5638563603561866 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0358e+04 | 2592 | 1 | 8.538e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65941.11211142039 (tsim/hr) [sph::Model][rank=0]
---------------- t = 351.29093391513715, dt = 1.5638563603561866 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (2.2%)
patch tree reduce : 1.43 us (0.6%)
gen split merge : 842.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 207.55 us (92.7%)
LB move op cnt : 0
LB apply : 2.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.911613702862194e-21,5.956156021558602e-21,3.987708425283067e-21)
sum a = (-4.8230192848315955e-23,-2.844963175968035e-23,2.6768910961318984e-23)
sum e = 7.860890841216405e-13
sum de = -2.398137151871876e-28
Info: cfl dt = 1.5638114462609671 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9335e+04 | 2592 | 1 | 8.836e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63716.52957706738 (tsim/hr) [sph::Model][rank=0]
---------------- t = 352.8547902754933, dt = 1.5638114462609671 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (2.0%)
patch tree reduce : 1.41 us (0.6%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 208.23 us (92.5%)
LB move op cnt : 0
LB apply : 2.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.941601919655824e-21,5.88902272544461e-21,4.012641251940551e-21)
sum a = (1.3566587117939927e-22,3.653480033388317e-23,4.5884434084530216e-23)
sum e = 7.86083127079829e-13
sum de = -5.679798517591285e-28
Info: cfl dt = 1.5637672261769666 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9744e+04 | 2592 | 1 | 8.714e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64601.78288337337 (tsim/hr) [sph::Model][rank=0]
---------------- t = 354.41860172175427, dt = 1.5637672261769666 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (2.0%)
patch tree reduce : 1.40 us (0.6%)
gen split merge : 881.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 206.18 us (92.6%)
LB move op cnt : 0
LB apply : 2.81 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.595299635312952e-21,5.996980626837216e-21,4.099340363084553e-21)
sum a = (9.533069259824176e-23,7.422822811087289e-23,1.634970761486622e-22)
sum e = 7.860768106645754e-13
sum de = -8.835242138475332e-29
Info: cfl dt = 1.5637237213649147 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9698e+04 | 2592 | 1 | 8.728e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64501.939364869984 (tsim/hr) [sph::Model][rank=0]
---------------- t = 355.98236894793126, dt = 1.5637237213649147 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (1.9%)
patch tree reduce : 1.60 us (0.7%)
gen split merge : 821.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 222.70 us (93.2%)
LB move op cnt : 0
LB apply : 2.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.466720020841636e-21,6.1425184752059565e-21,4.446964016954147e-21)
sum a = (1.4300887631893525e-22,1.587856662622554e-22,1.5356419468444103e-22)
sum e = 7.860701476098807e-13
sum de = 6.310887241768094e-29
Info: cfl dt = 1.5636809527014583 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9806e+04 | 2592 | 1 | 8.696e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64734.01533295326 (tsim/hr) [sph::Model][rank=0]
---------------- t = 357.5460926692962, dt = 0.23361169994427655 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (2.1%)
patch tree reduce : 1.56 us (0.7%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.6%)
LB compute : 199.66 us (92.4%)
LB move op cnt : 0
LB apply : 2.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.403868004822111e-21,6.245755414815232e-21,4.475072268341138e-21)
sum a = (4.998891960376426e-23,2.0197376120321458e-23,1.117031313362361e-22)
sum e = 7.857575014067144e-13
sum de = -3.281661365719409e-28
Info: cfl dt = 1.563674839296043 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0786e+04 | 2592 | 1 | 8.419e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9988.951484965492 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 260 [SPH][rank=0]
Info: time since start : 96.42245134400001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00031673700000000004 s
sph::RenderFieldGetter compute custom field took : 0.00024234700000000002 s
rho_t_ampl=-0.00121316, rho_t_phi=3.14159 rad
eps_t_ampl=-5.91574e-06, eps_t_phi=2.87778e-10 rad
vx_t_ampl=1.1228e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 368.96s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 357.77970436924045, dt = 1.563674839296043 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.73 us (3.9%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 225.62 us (91.2%)
LB move op cnt : 0
LB apply : 2.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.3652530407316842e-21,6.261149087958495e-21,4.644850027196944e-21)
sum a = (3.3491549140796244e-22,-1.094947313103241e-22,2.7842237252870635e-22)
sum e = 7.860649408501532e-13
sum de = -7.573064690121713e-29
Info: cfl dt = 1.5636319877712004 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3124e+04 | 2592 | 1 | 6.011e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93654.71526809037 (tsim/hr) [sph::Model][rank=0]
---------------- t = 359.3433792085365, dt = 1.5636319877712004 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.70 us (2.0%)
patch tree reduce : 991.00 ns (0.5%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 511.00 ns (0.3%)
LB compute : 169.30 us (93.1%)
LB move op cnt : 0
LB apply : 2.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.601580506219941e-21,5.988560882963276e-21,5.210547496333202e-21)
sum a = (5.740894927273594e-23,1.5616021296594348e-23,1.2474593020159363e-22)
sum e = 7.860560005827181e-13
sum de = -4.796274303743752e-28
Info: cfl dt = 1.563589144964348 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4653e+04 | 2592 | 1 | 5.805e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96972.64632624354 (tsim/hr) [sph::Model][rank=0]
---------------- t = 360.9070111963077, dt = 1.563589144964348 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (1.9%)
patch tree reduce : 1.11 us (0.5%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 189.20 us (93.0%)
LB move op cnt : 0
LB apply : 2.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7305709181815803e-21,6.110768322301485e-21,5.2854521781812365e-21)
sum a = (-2.7261548451606004e-22,-2.669306128988682e-23,1.6022450979695828e-22)
sum e = 7.860483725439823e-13
sum de = -9.718766352322865e-28
Info: cfl dt = 1.5635470985507405 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4859e+04 | 2592 | 1 | 5.778e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97417.55773004475 (tsim/hr) [sph::Model][rank=0]
---------------- t = 362.470600341272, dt = 1.5635470985507405 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.8%)
patch tree reduce : 1.49 us (0.6%)
gen split merge : 801.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.4%)
LB compute : 219.10 us (93.6%)
LB move op cnt : 0
LB apply : 2.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.4079759797253484e-21,6.03593899195471e-21,5.563707706557421e-21)
sum a = (-9.979811530551191e-23,-1.391839264444321e-22,-4.7835553356483465e-23)
sum e = 7.860404205666945e-13
sum de = 5.301145283085199e-28
Info: cfl dt = 1.563505874307596 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3147e+04 | 2592 | 1 | 6.007e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93698.48877048076 (tsim/hr) [sph::Model][rank=0]
---------------- t = 364.03414743982273, dt = 1.563505874307596 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (1.7%)
patch tree reduce : 1.12 us (0.5%)
gen split merge : 530.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 561.00 ns (0.3%)
LB compute : 200.44 us (94.4%)
LB move op cnt : 0
LB apply : 2.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.4543960961319256e-21,5.7303891023941056e-21,5.326260683850123e-21)
sum a = (-5.452181316105475e-22,2.55609611749518e-23,8.388740970681647e-23)
sum e = 7.860321978062825e-13
sum de = 3.7865323450608567e-29
Info: cfl dt = 1.563465491774556 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3726e+04 | 2592 | 1 | 5.928e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94952.72072881744 (tsim/hr) [sph::Model][rank=0]
---------------- t = 365.59765331413035, dt = 1.563465491774556 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (1.8%)
patch tree reduce : 932.00 ns (0.5%)
gen split merge : 821.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.3%)
LB compute : 193.17 us (93.4%)
LB move op cnt : 0
LB apply : 2.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.655567957838401e-21,5.899170707197763e-21,5.560390567386416e-21)
sum a = (3.948790875736489e-23,-9.646349475966903e-23,6.0424242812391e-23)
sum e = 7.860237204748223e-13
sum de = -1.262177448353619e-28
Info: cfl dt = 1.5634259700825892 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3937e+04 | 2592 | 1 | 5.899e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95407.9753170598 (tsim/hr) [sph::Model][rank=0]
---------------- t = 367.1611188059049, dt = 1.5634259700825892 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.11 us (1.9%)
patch tree reduce : 1.09 us (0.5%)
gen split merge : 792.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 204.42 us (93.1%)
LB move op cnt : 0
LB apply : 2.83 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.0570360144367814e-21,5.652954577806938e-21,5.6365174719377e-21)
sum a = (-4.9141649779971644e-23,-7.158366912073612e-24,-4.3391473519278055e-23)
sum e = 7.860150054870137e-13
sum de = 1.7670484276950664e-28
Info: cfl dt = 1.5633873279115467 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3490e+04 | 2592 | 1 | 5.960e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94434.60441799441 (tsim/hr) [sph::Model][rank=0]
---------------- t = 368.72454477598745, dt = 0.2357753547917696 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (2.0%)
patch tree reduce : 1.52 us (0.8%)
gen split merge : 901.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 661.00 ns (0.3%)
LB compute : 184.43 us (92.9%)
LB move op cnt : 0
LB apply : 2.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.222998200527553e-21,5.7210683319935386e-21,5.545132738366388e-21)
sum a = (1.2413786660719066e-23,1.2297447527717239e-23,-7.139242895383546e-23)
sum e = 7.857466903967502e-13
sum de = 1.464125840090198e-27
Info: cfl dt = 1.5633818770986299 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6560e+04 | 2592 | 1 | 5.567e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15246.848205366998 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 268 [SPH][rank=0]
Info: time since start : 97.12483641300001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000300002 s
sph::RenderFieldGetter compute custom field took : 0.00024856600000000003 s
rho_t_ampl=-0.00112089, rho_t_phi=3.14159 rad
eps_t_ampl=-4.63437e-06, eps_t_phi=3.84341e-10 rad
vx_t_ampl=1.55836e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 380.14s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 368.9603201307792, dt = 1.5633818770986299 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.85 us (3.6%)
patch tree reduce : 1.57 us (0.6%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 252.70 us (91.7%)
LB move op cnt : 0
LB apply : 3.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.176167286630652e-21,5.7425878622434834e-21,5.430218141176857e-21)
sum a = (7.291655453245532e-24,-3.454800876080887e-23,1.3064631231533404e-23)
sum e = 7.86008299689335e-13
sum de = -3.0292258760486853e-28
Info: cfl dt = 1.563343958897363 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.8046e+04 | 2592 | 1 | 6.813e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82611.89259547215 (tsim/hr) [sph::Model][rank=0]
---------------- t = 370.52370200787783, dt = 1.563343958897363 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (1.9%)
patch tree reduce : 1.12 us (0.5%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.4%)
LB compute : 216.16 us (93.7%)
LB move op cnt : 0
LB apply : 2.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.1531626271725256e-21,5.651953258924274e-21,5.5166619721313945e-21)
sum a = (4.883098417791436e-22,-7.073785353610602e-23,3.30814346263437e-24)
sum e = 7.859972094590947e-13
sum de = -3.7865323450608567e-28
Info: cfl dt = 1.563307274943094 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7004e+04 | 2592 | 1 | 7.005e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80346.94815627715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 372.0870459667752, dt = 1.563307274943094 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (2.2%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 731.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 551.00 ns (0.3%)
LB compute : 182.42 us (92.9%)
LB move op cnt : 0
LB apply : 2.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.0045728442274826e-21,5.5130828463848106e-21,5.5142072437662526e-21)
sum a = (-4.6882263583191344e-23,-1.9514625877370393e-22,-1.0496902969681028e-23)
sum e = 7.85987892991467e-13
sum de = -6.815758221109542e-28
Info: cfl dt = 1.5632715210038728 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4346e+04 | 2592 | 1 | 5.845e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96286.53842131549 (tsim/hr) [sph::Model][rank=0]
---------------- t = 373.6503532417183, dt = 1.5632715210038728 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (1.5%)
patch tree reduce : 1.00 us (0.4%)
gen split merge : 431.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.4%)
LB compute : 210.11 us (94.2%)
LB move op cnt : 0
LB apply : 2.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.564900621028999e-21,5.1107877408364316e-21,5.487006969535113e-21)
sum a = (-2.5122834017608285e-23,-2.6503794570193375e-22,-1.078460481440525e-22)
sum e = 7.859783814158216e-13
sum de = 6.058451752097371e-28
Info: cfl dt = 1.5632367191840038 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3269e+04 | 2592 | 1 | 5.990e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93947.05122490134 (tsim/hr) [sph::Model][rank=0]
---------------- t = 375.21362476272213, dt = 1.5632367191840038 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (1.9%)
patch tree reduce : 1.11 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 184.32 us (93.0%)
LB move op cnt : 0
LB apply : 2.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.582975710603241e-21,4.641824294536644e-21,5.242326493935508e-21)
sum a = (6.263377985279041e-23,-7.733508471615789e-23,6.332130165886259e-23)
sum e = 7.859687259628051e-13
sum de = -1.0349855076499675e-27
Info: cfl dt = 1.563202885684661 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4378e+04 | 2592 | 1 | 5.841e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96352.18999673042 (tsim/hr) [sph::Model][rank=0]
---------------- t = 376.7768614819061, dt = 1.563202885684661 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (1.7%)
patch tree reduce : 1.15 us (0.6%)
gen split merge : 792.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 194.61 us (93.4%)
LB move op cnt : 0
LB apply : 2.80 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (63.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.399760029918874e-21,4.6676567972655625e-21,5.475098078582805e-21)
sum a = (-8.919440508653161e-23,2.722110054441666e-23,-4.0509576590309587e-23)
sum e = 7.859589455351165e-13
sum de = -1.3883951931889808e-27
Info: cfl dt = 1.5631700362551086 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3996e+04 | 2592 | 1 | 5.891e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95520.68521246748 (tsim/hr) [sph::Model][rank=0]
---------------- t = 378.3400643675908, dt = 1.5631700362551086 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (1.9%)
patch tree reduce : 881.00 ns (0.4%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 641.00 ns (0.3%)
LB compute : 196.66 us (94.2%)
LB move op cnt : 0
LB apply : 1.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.673351158474453e-21,4.7919250439356e-21,5.3306203580238426e-21)
sum a = (8.865523338048177e-23,-9.18698541223275e-23,-1.456953731261329e-22)
sum e = 7.859490595129764e-13
sum de = -1.8932661725304283e-27
Info: cfl dt = 1.5631381861440863 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.2173e+04 | 2592 | 1 | 6.146e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91559.66975458567 (tsim/hr) [sph::Model][rank=0]
---------------- t = 379.9032344038459, dt = 0.23770148847211203 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (1.6%)
patch tree reduce : 1.05 us (0.4%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 226.63 us (94.0%)
LB move op cnt : 0
LB apply : 2.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.426051069299591e-21,4.677003643678699e-21,5.21377670827641e-21)
sum a = (7.749951403387901e-23,1.3977645368389312e-23,1.2007994756222965e-23)
sum e = 7.857338630434887e-13
sum de = -1.1864468014524018e-27
Info: cfl dt = 1.5631338029173099 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5248e+04 | 2592 | 1 | 5.728e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14938.273233914508 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 276 [SPH][rank=0]
Info: time since start : 98.00724839600001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00030411800000000003 s
sph::RenderFieldGetter compute custom field took : 0.00025393400000000004 s
rho_t_ampl=-0.00100005, rho_t_phi=3.14159 rad
eps_t_ampl=-3.4736e-06, eps_t_phi=5.33696e-10 rad
vx_t_ampl=1.95365e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 391.32s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 380.140935892318, dt = 1.5631338029173099 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.83 us (3.7%)
patch tree reduce : 1.56 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 243.91 us (91.4%)
LB move op cnt : 0
LB apply : 3.62 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.3085629870670147e-21,4.711435012429438e-21,5.25128997342627e-21)
sum a = (-3.995005593397904e-23,-4.6126109364857483e-23,2.893157909942202e-23)
sum e = 7.859415345270989e-13
sum de = 3.0292258760486853e-28
Info: cfl dt = 1.5631027405377091 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.0720e+04 | 2592 | 1 | 6.365e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88404.1422423603 (tsim/hr) [sph::Model][rank=0]
---------------- t = 381.7040696952353, dt = 1.5631027405377091 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (1.6%)
patch tree reduce : 891.00 ns (0.4%)
gen split merge : 441.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 215.38 us (94.3%)
LB move op cnt : 0
LB apply : 2.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.5369663916869874e-21,4.5923591016161e-21,5.309739917381273e-21)
sum a = (5.115712496687226e-23,4.0292153160418035e-23,1.5443940624240934e-23)
sum e = 7.859294019285758e-13
sum de = -2.271919407036514e-28
Info: cfl dt = 1.563073072820092 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.2928e+04 | 2592 | 1 | 6.038e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93195.8186257053 (tsim/hr) [sph::Model][rank=0]
---------------- t = 383.26717243577303, dt = 1.563073072820092 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (1.8%)
patch tree reduce : 1.03 us (0.5%)
gen split merge : 751.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 196.48 us (93.3%)
LB move op cnt : 0
LB apply : 2.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.3233516967186675e-21,4.7228774112074976e-21,5.3233386427770986e-21)
sum a = (-1.6863236977787553e-22,1.6517900308248595e-23,-7.822113011867892e-23)
sum e = 7.859193375835065e-13
sum de = 1.8427790745962836e-27
Info: cfl dt = 1.563044324745292 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1590e+04 | 2592 | 1 | 8.205e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68579.49093713757 (tsim/hr) [sph::Model][rank=0]
---------------- t = 384.8302455085931, dt = 1.563044324745292 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (2.0%)
patch tree reduce : 1.14 us (0.5%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 218.11 us (93.1%)
LB move op cnt : 0
LB apply : 2.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.834383774681341e-21,4.730116569880631e-21,5.1278728742992004e-21)
sum a = (-6.439250660823871e-23,5.465191240530473e-23,-6.498659050183487e-23)
sum e = 7.859092236480489e-13
sum de = 2.271919407036514e-28
Info: cfl dt = 1.5630166363499218 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1255e+04 | 2592 | 1 | 8.293e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67850.44050630045 (tsim/hr) [sph::Model][rank=0]
---------------- t = 386.39328983333843, dt = 1.5630166363499218 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (2.1%)
patch tree reduce : 1.62 us (0.8%)
gen split merge : 821.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 193.78 us (92.0%)
LB move op cnt : 0
LB apply : 2.79 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.826989419855514e-21,4.84534416270051e-21,5.036640838224319e-21)
sum a = (-1.0651208678798974e-22,3.726798760268477e-23,-7.210626240195685e-23)
sum e = 7.858991064117949e-13
sum de = 1.0097419586828951e-28
Info: cfl dt = 1.5629900202298102 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1329e+04 | 2592 | 1 | 8.273e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68011.52778605056 (tsim/hr) [sph::Model][rank=0]
---------------- t = 387.95630646968834, dt = 1.5629900202298102 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (1.8%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 971.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 199.02 us (92.7%)
LB move op cnt : 0
LB apply : 2.81 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.988843631043049e-21,4.8900001365644125e-21,4.918375386881484e-21)
sum a = (-5.0707815211830724e-24,6.324641570963666e-23,-4.4727776258042e-23)
sum e = 7.858890055691997e-13
sum de = -3.281661365719409e-28
Info: cfl dt = 1.5629644884975473 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1342e+04 | 2592 | 1 | 8.270e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68037.3332864575 (tsim/hr) [sph::Model][rank=0]
---------------- t = 389.51929648991813, dt = 1.5629644884975473 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (2.0%)
patch tree reduce : 1.27 us (0.6%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 193.41 us (92.8%)
LB move op cnt : 0
LB apply : 2.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.989665226023696e-21,5.0091534730766116e-21,4.8698636112463534e-21)
sum a = (8.331486600627376e-23,2.508662847707927e-24,1.0188551228194563e-22)
sum e = 7.858789410236073e-13
sum de = 2.0194839173657902e-28
Info: cfl dt = 1.5629400527288801 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1280e+04 | 2592 | 1 | 8.286e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67902.79921604166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 391.08226097841566, dt = 0.2392906754411115 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (2.1%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 191.87 us (92.6%)
LB move op cnt : 0
LB apply : 2.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.879571498616946e-21,4.96229447732002e-21,5.008819546063005e-21)
sum a = (1.069742339646039e-22,7.166901791572279e-23,1.4809904101324696e-22)
sum e = 7.857203400709886e-13
sum de = -7.068193710780266e-28
Info: cfl dt = 1.562936844378245 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2450e+04 | 2592 | 1 | 7.988e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10784.694756356923 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 284 [SPH][rank=0]
Info: time since start : 98.85748821 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00031102800000000003 s
sph::RenderFieldGetter compute custom field took : 0.000233023 s
rho_t_ampl=-0.000853721, rho_t_phi=3.14159 rad
eps_t_ampl=-2.46249e-06, eps_t_phi=7.98706e-10 rad
vx_t_ampl=2.29878e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 402.50s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 391.3215516538568, dt = 1.562936844378245 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.93 us (3.7%)
patch tree reduce : 1.57 us (0.6%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 249.70 us (91.9%)
LB move op cnt : 0
LB apply : 2.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.6906046530680486e-21,5.082593954876999e-21,5.2458182271317194e-21)
sum a = (-2.3344851129801057e-22,-1.9740263619980317e-22,9.49584757009303e-23)
sum e = 7.858713580138811e-13
sum de = -9.592548607487504e-28
Info: cfl dt = 1.5629132419292984 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3854e+04 | 2592 | 1 | 5.910e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95196.57529833766 (tsim/hr) [sph::Model][rank=0]
---------------- t = 392.88448849823504, dt = 1.5629132419292984 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (1.8%)
patch tree reduce : 881.00 ns (0.4%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 601.00 ns (0.3%)
LB compute : 193.09 us (93.9%)
LB move op cnt : 0
LB apply : 1.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.313373648398765e-21,4.5637771842388076e-21,5.3527024125094724e-21)
sum a = (-7.843664580867992e-23,1.2410090887399137e-22,-6.91974024585937e-23)
sum e = 7.858593884775653e-13
sum de = 9.844984097158227e-28
Info: cfl dt = 1.5628912068653118 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3776e+04 | 2592 | 1 | 5.921e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95024.06641450271 (tsim/hr) [sph::Model][rank=0]
---------------- t = 394.44740174016437, dt = 1.5628912068653118 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (1.6%)
patch tree reduce : 1.11 us (0.6%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 183.49 us (93.5%)
LB move op cnt : 0
LB apply : 2.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.327340763069771e-21,5.008978964377109e-21,5.1162737028112725e-21)
sum a = (-6.316011413726763e-23,-1.6981070466894318e-22,-1.3429781468058955e-22)
sum e = 7.858495867119354e-13
sum de = 3.534096855390133e-28
Info: cfl dt = 1.562870296547704 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4175e+04 | 2592 | 1 | 5.868e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95889.38679890061 (tsim/hr) [sph::Model][rank=0]
---------------- t = 396.01029294702965, dt = 1.562870296547704 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (2.1%)
patch tree reduce : 1.22 us (0.6%)
gen split merge : 792.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.4%)
LB compute : 184.01 us (92.6%)
LB move op cnt : 0
LB apply : 2.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.4062138812119194e-21,4.513912627156528e-21,4.855511206443191e-21)
sum a = (6.598434688324302e-24,-7.550670491944254e-23,-9.07268281539577e-23)
sum e = 7.858398830694552e-13
sum de = 6.310887241768094e-28
Info: cfl dt = 1.5628505245064703 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.9757e+04 | 2592 | 1 | 6.520e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86298.55839585929 (tsim/hr) [sph::Model][rank=0]
---------------- t = 397.57316324357737, dt = 1.5628505245064703 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (1.9%)
patch tree reduce : 1.16 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 581.00 ns (0.3%)
LB compute : 195.12 us (93.8%)
LB move op cnt : 0
LB apply : 2.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.272293899366396e-21,4.469601057243253e-21,4.7477666357927735e-21)
sum a = (-5.640763039007194e-23,9.633632405221531e-24,-1.3200163388967698e-22)
sum e = 7.858303162995388e-13
sum de = 1.3126645462877636e-27
Info: cfl dt = 1.5628318994452886 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3448e+04 | 2592 | 1 | 5.966e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94308.99512766176 (tsim/hr) [sph::Model][rank=0]
---------------- t = 399.13601376808384, dt = 1.5628318994452886 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (1.6%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 440.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.4%)
LB compute : 205.87 us (94.1%)
LB move op cnt : 0
LB apply : 2.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.420180995882925e-21,4.551171638593348e-21,4.509217095674375e-21)
sum a = (5.0964563643283026e-24,-3.798131698499123e-23,7.460680230826062e-23)
sum e = 7.85820904924773e-13
sum de = -9.087677628146056e-28
Info: cfl dt = 1.5628144295668498 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5977e+04 | 2592 | 1 | 7.205e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78091.42015021485 (tsim/hr) [sph::Model][rank=0]
---------------- t = 400.69884566752916, dt = 1.5628144295668498 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (2.0%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 821.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 185.53 us (92.9%)
LB move op cnt : 0
LB apply : 2.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.397997931405446e-21,4.4545989254579555e-21,4.787260810258091e-21)
sum a = (1.7883811992810475e-22,5.267710576877673e-23,-7.481200544147332e-23)
sum e = 7.85811667390562e-13
sum de = -9.844984097158227e-28
Info: cfl dt = 1.5627981225156125 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4002e+04 | 2592 | 1 | 5.891e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95510.40893794608 (tsim/hr) [sph::Model][rank=0]
---------------- t = 402.261660097096, dt = 0.2405073182995352 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (2.0%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 951.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 188.30 us (92.6%)
LB move op cnt : 0
LB apply : 2.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.2345005302566166e-21,4.538141655697143e-21,4.6525110410531906e-21)
sum a = (3.478941246178766e-23,3.6506868912727127e-23,-4.3877859866176836e-23)
sum e = 7.85707514986552e-13
sum de = 1.1864468014524018e-27
Info: cfl dt = 1.5627962035448806 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4762e+04 | 2592 | 1 | 5.791e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14952.065838037386 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 292 [SPH][rank=0]
Info: time since start : 99.580331243 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00027719800000000004 s
sph::RenderFieldGetter compute custom field took : 0.000228747 s
rho_t_ampl=-0.000685668, rho_t_phi=3.14159 rad
eps_t_ampl=-1.62627e-06, eps_t_phi=1.29427e-09 rad
vx_t_ampl=2.58514e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 413.68s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 402.50216741539555, dt = 1.5627962035448806 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.69 us (3.9%)
patch tree reduce : 1.60 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 226.46 us (91.0%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.147411462307994e-21,4.593269555624195e-21,4.587658832432454e-21)
sum a = (2.4782000474855347e-22,-1.243744061289017e-22,-5.831038376229304e-23)
sum e = 7.858047922469214e-13
sum de = -6.563322731438818e-28
Info: cfl dt = 1.5627807530469804 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2872e+04 | 2592 | 1 | 7.885e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71350.38863260901 (tsim/hr) [sph::Model][rank=0]
---------------- t = 404.06496361894045, dt = 1.5627807530469804 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (1.9%)
patch tree reduce : 1.39 us (0.6%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 217.07 us (93.1%)
LB move op cnt : 0
LB apply : 2.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.611731534925899e-21,4.2731692510498785e-21,4.4852549402099654e-21)
sum a = (2.637319887878102e-22,-1.4431969741232653e-23,-9.109076786008964e-23)
sum e = 7.857941689511547e-13
sum de = -8.077935669463161e-28
Info: cfl dt = 1.5627669774366713 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3361e+04 | 2592 | 1 | 7.769e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72411.68379688989 (tsim/hr) [sph::Model][rank=0]
---------------- t = 405.62774437198743, dt = 1.5627669774366713 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (0.8%)
patch tree reduce : 1.49 us (0.3%)
gen split merge : 771.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.04 us (0.2%)
LB compute : 525.96 us (97.1%)
LB move op cnt : 0
LB apply : 2.63 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.246943363518461e-21,4.3365243335272804e-21,4.317287019575764e-21)
sum a = (4.947542274085965e-23,1.1158387123273319e-22,5.589402699093257e-24)
sum e = 7.857856091302759e-13
sum de = -2.3728936029048035e-27
Info: cfl dt = 1.562754381651913 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3720e+04 | 2592 | 1 | 5.929e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94893.83663935079 (tsim/hr) [sph::Model][rank=0]
---------------- t = 407.1905113494241, dt = 1.562754381651913 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (2.0%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.6%)
LB compute : 181.18 us (92.4%)
LB move op cnt : 0
LB apply : 2.63 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1877885249118494e-21,4.609375705664737e-21,4.401566172095677e-21)
sum a = (-1.7786247588858598e-22,-1.3207826316545543e-22,-9.972650532880544e-23)
sum e = 7.857772825569217e-13
sum de = 1.9689968194316455e-27
Info: cfl dt = 1.5627429744979993 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4537e+04 | 2592 | 1 | 5.820e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96666.93357770341 (tsim/hr) [sph::Model][rank=0]
---------------- t = 408.75326573107606, dt = 1.5627429744979993 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.7%)
patch tree reduce : 1.25 us (0.6%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.1%)
LB compute : 198.69 us (94.4%)
LB move op cnt : 0
LB apply : 2.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.7095013376229384e-21,4.2125661908221064e-21,4.1634278281581275e-21)
sum a = (-1.6271431843289986e-23,3.684244713602378e-23,-6.860565831038e-24)
sum e = 7.85769218696249e-13
sum de = 1.0097419586828951e-27
Info: cfl dt = 1.5627327606602865 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4780e+04 | 2592 | 1 | 5.788e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97193.5457037051 (tsim/hr) [sph::Model][rank=0]
---------------- t = 410.31600870557406, dt = 1.5627327606602865 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (1.9%)
patch tree reduce : 882.00 ns (0.4%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 186.07 us (93.2%)
LB move op cnt : 0
LB apply : 2.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.695534222951933e-21,4.4021396045403104e-21,4.225269394437607e-21)
sum a = (-5.673498464017364e-23,-1.4766439733995102e-22,8.074614697239092e-24)
sum e = 7.857614330620911e-13
sum de = -3.0292258760486853e-27
Info: cfl dt = 1.5627237443167608 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4369e+04 | 2592 | 1 | 5.842e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96300.31861631783 (tsim/hr) [sph::Model][rank=0]
---------------- t = 411.8787414662344, dt = 1.5627237443167608 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (2.0%)
patch tree reduce : 1.11 us (0.5%)
gen split merge : 670.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 194.88 us (92.7%)
LB move op cnt : 0
LB apply : 2.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.750581086655307e-21,4.027206660735113e-21,4.249557634500033e-21)
sum a = (-8.490028757049177e-23,-1.5888139531609182e-22,1.1384747425113642e-22)
sum e = 7.857539408173493e-13
sum de = -3.281661365719409e-28
Info: cfl dt = 1.5627159290782595 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4328e+04 | 2592 | 1 | 5.847e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96211.45785613448 (tsim/hr) [sph::Model][rank=0]
---------------- t = 413.44146521055114, dt = 0.24131796638317837 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.98 us (1.9%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 711.00 ns (0.3%)
LB compute : 195.03 us (93.9%)
LB move op cnt : 0
LB apply : 2.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.914078487804137e-21,3.980086904852828e-21,4.359677955028427e-21)
sum a = (-1.7767633327578306e-22,1.7226536008292568e-22,-2.2333648362916523e-23)
sum e = 7.85696707682997e-13
sum de = -3.7865323450608567e-28
Info: cfl dt = 1.5627153558003977 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5098e+04 | 2592 | 1 | 5.747e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15115.208590276497 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 300 [SPH][rank=0]
Info: time since start : 100.318205151 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000306031 s
sph::RenderFieldGetter compute custom field took : 0.000256057 s
rho_t_ampl=-0.000500178, rho_t_phi=3.14159 rad
eps_t_ampl=-9.857e-07, eps_t_phi=2.29398e-09 rad
vx_t_ampl=2.80559e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 424.86s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 413.6827831769343, dt = 1.5627153558003977 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.04 us (4.1%)
patch tree reduce : 1.52 us (0.6%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.4%)
LB compute : 222.35 us (90.8%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.107974903236919e-21,4.2892120163214065e-21,4.3083453439964356e-21)
sum a = (-2.3023915590485672e-23,7.622264190300593e-23,1.0853598685778576e-22)
sum e = 7.857484663678509e-13
sum de = -5.048709793414476e-28
Info: cfl dt = 1.5627083992694397 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4093e+04 | 2592 | 1 | 5.878e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95701.02501119176 (tsim/hr) [sph::Model][rank=0]
---------------- t = 415.2454985327347, dt = 1.5627083992694397 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (2.1%)
patch tree reduce : 1.13 us (0.6%)
gen split merge : 1.11 us (0.6%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.4%)
LB compute : 179.48 us (92.2%)
LB move op cnt : 0
LB apply : 2.58 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.970768541468806e-21,4.333324606200306e-21,4.580211436565934e-21)
sum a = (-2.668258073868105e-22,1.347105363419778e-22,-9.28866195105721e-23)
sum e = 7.857402325126087e-13
sum de = -1.464125840090198e-27
Info: cfl dt = 1.5627031840205456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4986e+04 | 2592 | 1 | 5.762e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97639.471183813 (tsim/hr) [sph::Model][rank=0]
---------------- t = 416.80820693200417, dt = 1.5627031840205456 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.56 us (1.8%)
patch tree reduce : 1.13 us (0.6%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 631.00 ns (0.3%)
LB compute : 182.91 us (94.0%)
LB move op cnt : 0
LB apply : 1.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.6822697947094404e-21,4.589593239021337e-21,4.2776748211162496e-21)
sum a = (3.0796974352704277e-23,9.390328164095857e-23,5.080268443341879e-23)
sum e = 7.857337655204347e-13
sum de = -8.077935669463161e-28
Info: cfl dt = 1.5626991749114092 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4168e+04 | 2592 | 1 | 5.868e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95863.41484022122 (tsim/hr) [sph::Model][rank=0]
---------------- t = 418.37091011602473, dt = 1.5626991749114092 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (1.7%)
patch tree reduce : 1.04 us (0.5%)
gen split merge : 751.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.4%)
LB compute : 199.96 us (93.4%)
LB move op cnt : 0
LB apply : 2.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.244359670024385e-21,4.704407928211416e-21,4.469336000555082e-21)
sum a = (-2.2361504637338716e-22,-8.971028389289208e-23,-3.998557415877855e-23)
sum e = 7.85727640975839e-13
sum de = 2.8272774843121063e-27
Info: cfl dt = 1.5626963758978767 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3989e+04 | 2592 | 1 | 5.892e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95473.39706309793 (tsim/hr) [sph::Model][rank=0]
---------------- t = 419.93360929093615, dt = 1.5626963758978767 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (2.0%)
patch tree reduce : 1.13 us (0.6%)
gen split merge : 932.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 184.85 us (92.5%)
LB move op cnt : 0
LB apply : 2.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.794828307058132e-21,4.420761889209086e-21,4.335913320332309e-21)
sum a = (-2.147058758019921e-23,-3.5093022496597816e-23,-1.808528579065955e-23)
sum e = 7.857218782103043e-13
sum de = -3.0292258760486853e-28
Info: cfl dt = 1.5626947876072486 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4793e+04 | 2592 | 1 | 5.787e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97219.61361558782 (tsim/hr) [sph::Model][rank=0]
---------------- t = 421.496305666834, dt = 1.5626947876072486 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (1.8%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 752.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 560.00 ns (0.3%)
LB compute : 207.23 us (94.1%)
LB move op cnt : 0
LB apply : 2.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.762786102812884e-21,4.408518198384204e-21,4.324763289126945e-21)
sum a = (2.2689179822979726e-22,4.692393505712432e-23,3.512429627204407e-23)
sum e = 7.857164882003279e-13
sum de = 3.0292258760486853e-28
Info: cfl dt = 1.562694410163022 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.2917e+04 | 2592 | 1 | 6.040e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93147.17516001634 (tsim/hr) [sph::Model][rank=0]
---------------- t = 423.0590004544413, dt = 1.562694410163022 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (1.7%)
patch tree reduce : 882.00 ns (0.4%)
gen split merge : 550.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.4%)
LB compute : 185.88 us (93.5%)
LB move op cnt : 0
LB apply : 2.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.328983953031066e-21,4.545968471162197e-21,4.4212269988421984e-21)
sum a = (-1.7932594194786414e-22,-2.249582618977781e-23,7.692710989004866e-23)
sum e = 7.857114813347771e-13
sum de = 1.464125840090198e-27
Info: cfl dt = 1.562695243123744 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4315e+04 | 2592 | 1 | 5.849e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96182.33842111156 (tsim/hr) [sph::Model][rank=0]
---------------- t = 424.6216948646043, dt = 0.24170407386878878 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (2.0%)
patch tree reduce : 781.00 ns (0.4%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 180.91 us (92.8%)
LB move op cnt : 0
LB apply : 2.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.6411900456770716e-21,4.486335438602005e-21,4.4724831062783996e-21)
sum a = (3.063329722765343e-23,-7.398241154622851e-24,2.1553996581042267e-23)
sum e = 7.856890290060038e-13
sum de = -3.0292258760486853e-28
Info: cfl dt = 1.5626960328808583 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4718e+04 | 2592 | 1 | 5.796e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15011.688084414454 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 308 [SPH][rank=0]
Info: time since start : 101.019370488 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00029908100000000003 s
sph::RenderFieldGetter compute custom field took : 0.00024144500000000002 s
rho_t_ampl=-0.000301971, rho_t_phi=3.14159 rad
eps_t_ampl=-5.56545e-07, eps_t_phi=4.24973e-09 rad
vx_t_ampl=2.95472e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 436.04s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 424.8633989384731, dt = 1.5626960328808583 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.79 us (3.9%)
patch tree reduce : 1.52 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 227.24 us (90.9%)
LB move op cnt : 0
LB apply : 3.56 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.5228803684638484e-21,4.476578998206818e-21,4.499473497693554e-21)
sum a = (1.092400388721705e-22,2.8437897554024133e-25,-5.96815998942482e-23)
sum e = 7.857079571574624e-13
sum de = -2.524354896707238e-28
Info: cfl dt = 1.5626977058547629 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3096e+04 | 2592 | 1 | 7.832e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71831.29521742482 (tsim/hr) [sph::Model][rank=0]
---------------- t = 426.42609497135396, dt = 1.5626977058547629 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (1.9%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 201.88 us (92.5%)
LB move op cnt : 0
LB apply : 2.95 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (58.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.272293899366396e-21,4.4830298025470565e-21,4.3427359262868366e-21)
sum a = (-9.548153230171999e-23,4.7915926750676966e-23,1.4428945973925515e-22)
sum e = 7.85702912886352e-13
sum de = -5.553580772755923e-28
Info: cfl dt = 1.5627011445358754 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3228e+04 | 2592 | 1 | 7.801e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72119.37792986711 (tsim/hr) [sph::Model][rank=0]
---------------- t = 427.9887926772087, dt = 1.5627011445358754 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (1.9%)
patch tree reduce : 1.37 us (0.6%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 204.43 us (93.1%)
LB move op cnt : 0
LB apply : 2.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (57.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.532739508231617e-21,4.595130981752224e-21,4.7275897836409756e-21)
sum a = (-3.40788611777434e-22,1.6739491254292464e-22,1.4881046983575318e-22)
sum e = 7.856991770570539e-13
sum de = 4.543838814073028e-28
Info: cfl dt = 1.5627057867538598 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4368e+04 | 2592 | 1 | 7.542e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74593.1466980658 (tsim/hr) [sph::Model][rank=0]
---------------- t = 429.5514938217446, dt = 1.5627057867538598 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (1.0%)
patch tree reduce : 1.39 us (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 400.87 us (96.1%)
LB move op cnt : 0
LB apply : 2.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.348583324014469e-21,4.950106549045094e-21,4.963669259809335e-21)
sum a = (-1.3998245418319118e-22,-2.1960518246744253e-22,-8.717575202657046e-24)
sum e = 7.856958562158037e-13
sum de = -2.524354896707238e-28
Info: cfl dt = 1.5627116315872218 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3246e+04 | 2592 | 1 | 7.796e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72158.64068296229 (tsim/hr) [sph::Model][rank=0]
---------------- t = 431.11419960849844, dt = 1.5627116315872218 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.72 us (2.2%)
patch tree reduce : 1.25 us (0.6%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 198.37 us (92.6%)
LB move op cnt : 0
LB apply : 2.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.348583324014469e-21,4.304506199447481e-21,4.826961209862146e-21)
sum a = (4.3251840762455715e-22,5.898807749161269e-23,-1.2592268604716541e-22)
sum e = 7.856929597160655e-13
sum de = 7.068193710780266e-28
Info: cfl dt = 1.562718675642656 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7039e+04 | 2592 | 1 | 6.998e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80389.77564693142 (tsim/hr) [sph::Model][rank=0]
---------------- t = 432.67691124008564, dt = 1.562718675642656 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (2.0%)
patch tree reduce : 1.12 us (0.5%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 202.32 us (93.0%)
LB move op cnt : 0
LB apply : 2.76 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (61.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.2854394190567545e-21,4.614346997168732e-21,4.538600581689892e-21)
sum a = (1.3243405029849333e-22,2.597722459867946e-23,5.926101738238144e-23)
sum e = 7.856904929230953e-13
sum de = 1.8175355256292112e-27
Info: cfl dt = 1.5627269150354837 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4289e+04 | 2592 | 1 | 5.853e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96125.73407680148 (tsim/hr) [sph::Model][rank=0]
---------------- t = 434.2396299157283, dt = 1.5627269150354837 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 us (1.8%)
patch tree reduce : 1.22 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 641.00 ns (0.3%)
LB compute : 194.08 us (93.9%)
LB move op cnt : 0
LB apply : 2.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (59.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.262434759598627e-21,4.6291822424735866e-21,4.7759043844523466e-21)
sum a = (-4.0693021707494155e-23,2.9995525599075636e-23,2.0725336084802937e-22)
sum e = 7.856884604395352e-13
sum de = -1.868022623563356e-27
Info: cfl dt = 1.5627363453283036 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4555e+04 | 2592 | 1 | 5.817e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96705.47274748572 (tsim/hr) [sph::Model][rank=0]
---------------- t = 435.8023568307638, dt = 0.24165786924805843 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.59 us (1.8%)
patch tree reduce : 861.00 ns (0.4%)
gen split merge : 431.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.4%)
LB compute : 192.53 us (94.0%)
LB move op cnt : 0
LB apply : 2.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (58.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.336378307856892e-21,4.639580553947405e-21,4.941624599205945e-21)
sum a = (-4.612646038810361e-23,1.3082310432966417e-23,-2.556949531230414e-23)
sum e = 7.856852664486979e-13
sum de = -7.068193710780266e-28
Info: cfl dt = 1.5627384758203569 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5420e+04 | 2592 | 1 | 5.707e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15244.436783470235 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 316 [SPH][rank=0]
Info: time since start : 101.80581227500001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00028850500000000004 s
sph::RenderFieldGetter compute custom field took : 0.000251831 s
rho_t_ampl=-9.60818e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-3.49205e-07, eps_t_phi=7.26599e-09 rad
vx_t_ampl=3.0289e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 447.22s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 436.04401470001187, dt = 1.5627384758203569 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.00 us (4.0%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 226.06 us (90.7%)
LB move op cnt : 0
LB apply : 3.79 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.5532793827478015e-21,4.6579300434077615e-21,4.873534427408083e-21)
sum a = (2.630307446344061e-22,-1.607363024409787e-23,-6.686173438443151e-23)
sum e = 7.856872374274019e-13
sum de = -6.563322731438818e-28
Info: cfl dt = 1.5627487072590651 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4298e+04 | 2592 | 1 | 5.851e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96147.92785328688 (tsim/hr) [sph::Model][rank=0]
---------------- t = 437.60675317583224, dt = 1.5627487072590651 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (1.9%)
patch tree reduce : 1.12 us (0.6%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 611.00 ns (0.3%)
LB compute : 179.39 us (93.8%)
LB move op cnt : 0
LB apply : 2.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.8960033982298944e-21,4.610007948677189e-21,4.736781853058751e-21)
sum a = (1.866533014798585e-22,7.778060843475906e-24,1.1199401759409671e-23)
sum e = 7.856858612797877e-13
sum de = 1.7165613297609217e-27
Info: cfl dt = 1.5627606868004362 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4837e+04 | 2592 | 1 | 5.781e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97317.45560340642 (tsim/hr) [sph::Model][rank=0]
---------------- t = 439.1695018830913, dt = 1.5627606868004362 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (1.8%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.4%)
LB compute : 181.95 us (92.9%)
LB move op cnt : 0
LB apply : 2.60 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.705393362719701e-21,4.640877133526239e-21,4.815278807641495e-21)
sum a = (-2.173218013244806e-22,1.2384142747583708e-22,-2.790399473486136e-23)
sum e = 7.856852197566267e-13
sum de = 2.5748419946413825e-27
Info: cfl dt = 1.5627656103532508 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3832e+04 | 2592 | 1 | 5.913e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95138.10992433528 (tsim/hr) [sph::Model][rank=0]
---------------- t = 440.73226256989176, dt = 1.5627656103532508 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (1.9%)
patch tree reduce : 1.08 us (0.5%)
gen split merge : 751.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 199.56 us (93.1%)
LB move op cnt : 0
LB apply : 2.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.290368988940639e-21,4.925057530201529e-21,4.7411167788975865e-21)
sum a = (-1.907692997715783e-22,3.517733075839063e-23,3.604664358073471e-23)
sum e = 7.856850220411302e-13
sum de = -2.069971015299935e-27
Info: cfl dt = 1.562751852772155 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4399e+04 | 2592 | 1 | 5.838e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96367.29959837857 (tsim/hr) [sph::Model][rank=0]
---------------- t = 442.295028180245, dt = 1.562751852772155 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (1.8%)
patch tree reduce : 1.26 us (0.6%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 530.00 ns (0.3%)
LB compute : 191.66 us (93.4%)
LB move op cnt : 0
LB apply : 3.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.6666594900771405e-21,4.9107967595120495e-21,4.8474186670997086e-21)
sum a = (-3.1030856126980365e-22,8.601331960123543e-23,-1.1040735252932433e-23)
sum e = 7.856852686381376e-13
sum de = -4.4428646182047385e-27
Info: cfl dt = 1.5627390098289629 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4613e+04 | 2592 | 1 | 5.810e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96832.00342851835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 443.8577800330172, dt = 1.5627390098289629 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.93 us (1.8%)
patch tree reduce : 981.00 ns (0.4%)
gen split merge : 521.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 207.92 us (93.9%)
LB move op cnt : 0
LB apply : 1.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.236846406646425e-21,5.0848866381359834e-21,4.793371935165096e-21)
sum a = (-2.1771464648307385e-23,-1.1027672334688174e-22,-4.653611659877051e-23)
sum e = 7.856859587236424e-13
sum de = -2.524354896707238e-28
Info: cfl dt = 1.5627273756200406 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3260e+04 | 2592 | 1 | 5.992e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93893.86874657148 (tsim/hr) [sph::Model][rank=0]
---------------- t = 445.4205190428462, dt = 1.5627273756200406 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (1.7%)
patch tree reduce : 992.00 ns (0.4%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 207.69 us (93.8%)
LB move op cnt : 0
LB apply : 2.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.967363252994083e-21,4.7591932294502484e-21,4.6929136632522366e-21)
sum a = (2.408380520907473e-22,-1.665111112284459e-22,-1.0296319554250577e-22)
sum e = 7.856870906085771e-13
sum de = -2.6253290925755273e-27
Info: cfl dt = 1.5627169555039846 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3973e+04 | 2592 | 1 | 5.895e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95441.36169513915 (tsim/hr) [sph::Model][rank=0]
---------------- t = 446.98324641846625, dt = 0.24138404308439476 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (2.0%)
patch tree reduce : 911.00 ns (0.5%)
gen split merge : 872.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 179.53 us (92.6%)
LB move op cnt : 0
LB apply : 2.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (60.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.676518629844909e-21,4.675050349752541e-21,4.62396992032806e-21)
sum a = (-1.7098161792566416e-22,-1.2315688199971296e-22,2.909126745778594e-23)
sum e = 7.85685804029272e-13
sum de = -1.3631516442219084e-27
Info: cfl dt = 1.562716037155117 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5290e+04 | 2592 | 1 | 5.723e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15183.709539342533 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 324 [SPH][rank=0]
Info: time since start : 102.50854554200001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000286512 s
sph::RenderFieldGetter compute custom field took : 0.000246123 s
rho_t_ampl=0.000112273, rho_t_phi=3.14159 rad
eps_t_ampl=-3.68453e-07, eps_t_phi=7.1871e-09 rad
vx_t_ampl=3.0264e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 458.41s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 447.22463046155065, dt = 1.562716037155117 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.74 us (3.9%)
patch tree reduce : 1.53 us (0.6%)
gen split merge : 621.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.4%)
LB compute : 225.64 us (90.9%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.9887247224909146e-21,4.4878518590252704e-21,4.685369230618561e-21)
sum a = (1.7302597731110315e-22,4.499770439641517e-23,4.5323347518162666e-23)
sum e = 7.856882859158832e-13
sum de = 2.524354896707238e-28
Info: cfl dt = 1.5627064428903392 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4281e+04 | 2592 | 1 | 5.853e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96109.74926303273 (tsim/hr) [sph::Model][rank=0]
---------------- t = 448.78734649870574, dt = 1.5627064428903392 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (1.9%)
patch tree reduce : 1.26 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.4%)
LB compute : 194.69 us (93.0%)
LB move op cnt : 0
LB apply : 2.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.4957677341024845e-21,4.689591939038921e-21,4.7688793837117385e-21)
sum a = (2.6057558775864343e-22,1.1266641125310575e-22,9.586918712795318e-23)
sum e = 7.85690687700606e-13
sum de = -1.1612032524853294e-27
Info: cfl dt = 1.5626986538150702 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4751e+04 | 2592 | 1 | 5.792e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97129.58267240369 (tsim/hr) [sph::Model][rank=0]
---------------- t = 450.35005294159606, dt = 1.5626986538150702 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (1.7%)
patch tree reduce : 1.17 us (0.6%)
gen split merge : 531.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 551.00 ns (0.3%)
LB compute : 180.93 us (94.1%)
LB move op cnt : 0
LB apply : 2.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.0553928244754865e-21,4.918510445199495e-21,4.9581881879884266e-21)
sum a = (1.764503595155983e-23,-4.26409006299605e-23,1.6155619751629019e-22)
sum e = 7.856931922929284e-13
sum de = 5.048709793414476e-29
Info: cfl dt = 1.562692091686431 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3605e+04 | 2592 | 1 | 5.944e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94640.78510632996 (tsim/hr) [sph::Model][rank=0]
---------------- t = 451.9127515954111, dt = 1.562692091686431 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (1.6%)
patch tree reduce : 871.00 ns (0.4%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 214.13 us (93.9%)
LB move op cnt : 0
LB apply : 2.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (60.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.153984222153173e-21,4.730506406268543e-21,5.2619752815636245e-21)
sum a = (2.1296961453429587e-22,1.1827535998971024e-22,9.935005523425956e-23)
sum e = 7.856961226741574e-13
sum de = -1.6155871338926322e-27
Info: cfl dt = 1.562686759318665 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3727e+04 | 2592 | 1 | 5.928e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94905.98891265111 (tsim/hr) [sph::Model][rank=0]
---------------- t = 453.47544368709754, dt = 1.562686759318665 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (2.1%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 185.91 us (92.3%)
LB move op cnt : 0
LB apply : 3.01 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.6569192588615056e-21,5.041111030573365e-21,5.3686237741166e-21)
sum a = (-8.5676951575635e-23,9.02851753483714e-23,1.2219308357700948e-22)
sum e = 7.856994724709843e-13
sum de = 3.534096855390133e-28
Info: cfl dt = 1.5626826587841054 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4300e+04 | 2592 | 1 | 5.851e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96147.98802115649 (tsim/hr) [sph::Model][rank=0]
---------------- t = 455.0381304464162, dt = 1.5626826587841054 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (1.9%)
patch tree reduce : 1.10 us (0.6%)
gen split merge : 751.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 701.00 ns (0.4%)
LB compute : 180.04 us (93.3%)
LB move op cnt : 0
LB apply : 2.54 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.064430369262608e-21,5.16028723374274e-21,5.577421035813344e-21)
sum a = (2.3253063565556855e-22,-5.519371051742826e-23,-8.229952364382566e-24)
sum e = 7.857032348333333e-13
sum de = -1.8175355256292112e-27
Info: cfl dt = 1.562679791596294 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3763e+04 | 2592 | 1 | 5.923e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94982.58757540616 (tsim/hr) [sph::Model][rank=0]
---------------- t = 456.6008131052003, dt = 1.562679791596294 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.6%)
patch tree reduce : 981.00 ns (0.4%)
gen split merge : 551.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.3%)
LB compute : 211.28 us (94.3%)
LB move op cnt : 0
LB apply : 2.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.557506266203172e-21,4.960349206782345e-21,5.462655347281745e-21)
sum a = (2.4123440748180176e-22,-9.574866099202203e-23,-9.441892653618375e-23)
sum e = 7.85707402045792e-13
sum de = 9.592548607487504e-28
Info: cfl dt = 1.5626781586401026 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3734e+04 | 2592 | 1 | 5.927e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94920.0764474546 (tsim/hr) [sph::Model][rank=0]
---------------- t = 458.1634928967966, dt = 0.2417533262928373 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (1.9%)
patch tree reduce : 1.13 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.6%)
LB compute : 180.36 us (92.7%)
LB move op cnt : 0
LB apply : 2.50 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.472881983196491e-21,4.905522183923401e-21,5.372486373628102e-21)
sum a = (-1.429928295419695e-22,3.817780224701037e-23,1.6556694692552598e-22)
sum e = 7.856905895769505e-13
sum de = -2.524354896707238e-28
Info: cfl dt = 1.5626785827923357 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5155e+04 | 2592 | 1 | 5.740e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15161.718674047015 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 332 [SPH][rank=0]
Info: time since start : 103.209874881 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000277989 s
sph::RenderFieldGetter compute custom field took : 0.00025118 s
rho_t_ampl=0.000317825, rho_t_phi=3.14159 rad
eps_t_ampl=-6.13327e-07, eps_t_phi=4.52723e-09 rad
vx_t_ampl=2.94745e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 469.59s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 458.4052462230894, dt = 1.5626785827923357 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.02 us (3.9%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 231.38 us (90.9%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.540252771609577e-21,4.981389740739862e-21,5.662640520455817e-21)
sum a = (-1.3220297671018625e-22,-4.521054044660431e-24,1.0277694973858806e-22)
sum e = 7.857108905799925e-13
sum de = -1.3126645462877636e-27
Info: cfl dt = 1.5626778119494418 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3734e+04 | 2592 | 1 | 5.927e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94919.08854026787 (tsim/hr) [sph::Model][rank=0]
---------------- t = 459.96792480588175, dt = 1.5626778119494418 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.89 us (2.0%)
patch tree reduce : 1.13 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.5%)
LB compute : 176.44 us (92.6%)
LB move op cnt : 0
LB apply : 2.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.7793369109779654e-21,4.940937420686854e-21,5.7741874874834784e-21)
sum a = (-1.1418886488841374e-23,-1.5275230378092726e-22,-4.967801105087239e-24)
sum e = 7.857167999324465e-13
sum de = -8.077935669463161e-28
Info: cfl dt = 1.5626788374878224 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4187e+04 | 2592 | 1 | 5.866e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95903.36241919808 (tsim/hr) [sph::Model][rank=0]
---------------- t = 461.53060261783116, dt = 1.5626788374878224 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (1.9%)
patch tree reduce : 1.30 us (0.7%)
gen split merge : 741.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 182.77 us (93.0%)
LB move op cnt : 0
LB apply : 2.46 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.7234684522939434e-21,4.586383883628183e-21,5.68223924407934e-21)
sum a = (6.814103370744239e-23,-3.638669359710692e-24,7.228607752834037e-23)
sum e = 7.857221863240464e-13
sum de = 8.330371159133885e-28
Info: cfl dt = 1.5626810969514044 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4198e+04 | 2592 | 1 | 5.865e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95926.58465935441 (tsim/hr) [sph::Model][rank=0]
---------------- t = 463.09328145531896, dt = 1.5626810969514044 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (1.6%)
patch tree reduce : 892.00 ns (0.4%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 500.00 ns (0.2%)
LB compute : 200.94 us (94.6%)
LB move op cnt : 0
LB apply : 2.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.64623852411309e-21,4.697174041155247e-21,5.855560831632729e-21)
sum a = (1.020575015022922e-24,-5.775980954378359e-23,7.712574277046281e-23)
sum e = 7.857279360150993e-13
sum de = -3.281661365719409e-28
Info: cfl dt = 1.5626845876606437 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3319e+04 | 2592 | 1 | 5.983e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94020.20959623101 (tsim/hr) [sph::Model][rank=0]
---------------- t = 464.65596255227035, dt = 1.5626845876606437 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.56 us (1.8%)
patch tree reduce : 1.41 us (0.7%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.5%)
LB compute : 182.21 us (92.7%)
LB move op cnt : 0
LB apply : 2.67 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.5977644202548936e-21,4.5646453148726554e-21,5.97986546786698e-21)
sum a = (6.181218487214302e-24,1.900683690317868e-22,-1.2905123075088805e-22)
sum e = 7.857340385017367e-13
sum de = -5.301145283085199e-28
Info: cfl dt = 1.5626893071997807 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.0595e+04 | 2592 | 1 | 6.385e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88107.42447796397 (tsim/hr) [sph::Model][rank=0]
---------------- t = 466.218647139931, dt = 1.5626893071997807 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 us (2.0%)
patch tree reduce : 1.30 us (0.7%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 180.63 us (92.2%)
LB move op cnt : 0
LB apply : 2.89 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (57.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.569830190912883e-21,5.055350940452789e-21,5.6171037000654904e-21)
sum a = (-6.760186200139255e-23,7.156157972931916e-23,-1.558318367796127e-22)
sum e = 7.857404816193228e-13
sum de = -1.4136387421560532e-27
Info: cfl dt = 1.5626952525951932 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.2770e+04 | 2592 | 1 | 6.060e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92827.75871995403 (tsim/hr) [sph::Model][rank=0]
---------------- t = 467.7813364471308, dt = 1.5626952525951932 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (2.2%)
patch tree reduce : 1.16 us (0.5%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 641.00 ns (0.3%)
LB compute : 214.74 us (93.6%)
LB move op cnt : 0
LB apply : 2.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.744008326810128e-21,5.074558932480814e-21,5.352661145186574e-21)
sum a = (-7.559315693034562e-23,1.078392806085039e-22,6.339728403825826e-23)
sum e = 7.857472524187375e-13
sum de = 2.524354896707238e-29
Info: cfl dt = 1.5627024202515978 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4129e+04 | 2592 | 1 | 5.874e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95778.50721914048 (tsim/hr) [sph::Model][rank=0]
---------------- t = 469.344031699726, dt = 0.24183028490210745 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.7%)
patch tree reduce : 882.00 ns (0.4%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 691.00 ns (0.3%)
LB compute : 199.46 us (94.2%)
LB move op cnt : 0
LB apply : 2.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (61.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.7620834163843705e-21,5.128960715750165e-21,5.539286681612993e-21)
sum a = (-1.974074502328929e-22,4.891718295061844e-23,-1.2463694636643229e-23)
sum e = 7.856991445176569e-13
sum de = -9.592548607487504e-28
Info: cfl dt = 1.562704174012698 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4870e+04 | 2592 | 1 | 5.777e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15070.661201268826 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 340 [SPH][rank=0]
Info: time since start : 104.074673535 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000302175 s
sph::RenderFieldGetter compute custom field took : 0.000245252 s
rho_t_ampl=0.000515387, rho_t_phi=3.14159 rad
eps_t_ampl=-1.07717e-06, eps_t_phi=2.6913e-09 rad
vx_t_ampl=2.7942e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 480.77s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 469.5858619846281, dt = 1.562704174012698 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.49 us (3.8%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 227.08 us (90.9%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.203279920992016e-21,5.198292420308468e-21,5.51063687293752e-21)
sum a = (1.5770772401957984e-22,-1.3143669296389276e-22,1.7186078109851604e-22)
sum e = 7.857526798622172e-13
sum de = -5.301145283085199e-28
Info: cfl dt = 1.5627122174518542 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3940e+04 | 2592 | 1 | 5.899e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95368.83058178154 (tsim/hr) [sph::Model][rank=0]
---------------- t = 471.1485661586408, dt = 1.5627122174518542 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (1.7%)
patch tree reduce : 1.13 us (0.6%)
gen split merge : 531.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 501.00 ns (0.2%)
LB compute : 191.81 us (94.2%)
LB move op cnt : 0
LB apply : 2.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.635557789364673e-21,4.8519885312878986e-21,5.923228129063374e-21)
sum a = (-2.051869277058978e-22,2.888326581947345e-22,-9.114333357399044e-24)
sum e = 7.857614773614461e-13
sum de = 7.573064690121713e-28
Info: cfl dt = 1.5627220017229786 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4326e+04 | 2592 | 1 | 5.848e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96207.385152219 (tsim/hr) [sph::Model][rank=0]
---------------- t = 472.71127837609265, dt = 1.5627220017229786 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 us (1.8%)
patch tree reduce : 1.09 us (0.6%)
gen split merge : 681.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.5%)
LB compute : 179.49 us (92.9%)
LB move op cnt : 0
LB apply : 2.37 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.294476963843875e-21,5.63172709889777e-21,5.767578948587419e-21)
sum a = (-1.7023062876366614e-22,9.534335450819131e-23,1.4178366047773653e-22)
sum e = 7.857691947831413e-13
sum de = 6.310887241768094e-28
Info: cfl dt = 1.5627329948557838 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4550e+04 | 2592 | 1 | 5.818e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96693.49894515456 (tsim/hr) [sph::Model][rank=0]
---------------- t = 474.27400037781564, dt = 1.5627329948557838 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.04 us (2.0%)
patch tree reduce : 1.08 us (0.5%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.6%)
LB compute : 190.03 us (92.8%)
LB move op cnt : 0
LB apply : 2.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (56.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.4908381642186e-21,5.62958004013975e-21,6.107054760438143e-21)
sum a = (6.582387911358533e-23,-3.749462325423725e-23,2.695988207011082e-23)
sum e = 7.857771750163058e-13
sum de = 1.4893693890572703e-27
Info: cfl dt = 1.5627451887728878 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4129e+04 | 2592 | 1 | 5.874e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95779.70998143277 (tsim/hr) [sph::Model][rank=0]
---------------- t = 475.8367333726714, dt = 1.5627451887728878 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.9%)
patch tree reduce : 1.42 us (0.7%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 180.36 us (93.3%)
LB move op cnt : 0
LB apply : 2.79 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.201636731030721e-21,5.467202704023132e-21,6.0594667328773175e-21)
sum a = (2.1000096079562857e-22,1.1591955993034997e-22,1.5652930633589954e-22)
sum e = 7.857854065067084e-13
sum de = 0
Info: cfl dt = 1.5627585766588987 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4401e+04 | 2592 | 1 | 5.838e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96371.54392132882 (tsim/hr) [sph::Model][rank=0]
---------------- t = 477.3994785614443, dt = 1.5627585766588987 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.70 us (1.8%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.4%)
LB compute : 197.69 us (93.8%)
LB move op cnt : 0
LB apply : 2.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (62.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.695534222951933e-21,5.768257891355624e-21,6.405326246043768e-21)
sum a = (-7.65752196806507e-23,-4.9950908800826596e-23,-5.582512317138992e-23)
sum e = 7.857938730029499e-13
sum de = 8.582806648804608e-28
Info: cfl dt = 1.5627731511575274 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4267e+04 | 2592 | 1 | 5.855e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96081.23079574211 (tsim/hr) [sph::Model][rank=0]
---------------- t = 478.9622371381032, dt = 1.5627731511575274 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (2.0%)
patch tree reduce : 971.00 ns (0.5%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.6%)
LB compute : 178.37 us (93.0%)
LB move op cnt : 0
LB apply : 2.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (60.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.0553928244754865e-21,5.560530758856045e-21,6.15215488938976e-21)
sum a = (-2.544376955692367e-23,-2.5179714827334135e-22,-2.2402275363199796e-22)
sum e = 7.858025576298615e-13
sum de = -9.34011311781678e-28
Info: cfl dt = 1.562788904315678 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4536e+04 | 2592 | 1 | 5.820e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96666.59806686331 (tsim/hr) [sph::Model][rank=0]
---------------- t = 480.5250102892607, dt = 0.24146745690615035 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.9%)
patch tree reduce : 1.22 us (0.7%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.5%)
LB compute : 174.42 us (92.8%)
LB move op cnt : 0
LB apply : 2.52 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.075932698991671e-21,5.342012168846986e-21,5.966633314295468e-21)
sum a = (9.949001718776914e-23,-3.163240466386684e-22,-3.271994800094684e-24)
sum e = 7.857106062226451e-13
sum de = -1.1864468014524018e-27
Info: cfl dt = 1.5627919337534242 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5450e+04 | 2592 | 1 | 5.703e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15242.744931172489 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 348 [SPH][rank=0]
Info: time since start : 104.77529741500001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000282677 s
sph::RenderFieldGetter compute custom field took : 0.00025298300000000003 s
rho_t_ampl=0.000699983, rho_t_phi=3.14159 rad
eps_t_ampl=-1.74779e-06, eps_t_phi=1.71003e-09 rad
vx_t_ampl=2.57067e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 491.95s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 480.76647774616686, dt = 1.5627919337534242 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.05 us (3.9%)
patch tree reduce : 1.55 us (0.6%)
gen split merge : 832.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.4%)
LB compute : 232.73 us (91.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.8976465881911886e-21,4.83986519129026e-21,5.9881719293870295e-21)
sum a = (1.6060898129499094e-22,1.7715621711738008e-22,4.2324203073505065e-23)
sum e = 7.858093752144114e-13
sum de = -8.330371159133885e-28
Info: cfl dt = 1.5628085534166043 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4075e+04 | 2592 | 1 | 5.881e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95665.96403173135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 482.3292696799203, dt = 1.5628085534166043 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (2.1%)
patch tree reduce : 1.12 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 177.74 us (92.4%)
LB move op cnt : 0
LB apply : 2.39 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.556684671222525e-21,5.5023515642889525e-21,6.089945241089892e-21)
sum a = (6.785861043284486e-23,-3.571287940307867e-23,-3.641331327406672e-23)
sum e = 7.858201558154532e-13
sum de = -1.0602290566170399e-27
Info: cfl dt = 1.5628268133717491 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4200e+04 | 2592 | 1 | 5.864e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95939.0690846731 (tsim/hr) [sph::Model][rank=0]
---------------- t = 483.8920782333369, dt = 1.5628268133717491 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (1.5%)
patch tree reduce : 771.00 ns (0.4%)
gen split merge : 440.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 571.00 ns (0.3%)
LB compute : 200.61 us (94.8%)
LB move op cnt : 0
LB apply : 2.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.522177682035334e-21,5.2802031933302365e-21,5.971511706730379e-21)
sum a = (-6.785861043284486e-23,-1.0152472343393966e-22,6.52696340595644e-23)
sum e = 7.858294230719563e-13
sum de = 7.825500179792437e-28
Info: cfl dt = 1.5628462259413345 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3577e+04 | 2592 | 1 | 5.948e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94587.65486478579 (tsim/hr) [sph::Model][rank=0]
---------------- t = 485.4549050467087, dt = 1.5628462259413345 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.93 us (1.9%)
patch tree reduce : 671.00 ns (0.3%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.4%)
LB compute : 198.38 us (93.8%)
LB move op cnt : 0
LB apply : 2.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.7045717677390535e-21,5.0701236033274754e-21,6.15297452626615e-21)
sum a = (2.8822578914836033e-22,9.314246382806903e-23,-1.0202842751138584e-22)
sum e = 7.85838824796426e-13
sum de = 9.087677628146056e-28
Info: cfl dt = 1.5628667779009724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4299e+04 | 2592 | 1 | 5.851e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96156.76259023836 (tsim/hr) [sph::Model][rank=0]
---------------- t = 487.01775127265, dt = 1.5628667779009724 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (1.9%)
patch tree reduce : 882.00 ns (0.4%)
gen split merge : 851.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 184.02 us (92.7%)
LB move op cnt : 0
LB apply : 2.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.964314690175761e-21,5.367823409596426e-21,5.862787114440905e-21)
sum a = (-8.405943645748546e-23,-4.910830257158966e-23,-1.6269634365121897e-23)
sum e = 7.858483515491231e-13
sum de = 9.087677628146056e-28
Info: cfl dt = 1.5628884582499372 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4258e+04 | 2592 | 1 | 5.857e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96067.6898250918 (tsim/hr) [sph::Model][rank=0]
---------------- t = 488.580618050551, dt = 1.5628884582499372 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (1.7%)
patch tree reduce : 1.15 us (0.5%)
gen split merge : 821.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 701.00 ns (0.3%)
LB compute : 205.38 us (93.9%)
LB move op cnt : 0
LB apply : 2.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.4145487395705275e-21,5.179872325029461e-21,5.904374275032242e-21)
sum a = (2.6059965792409205e-23,-1.8747594953024427e-22,1.285152397408472e-22)
sum e = 7.858579846193753e-13
sum de = 3.534096855390133e-28
Info: cfl dt = 1.5629112554788034 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3441e+04 | 2592 | 1 | 5.967e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94295.68832075033 (tsim/hr) [sph::Model][rank=0]
---------------- t = 490.1435065088009, dt = 1.5629112554788034 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (1.8%)
patch tree reduce : 891.00 ns (0.5%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 611.00 ns (0.3%)
LB compute : 180.65 us (93.7%)
LB move op cnt : 0
LB apply : 1.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.266661643053998e-21,4.778802390902419e-21,6.218373494059154e-21)
sum a = (-2.173632220675235e-22,4.442414808292559e-23,1.2200131569261978e-23)
sum e = 7.858677048975176e-13
sum de = -1.0097419586828951e-28
Info: cfl dt = 1.5629351575229509 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4086e+04 | 2592 | 1 | 5.879e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95697.04392693541 (tsim/hr) [sph::Model][rank=0]
---------------- t = 491.7064177642797, dt = 0.2406757434259248 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (2.0%)
patch tree reduce : 1.12 us (0.5%)
gen split merge : 731.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.5%)
LB compute : 190.57 us (93.2%)
LB move op cnt : 0
LB apply : 2.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.5353232017256924e-21,4.9706785171152106e-21,6.130414673922212e-21)
sum a = (2.4686361684139363e-22,-8.763044608650532e-24,3.756159747471309e-23)
sum e = 7.857238184231977e-13
sum de = 1.5146129380243427e-27
Info: cfl dt = 1.56293936898614 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5731e+04 | 2592 | 1 | 5.668e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15286.459032252775 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 356 [SPH][rank=0]
Info: time since start : 105.47740588200001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000296016 s
sph::RenderFieldGetter compute custom field took : 0.00023240200000000002 s
rho_t_ampl=0.000866978, rho_t_phi=3.14159 rad
eps_t_ampl=-2.60783e-06, eps_t_phi=1.18721e-09 rad
vx_t_ampl=2.28266e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 503.13s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 491.94709350770563, dt = 1.56293936898614 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.85 us (3.4%)
patch tree reduce : 1.42 us (0.5%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 267.86 us (92.3%)
LB move op cnt : 0
LB apply : 3.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.0933051021374002e-21,4.950571905577102e-21,6.1921731182079964e-21)
sum a = (1.9949353123844288e-22,4.662077633791633e-23,-9.468275352644257e-23)
sum e = 7.858752261066923e-13
sum de = -1.2369338993865465e-27
Info: cfl dt = 1.562964105794247 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3077e+04 | 2592 | 1 | 7.836e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71800.89885724853 (tsim/hr) [sph::Model][rank=0]
---------------- t = 493.51003287669175, dt = 1.562964105794247 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (1.9%)
patch tree reduce : 1.11 us (0.5%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.4%)
LB compute : 204.93 us (92.9%)
LB move op cnt : 0
LB apply : 2.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.922413346162744e-21,5.0666719416021386e-21,5.940842421755754e-21)
sum a = (-4.311576409378599e-22,1.5743926645556034e-22,-1.3923965867997648e-22)
sum e = 7.858868902785248e-13
sum de = -8.835242138475332e-28
Info: cfl dt = 1.5629903403884946 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2970e+04 | 2592 | 1 | 7.862e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71569.67758205153 (tsim/hr) [sph::Model][rank=0]
---------------- t = 495.072996982486, dt = 1.5629903403884946 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (2.0%)
patch tree reduce : 1.35 us (0.6%)
gen split merge : 751.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 199.06 us (92.7%)
LB move op cnt : 0
LB apply : 2.80 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.936261552281616e-21,5.399387419888094e-21,5.688391758529033e-21)
sum a = (-9.526650549037868e-23,-1.8068462756817362e-22,1.7886107951197767e-22)
sum e = 7.858967743828937e-13
sum de = 9.844984097158227e-28
Info: cfl dt = 1.5630176419142954 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7059e+04 | 2592 | 1 | 6.994e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80447.36643190621 (tsim/hr) [sph::Model][rank=0]
---------------- t = 496.6359873228745, dt = 1.5630176419142954 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (2.1%)
patch tree reduce : 1.50 us (0.7%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 185.30 us (92.5%)
LB move op cnt : 0
LB apply : 2.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.863961193984646e-21,4.8527314970614135e-21,6.216548971790613e-21)
sum a = (1.6999313646457276e-22,9.609461947416841e-24,9.340908327060703e-23)
sum e = 7.859066496204854e-13
sum de = -1.4893693890572703e-27
Info: cfl dt = 1.563045992395351 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3967e+04 | 2592 | 1 | 5.895e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95446.36048010706 (tsim/hr) [sph::Model][rank=0]
---------------- t = 498.1990049647888, dt = 1.563045992395351 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (1.8%)
patch tree reduce : 1.20 us (0.6%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 194.30 us (93.1%)
LB move op cnt : 0
LB apply : 2.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.490135477790087e-21,5.016438308649647e-21,6.295770176219392e-21)
sum a = (-8.886063212564361e-23,-1.5688221763704707e-22,-1.554639604365589e-23)
sum e = 7.859165116054546e-13
sum de = -1.5146129380243427e-28
Info: cfl dt = 1.5630753769760846 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3915e+04 | 2592 | 1 | 5.902e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95334.16094502778 (tsim/hr) [sph::Model][rank=0]
---------------- t = 499.76205095718416, dt = 1.5630753769760846 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (1.9%)
patch tree reduce : 1.25 us (0.6%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 561.00 ns (0.3%)
LB compute : 183.62 us (93.6%)
LB move op cnt : 0
LB apply : 2.28 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.716895692448764e-21,4.6411258585692085e-21,6.1863187747166476e-21)
sum a = (-2.4497651587021917e-22,-2.074307184413145e-22,-1.2505792141160638e-23)
sum e = 7.859263410340411e-13
sum de = -1.135959703518257e-27
Info: cfl dt = 1.563105780338172 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4264e+04 | 2592 | 1 | 7.565e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74385.90969633225 (tsim/hr) [sph::Model][rank=0]
---------------- t = 501.32512633416025, dt = 1.563105780338172 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (1.9%)
patch tree reduce : 1.11 us (0.5%)
gen split merge : 861.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 199.34 us (93.1%)
LB move op cnt : 0
LB apply : 2.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.245181265005032e-21,4.277356657499096e-21,6.169147245278382e-21)
sum a = (3.3257908068174647e-22,-2.1315736182479537e-23,1.2331255058763004e-22)
sum e = 7.859361184694517e-13
sum de = -1.5146129380243427e-28
Info: cfl dt = 1.563137186664604 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3280e+04 | 2592 | 1 | 7.789e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72249.39841459354 (tsim/hr) [sph::Model][rank=0]
---------------- t = 502.8882321144984, dt = 0.23947715474599818 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (1.8%)
patch tree reduce : 1.12 us (0.5%)
gen split merge : 581.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 205.74 us (93.4%)
LB move op cnt : 0
LB apply : 2.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.764548201326313e-21,4.417750711511459e-21,6.3048270023357514e-21)
sum a = (1.9714428309065428e-22,3.756159347498033e-23,-1.1324096442248725e-23)
sum e = 7.857374517573203e-13
sum de = 4.0389678347315804e-28
Info: cfl dt = 1.5631424508577292 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4806e+04 | 2592 | 1 | 5.785e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14902.706777549443 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 364 [SPH][rank=0]
Info: time since start : 106.26534559500001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000279902 s
sph::RenderFieldGetter compute custom field took : 0.000229809 s
rho_t_ampl=0.00101219, rho_t_phi=3.14159 rad
eps_t_ampl=-3.63516e-06, eps_t_phi=9.13827e-10 rad
vx_t_ampl=1.93757e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 514.31s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 503.1277092692444, dt = 1.5631424508577292 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.27 us (4.1%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 832.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.4%)
LB compute : 225.38 us (90.7%)
LB move op cnt : 0
LB apply : 3.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.415370334551174e-21,4.483525647955299e-21,6.2710046258915356e-21)
sum a = (7.734546497500762e-23,1.7465221786422782e-22,2.181881555527349e-22)
sum e = 7.859435894094288e-13
sum de = -1.2621774483536189e-27
Info: cfl dt = 1.5631746388991452 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3078e+04 | 2592 | 1 | 7.836e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71813.38540730301 (tsim/hr) [sph::Model][rank=0]
---------------- t = 504.69085172010216, dt = 1.5631746388991452 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (2.0%)
patch tree reduce : 1.34 us (0.6%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 201.37 us (92.2%)
LB move op cnt : 0
LB apply : 2.76 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.397295244976932e-21,4.863639293703896e-21,6.791450989202494e-21)
sum a = (1.0783434120996913e-22,-4.2473562050380304e-23,1.8826394277887443e-22)
sum e = 7.859549532469494e-13
sum de = -1.464125840090198e-27
Info: cfl dt = 1.5632081444421526 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6064e+04 | 2592 | 1 | 7.187e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78297.17875637158 (tsim/hr) [sph::Model][rank=0]
---------------- t = 506.25402635900133, dt = 1.5632081444421526 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (1.8%)
patch tree reduce : 1.27 us (0.6%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.4%)
LB compute : 212.60 us (93.7%)
LB move op cnt : 0
LB apply : 2.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (57.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2691264279959404e-21,4.627551087595016e-21,7.06235833261021e-21)
sum a = (6.626677015784056e-23,-6.31099679592496e-23,5.0854854729796225e-23)
sum e = 7.859644628522614e-13
sum de = -5.048709793414476e-29
Info: cfl dt = 1.563242604356839 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3863e+04 | 2592 | 1 | 5.909e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95231.04083343901 (tsim/hr) [sph::Model][rank=0]
---------------- t = 507.8172345034435, dt = 1.563242604356839 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (2.0%)
patch tree reduce : 952.00 ns (0.5%)
gen split merge : 430.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 470.00 ns (0.2%)
LB compute : 183.68 us (93.6%)
LB move op cnt : 0
LB apply : 2.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1491735608214223e-21,4.512776515347352e-21,7.034457305383488e-21)
sum a = (-3.767783231562612e-23,-1.5739069988214988e-22,2.0559315815399873e-22)
sum e = 7.859738195798842e-13
sum de = -6.815758221109542e-28
Info: cfl dt = 1.5632779964374108 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4578e+04 | 2592 | 1 | 5.815e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96785.3710169811 (tsim/hr) [sph::Model][rank=0]
---------------- t = 509.38047710780035, dt = 1.5632779964374108 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (1.9%)
patch tree reduce : 1.03 us (0.6%)
gen split merge : 671.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.6%)
LB compute : 173.71 us (93.0%)
LB move op cnt : 0
LB apply : 2.39 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2420137936345765e-21,4.193034856238221e-21,7.4768033199627e-21)
sum a = (8.146627729981715e-23,-3.278321431782038e-23,1.1747333520141752e-22)
sum e = 7.859830265211866e-13
sum de = -9.087677628146056e-28
Info: cfl dt = 1.5633143024056633 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4343e+04 | 2592 | 1 | 5.845e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96277.88442448188 (tsim/hr) [sph::Model][rank=0]
---------------- t = 510.94375510423777, dt = 1.5633143024056633 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (1.9%)
patch tree reduce : 1.11 us (0.5%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 198.43 us (93.3%)
LB move op cnt : 0
LB apply : 2.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.0620844928727997e-21,4.239199026552194e-21,7.591573174898104e-21)
sum a = (1.9588621577653796e-22,7.031928338818953e-23,7.31763847729114e-24)
sum e = 7.85992065700763e-13
sum de = 3.0292258760486853e-28
Info: cfl dt = 1.5633515035783543 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3490e+04 | 2592 | 1 | 5.960e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94427.7754572175 (tsim/hr) [sph::Model][rank=0]
---------------- t = 512.5070694066434, dt = 1.5633515035783543 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (1.8%)
patch tree reduce : 1.46 us (0.8%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.3%)
LB compute : 176.88 us (93.4%)
LB move op cnt : 0
LB apply : 1.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6915451566008294e-21,4.429715589586561e-21,7.516909227924751e-21)
sum a = (2.473642762827256e-22,2.3964808328637944e-23,8.483642003916809e-23)
sum e = 7.860009192911166e-13
sum de = -1.5146129380243427e-28
Info: cfl dt = 1.5633895808426297 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4439e+04 | 2592 | 1 | 5.833e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96490.70923193748 (tsim/hr) [sph::Model][rank=0]
---------------- t = 514.0704209102217, dt = 0.2379041205614385 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (2.1%)
patch tree reduce : 1.14 us (0.6%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.4%)
LB compute : 186.24 us (92.6%)
LB move op cnt : 0
LB apply : 2.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6102072535167384e-21,4.399183387053792e-21,7.597686713680662e-21)
sum a = (1.2490811190154758e-23,1.1138689704547836e-22,5.899076474765966e-23)
sum e = 7.857501415524334e-13
sum de = -6.815758221109542e-28
Info: cfl dt = 1.5633957384266526 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6500e+04 | 2592 | 1 | 5.574e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15364.546158161786 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 372 [SPH][rank=0]
Info: time since start : 106.997999139 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000313992 s
sph::RenderFieldGetter compute custom field took : 0.000247014 s
rho_t_ampl=0.00113199, rho_t_phi=3.14159 rad
eps_t_ampl=-4.80346e-06, eps_t_phi=7.37629e-10 rad
vx_t_ampl=1.54423e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 525.49s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 514.3083250307832, dt = 1.5633957384266526 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.11 us (3.8%)
patch tree reduce : 1.60 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 240.89 us (91.5%)
LB move op cnt : 0
LB apply : 2.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.588024189039259e-21,4.583719717482441e-21,7.68683822994739e-21)
sum a = (7.187672338507347e-23,5.865332668025333e-23,2.0416697929092328e-22)
sum e = 7.860075955216512e-13
sum de = -8.330371159133885e-28
Info: cfl dt = 1.5634345247944408 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4356e+04 | 2592 | 1 | 5.844e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96314.1122476311 (tsim/hr) [sph::Model][rank=0]
---------------- t = 515.8717207692098, dt = 1.5634345247944408 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (2.0%)
patch tree reduce : 951.00 ns (0.5%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 182.36 us (93.0%)
LB move op cnt : 0
LB apply : 2.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4072732932968347e-21,4.634193249750572e-21,8.119523871762721e-21)
sum a = (-1.985820743067872e-22,-8.886529572019929e-23,-2.826772677379782e-23)
sum e = 7.860175089178641e-13
sum de = 5.174927538249837e-28
Info: cfl dt = 1.5634744157882856 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4432e+04 | 2592 | 1 | 5.834e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96481.23896074398 (tsim/hr) [sph::Model][rank=0]
---------------- t = 517.4351552940042, dt = 1.5634744157882856 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.76 us (1.8%)
patch tree reduce : 901.00 ns (0.4%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 197.30 us (93.6%)
LB move op cnt : 0
LB apply : 2.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.924467333614363e-21,4.379942900302411e-21,7.89362978204879e-21)
sum a = (-4.6253229926133185e-23,-4.7321995418231435e-23,1.44859469016632e-22)
sum e = 7.860256932858813e-13
sum de = 2.524354896707238e-28
Info: cfl dt = 1.5635151249750066 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4693e+04 | 2592 | 1 | 5.800e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97050.62214108129 (tsim/hr) [sph::Model][rank=0]
---------------- t = 518.9986297097925, dt = 1.5635151249750066 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.8%)
patch tree reduce : 1.32 us (0.7%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 641.00 ns (0.3%)
LB compute : 186.40 us (93.6%)
LB move op cnt : 0
LB apply : 2.67 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.8916035343884673e-21,4.338418454963377e-21,8.25545972349951e-21)
sum a = (-9.272469601900083e-23,8.436713340580409e-23,1.0571357617807134e-23)
sum e = 7.86033594440971e-13
sum de = -6.310887241768094e-29
Info: cfl dt = 1.5635566265490097 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4816e+04 | 2592 | 1 | 5.784e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97321.19711124556 (tsim/hr) [sph::Model][rank=0]
---------------- t = 520.5621448347674, dt = 1.5635566265490097 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (2.0%)
patch tree reduce : 902.00 ns (0.5%)
gen split merge : 540.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 611.00 ns (0.3%)
LB compute : 175.58 us (93.5%)
LB move op cnt : 0
LB apply : 1.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.0255235162339912e-21,4.573289111869979e-21,8.167007893116214e-21)
sum a = (-3.310899397793231e-22,-2.429617427298108e-23,4.8851700407029085e-23)
sum e = 7.860412246217347e-13
sum de = 5.553580772755923e-28
Info: cfl dt = 1.5635988993260939 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4784e+04 | 2592 | 1 | 5.788e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97253.82457774681 (tsim/hr) [sph::Model][rank=0]
---------------- t = 522.1257014613165, dt = 1.5635988993260939 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (1.9%)
patch tree reduce : 1.14 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.6%)
LB compute : 178.25 us (92.7%)
LB move op cnt : 0
LB apply : 2.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.7813908984295845e-21,4.450351343595116e-21,8.27331909992074e-21)
sum a = (1.4719387575160787e-22,-1.1442971698143434e-22,7.104899888761277e-23)
sum e = 7.860485689683244e-13
sum de = 4.67005655890839e-28
Info: cfl dt = 1.5636405967873808 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4697e+04 | 2592 | 1 | 5.799e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97067.26509773663 (tsim/hr) [sph::Model][rank=0]
---------------- t = 523.6893003606425, dt = 1.5636405967873808 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (1.9%)
patch tree reduce : 1.12 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 186.56 us (92.7%)
LB move op cnt : 0
LB apply : 2.52 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (44.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.175875397692462e-21,4.2009551191060106e-21,8.40176803467814e-21)
sum a = (-1.620852847758417e-22,6.56741426260235e-23,-1.255593797991604e-22)
sum e = 7.860556125256598e-13
sum de = 1.262177448353619e-28
Info: cfl dt = 1.5636825904123113 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4413e+04 | 2592 | 1 | 5.836e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96452.09729724817 (tsim/hr) [sph::Model][rank=0]
---------------- t = 525.2529409574299, dt = 0.23599983489202714 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (1.6%)
patch tree reduce : 1.34 us (0.7%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 631.00 ns (0.3%)
LB compute : 194.44 us (94.3%)
LB move op cnt : 0
LB apply : 1.67 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.4400181839705965e-21,4.357263818039202e-21,8.218423620484965e-21)
sum a = (2.763126619289733e-22,-8.635457687919262e-23,8.690537966097825e-23)
sum e = 7.857606280327099e-13
sum de = -6.563322731438818e-28
Info: cfl dt = 1.5636891748019923 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5561e+04 | 2592 | 1 | 5.689e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14933.789105032081 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 380 [SPH][rank=0]
Info: time since start : 107.69548214400001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00028480000000000004 s
sph::RenderFieldGetter compute custom field took : 0.000215047 s
rho_t_ampl=0.0012234, rho_t_phi=3.14159 rad
eps_t_ampl=-6.08293e-06, eps_t_phi=6.14449e-10 rad
vx_t_ampl=1.11269e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 536.67s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 525.488940792322, dt = 1.5636891748019923 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.12 us (3.7%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 251.16 us (91.6%)
LB move op cnt : 0
LB apply : 3.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.9700658550402925e-21,4.204292472618556e-21,8.379387445969419e-21)
sum a = (-1.634203766193937e-22,7.265780025388229e-24,3.3146175526665946e-23)
sum e = 7.860608335758331e-13
sum de = 8.204153414298523e-28
Info: cfl dt = 1.563731671338495 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4001e+04 | 2592 | 1 | 5.891e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95560.43412398113 (tsim/hr) [sph::Model][rank=0]
---------------- t = 527.052629967124, dt = 1.563731671338495 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (1.7%)
patch tree reduce : 1.25 us (0.6%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 331.00 ns (0.2%)
LB compute : 201.50 us (94.3%)
LB move op cnt : 0
LB apply : 2.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.569419393422559e-21,4.288850362085541e-21,8.38918782764827e-21)
sum a = (-4.516204909246088e-23,1.995802841264141e-23,1.5861704935435177e-22)
sum e = 7.860682939770116e-13
sum de = 6.815758221109542e-28
Info: cfl dt = 1.5637750306181801 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4046e+04 | 2592 | 1 | 5.885e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95660.75579218827 (tsim/hr) [sph::Model][rank=0]
---------------- t = 528.6163616384624, dt = 1.5637750306181801 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.93 us (1.9%)
patch tree reduce : 1.03 us (0.5%)
gen split merge : 611.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.4%)
LB compute : 190.75 us (93.2%)
LB move op cnt : 0
LB apply : 2.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.555452278751554e-21,4.329985873667866e-21,8.735330598476661e-21)
sum a = (-7.399489794455501e-23,1.4224835938311382e-22,-4.5834738264225013e-23)
sum e = 7.860743368677263e-13
sum de = -1.3883951931889808e-28
Info: cfl dt = 1.5638190560270628 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4323e+04 | 2592 | 1 | 5.848e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96265.19442514257 (tsim/hr) [sph::Model][rank=0]
---------------- t = 530.1801366690806, dt = 1.5638190560270628 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.04 us (2.0%)
patch tree reduce : 1.06 us (0.5%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 191.16 us (93.2%)
LB move op cnt : 0
LB apply : 2.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.6807455133002796e-21,4.648049240491089e-21,8.503795061129857e-21)
sum a = (-9.923326875631684e-24,1.448803316825681e-23,1.0139188783791496e-23)
sum e = 7.860799928326402e-13
sum de = 2.524354896707238e-29
Info: cfl dt = 1.5638637200163648 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.8296e+04 | 2592 | 1 | 6.768e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83177.46247084596 (tsim/hr) [sph::Model][rank=0]
---------------- t = 531.7439557251078, dt = 1.5638637200163648 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.22 us (2.0%)
patch tree reduce : 1.80 us (0.9%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.4%)
LB compute : 194.85 us (92.6%)
LB move op cnt : 0
LB apply : 2.64 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.653632878938916e-21,4.570813294768873e-21,8.563417917498019e-21)
sum a = (1.2439461503864296e-23,1.7452690256536076e-22,7.927728839916431e-23)
sum e = 7.860852840182748e-13
sum de = -5.427363027920561e-28
Info: cfl dt = 1.5639090000374478 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4732e+04 | 2592 | 1 | 5.795e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97159.08798728678 (tsim/hr) [sph::Model][rank=0]
---------------- t = 533.3078194451241, dt = 1.5639090000374478 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (1.8%)
patch tree reduce : 1.25 us (0.6%)
gen split merge : 531.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.3%)
LB compute : 184.12 us (93.9%)
LB move op cnt : 0
LB apply : 2.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.611731534925899e-21,4.968902941243948e-21,8.741461665153692e-21)
sum a = (-1.6498654205125277e-22,-2.9471460429153724e-23,7.713676793954734e-23)
sum e = 7.860902001620723e-13
sum de = 2.9030081312133234e-28
Info: cfl dt = 1.5639548732725643 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4373e+04 | 2592 | 1 | 5.841e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96381.80179087089 (tsim/hr) [sph::Model][rank=0]
---------------- t = 534.8717284451616, dt = 1.5639548732725643 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (1.9%)
patch tree reduce : 1.13 us (0.5%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 192.87 us (92.9%)
LB move op cnt : 0
LB apply : 2.83 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.0155454679140885e-21,4.7632815470517025e-21,8.860426299675711e-21)
sum a = (4.318508617027811e-23,1.333879308967523e-22,-2.092277423929865e-23)
sum e = 7.860947316465652e-13
sum de = 1.9563750449481093e-28
Info: cfl dt = 1.5640013166331153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4413e+04 | 2592 | 1 | 5.836e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96472.88333255767 (tsim/hr) [sph::Model][rank=0]
---------------- t = 536.4356833184341, dt = 0.23387323542658578 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (1.9%)
patch tree reduce : 1.36 us (0.7%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.4%)
LB compute : 179.92 us (92.7%)
LB move op cnt : 0
LB apply : 2.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.844037515703947e-21,4.921831325692561e-21,8.778852673339465e-21)
sum a = (-4.65998403085938e-23,-8.688045984806769e-23,1.9309767601479826e-22)
sum e = 7.857678876197918e-13
sum de = 2.7136815139602806e-28
Info: cfl dt = 1.5640084207735947 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6207e+04 | 2592 | 1 | 5.609e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15009.282802687148 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 388 [SPH][rank=0]
Info: time since start : 108.40163474 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000287013 s
sph::RenderFieldGetter compute custom field took : 0.000237039 s
rho_t_ampl=0.00128418, rho_t_phi=3.14159 rad
eps_t_ampl=-7.441e-06, eps_t_phi=5.24966e-10 rad
vx_t_ampl=6.53908e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 547.85s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 536.6695565538607, dt = 1.5640084207735947 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.80 us (4.0%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 219.35 us (90.6%)
LB move op cnt : 0
LB apply : 3.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9224998363557725e-21,4.7601945483329124e-21,9.105885892232637e-21)
sum a = (-3.609882946219443e-23,5.849591782745474e-23,-1.4243040442336937e-22)
sum e = 7.860979895415726e-13
sum de = -2.0194839173657902e-28
Info: cfl dt = 1.5640553916449982 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4297e+04 | 2592 | 1 | 5.851e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96222.36644232516 (tsim/hr) [sph::Model][rank=0]
---------------- t = 538.2335649746343, dt = 1.5640553916449982 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.89 us (1.9%)
patch tree reduce : 1.17 us (0.6%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 185.25 us (92.8%)
LB move op cnt : 0
LB apply : 2.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.981038478726899e-21,4.9653862900719e-21,8.620732478654802e-21)
sum a = (-1.323666538352371e-22,1.3994013080894395e-22,-3.5676675262180655e-23)
sum e = 7.861022438214231e-13
sum de = 4.417621069237666e-29
Info: cfl dt = 1.5641029755851412 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3535e+04 | 2592 | 1 | 5.954e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94570.94605290117 (tsim/hr) [sph::Model][rank=0]
---------------- t = 539.7976203662793, dt = 1.5641029755851412 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.48 us (1.8%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 671.00 ns (0.3%)
LB compute : 185.67 us (93.5%)
LB move op cnt : 0
LB apply : 2.32 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.243743473788899e-21,5.247933927190923e-21,8.64841485755429e-21)
sum a = (-1.6166164986394538e-22,-6.323001790942476e-23,-6.073295411396925e-23)
sum e = 7.861055469696193e-13
sum de = 4.417621069237666e-29
Info: cfl dt = 1.5641510609181968 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4968e+04 | 2592 | 1 | 5.764e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97686.51210438272 (tsim/hr) [sph::Model][rank=0]
---------------- t = 541.3617233418644, dt = 1.5641510609181968 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (2.1%)
patch tree reduce : 881.00 ns (0.5%)
gen split merge : 721.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 631.00 ns (0.3%)
LB compute : 179.77 us (93.4%)
LB move op cnt : 0
LB apply : 1.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.531301717015484e-21,4.99015689733511e-21,8.53382404278953e-21)
sum a = (-2.922952517868794e-22,-2.0485455883799432e-22,-5.407046555688626e-23)
sum e = 7.861083964961016e-13
sum de = 1.7039395552773855e-28
Info: cfl dt = 1.5641996179381392 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.0872e+04 | 2592 | 1 | 6.342e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88791.64263631952 (tsim/hr) [sph::Model][rank=0]
---------------- t = 542.9258744027826, dt = 1.5641996179381392 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.93 us (1.7%)
patch tree reduce : 1.13 us (0.5%)
gen split merge : 792.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 214.08 us (93.7%)
LB move op cnt : 0
LB apply : 2.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.092040291307323e-21,4.5589743838929526e-21,8.454457610496342e-21)
sum a = (2.031650338082109e-22,-1.922117044360889e-22,-1.5042242968601644e-22)
sum e = 7.861108242168781e-13
sum de = -1.5146129380243427e-28
Info: cfl dt = 1.5642486223475642 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4239e+04 | 2592 | 1 | 7.570e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74383.64094978076 (tsim/hr) [sph::Model][rank=0]
---------------- t = 544.4900740207207, dt = 1.5642486223475642 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (2.0%)
patch tree reduce : 1.40 us (0.6%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 213.34 us (93.1%)
LB move op cnt : 0
LB apply : 2.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.384852411715088e-21,4.268169075347345e-21,8.143802679350659e-21)
sum a = (1.2162173197895803e-22,-4.9236024887001576e-23,2.3152225970730692e-23)
sum e = 7.861128254804634e-13
sum de = -9.781875224740546e-29
Info: cfl dt = 1.5642975565707617 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6119e+04 | 2592 | 1 | 5.620e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100195.78772806704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 546.0543226430683, dt = 1.5642975565707617 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (2.0%)
patch tree reduce : 1.15 us (0.6%)
gen split merge : 951.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.5%)
LB compute : 174.42 us (92.4%)
LB move op cnt : 0
LB apply : 2.61 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (58.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.258583533126843e-21,4.303017058545058e-21,8.315776607858136e-21)
sum a = (-1.7430651011297153e-22,2.621536879808708e-22,-1.2654125288958865e-23)
sum e = 7.861143962280158e-13
sum de = -3.7865323450608567e-29
Info: cfl dt = 1.564344237778415 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5957e+04 | 2592 | 1 | 5.640e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99848.75896222756 (tsim/hr) [sph::Model][rank=0]
---------------- t = 547.618620199639, dt = 0.23155211576045076 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (2.0%)
patch tree reduce : 992.00 ns (0.5%)
gen split merge : 541.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 631.00 ns (0.3%)
LB compute : 178.19 us (93.3%)
LB move op cnt : 0
LB apply : 2.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.532688158545326e-21,4.607276787237615e-21,8.284840624482294e-21)
sum a = (4.398100630778027e-23,-3.861727081461587e-23,-4.4874851639995994e-23)
sum e = 7.857712260141585e-13
sum de = -1.5777218104420236e-28
Info: cfl dt = 1.5643512042376635 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5508e+04 | 2592 | 1 | 7.300e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11419.315205681385 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 396 [SPH][rank=0]
Info: time since start : 109.132213135 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000273853 s
sph::RenderFieldGetter compute custom field took : 0.00022798500000000002 s
rho_t_ampl=0.00131285, rho_t_phi=3.14159 rad
eps_t_ampl=-8.84318e-06, eps_t_phi=4.58121e-10 rad
vx_t_ampl=1.79546e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 559.03s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 547.8501723153995, dt = 1.5643512042376635 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.94 us (4.1%)
patch tree reduce : 1.57 us (0.6%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 221.67 us (90.8%)
LB move op cnt : 0
LB apply : 2.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.442466759732986e-21,4.512026328524202e-21,8.210910207599794e-21)
sum a = (2.4528461398796193e-22,-3.3100288601428377e-23,1.5585363837252712e-22)
sum e = 7.861153816369829e-13
sum de = -5.206481974458678e-29
Info: cfl dt = 1.5643983067133218 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4837e+04 | 2592 | 1 | 7.440e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75691.2715135639 (tsim/hr) [sph::Model][rank=0]
---------------- t = 549.4145235196372, dt = 1.5643983067133218 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (1.6%)
patch tree reduce : 1.35 us (0.6%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 220.57 us (93.5%)
LB move op cnt : 0
LB apply : 2.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.901472139819829e-21,4.464588846457995e-21,8.611732303103296e-21)
sum a = (4.590661954367257e-23,-3.088598381868628e-23,-6.916416612318299e-23)
sum e = 7.861159976484674e-13
sum de = 2.406025760924086e-29
Info: cfl dt = 1.5644457679387105 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5257e+04 | 2592 | 1 | 7.352e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76606.2441693367 (tsim/hr) [sph::Model][rank=0]
---------------- t = 550.9789218263505, dt = 1.5644457679387105 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (2.1%)
patch tree reduce : 1.29 us (0.6%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.4%)
LB compute : 196.76 us (92.6%)
LB move op cnt : 0
LB apply : 2.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.98899768010192e-21,4.417963331306256e-21,8.327519979952187e-21)
sum a = (-1.137395551333722e-23,-8.97339779620056e-23,6.255404480686655e-23)
sum e = 7.861162367024491e-13
sum de = 1.6960509462251754e-29
Info: cfl dt = 1.564450359791247 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4770e+04 | 2592 | 1 | 7.455e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75549.16786631754 (tsim/hr) [sph::Model][rank=0]
---------------- t = 552.5433675942893, dt = 1.564450359791247 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (1.9%)
patch tree reduce : 1.61 us (0.7%)
gen split merge : 902.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 691.00 ns (0.3%)
LB compute : 209.63 us (93.2%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.045893132511751e-21,4.2315768074934535e-21,8.52841567668171e-21)
sum a = (2.969552358177388e-22,1.348220614418899e-22,1.3826280857715848e-22)
sum e = 7.861159795017436e-13
sum de = -3.470987982972452e-29
Info: cfl dt = 1.564403208263822 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7501e+04 | 2592 | 1 | 6.912e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81484.87354857771 (tsim/hr) [sph::Model][rank=0]
---------------- t = 554.1078179540806, dt = 1.564403208263822 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (2.0%)
patch tree reduce : 1.02 us (0.5%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 14.08 us (6.7%)
LB compute : 184.20 us (87.3%)
LB move op cnt : 0
LB apply : 2.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.3418375837832336e-21,4.618142059921137e-21,8.803935759363238e-21)
sum a = (3.467387566763412e-23,9.710837460898088e-23,-1.0114300529201221e-23)
sum e = 7.861152618854859e-13
sum de = -3.155443620884047e-29
Info: cfl dt = 1.564356015357001 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5727e+04 | 2592 | 1 | 5.668e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99355.38057262418 (tsim/hr) [sph::Model][rank=0]
---------------- t = 555.6722211623444, dt = 1.564356015357001 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (1.6%)
patch tree reduce : 1.20 us (0.5%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 217.04 us (93.7%)
LB move op cnt : 0
LB apply : 2.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.495578544536875e-21,4.740538851227542e-21,8.672052579729769e-21)
sum a = (-1.4843910564415156e-22,1.2546373155398733e-22,7.70472553348872e-23)
sum e = 7.861141094918244e-13
sum de = 2.208810534618833e-29
Info: cfl dt = 1.5643075607683556 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5231e+04 | 2592 | 1 | 7.357e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76547.07058427873 (tsim/hr) [sph::Model][rank=0]
---------------- t = 557.2365771777014, dt = 1.5643075607683556 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (1.7%)
patch tree reduce : 1.38 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 213.36 us (93.3%)
LB move op cnt : 0
LB apply : 2.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.869301561358854e-21,4.958972393318682e-21,8.8607540358982e-21)
sum a = (1.5091672800766633e-22,2.99136494269167e-23,-9.388005307221922e-23)
sum e = 7.861125242787635e-13
sum de = -4.1020767071492614e-29
Info: cfl dt = 1.5642581404778293 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5194e+04 | 2592 | 1 | 7.365e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76464.13897940716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 558.8008847384698, dt = 0.22990333846848898 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (1.8%)
patch tree reduce : 1.11 us (0.5%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 215.69 us (93.4%)
LB move op cnt : 0
LB apply : 2.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.607315461904919e-21,4.891139457728983e-21,8.705479257839714e-21)
sum a = (5.101591332957349e-23,-1.3962250491737775e-22,-1.2293689285004993e-23)
sum e = 7.857704029293915e-13
sum de = 1.135959703518257e-28
Info: cfl dt = 1.56425098084393 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4964e+04 | 2592 | 1 | 7.413e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11164.21568883731 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 404 [SPH][rank=0]
Info: time since start : 109.93301486300001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000277679 s
sph::RenderFieldGetter compute custom field took : 0.000235366 s
rho_t_ampl=0.00130875, rho_t_phi=3.14159 rad
eps_t_ampl=-1.0254e-05, eps_t_phi=4.15631e-10 rad
vx_t_ampl=-2.98387e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 570.21s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 559.0307880769383, dt = 1.56425098084393 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.57 us (3.6%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 242.06 us (91.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.5302909324692275e-21,4.653205872269039e-21,8.695627331022374e-21)
sum a = (-4.0348016002730115e-23,-1.0202194786207743e-22,-7.777668536600188e-23)
sum e = 7.861111103064823e-13
sum de = 2.398137151871876e-28
Info: cfl dt = 1.5642020288127079 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4158e+04 | 2592 | 1 | 5.870e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95936.48401632273 (tsim/hr) [sph::Model][rank=0]
---------------- t = 560.5950390577822, dt = 1.5642020288127079 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (1.7%)
patch tree reduce : 1.00 us (0.4%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.4%)
LB compute : 211.34 us (93.8%)
LB move op cnt : 0
LB apply : 2.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.667599993609921e-21,4.523103418663672e-21,8.522752961553599e-21)
sum a = (-6.169664807798948e-23,2.388838053872067e-22,-7.235767584524e-23)
sum e = 7.861079825625674e-13
sum de = -2.8398992587956425e-28
Info: cfl dt = 1.5641536602332018 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4538e+04 | 2592 | 1 | 5.820e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96759.33995583 (tsim/hr) [sph::Model][rank=0]
---------------- t = 562.1592410865949, dt = 1.5641536602332018 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (1.8%)
patch tree reduce : 1.04 us (0.5%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.4%)
LB compute : 208.53 us (93.8%)
LB move op cnt : 0
LB apply : 2.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.786731265803792e-21,5.163382657019436e-21,8.41381265087783e-21)
sum a = (-2.9474719930724893e-23,5.371207273689083e-23,1.8621019287515246e-22)
sum e = 7.861051031535127e-13
sum de = 9.466330862652142e-29
Info: cfl dt = 1.5641058100086218 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4202e+04 | 2592 | 1 | 5.864e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96026.7035385363 (tsim/hr) [sph::Model][rank=0]
---------------- t = 563.723394746828, dt = 1.5641058100086218 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (1.6%)
patch tree reduce : 1.13 us (0.5%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 210.19 us (94.9%)
LB move op cnt : 0
LB apply : 1.79 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.805011754123197e-21,5.10247230101277e-21,8.907285034575547e-21)
sum a = (1.0918227047509373e-22,-2.4206964222287007e-23,-7.917062328494514e-23)
sum e = 7.861017714882126e-13
sum de = -2.7136815139602806e-28
Info: cfl dt = 1.5640585070129192 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4174e+04 | 2592 | 1 | 5.868e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95961.30865421884 (tsim/hr) [sph::Model][rank=0]
---------------- t = 565.2875005568367, dt = 1.5640585070129192 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.93 us (1.9%)
patch tree reduce : 1.44 us (0.7%)
gen split merge : 812.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 193.00 us (92.8%)
LB move op cnt : 0
LB apply : 2.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.524437068232115e-21,5.003738087020088e-21,8.57591570951055e-21)
sum a = (-7.512459104294516e-23,-1.3046781865840644e-23,9.170207740748386e-23)
sum e = 7.860980344566561e-13
sum de = -1.072850831100576e-28
Info: cfl dt = 1.564011774005205 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5418e+04 | 2592 | 1 | 5.707e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98661.16814852359 (tsim/hr) [sph::Model][rank=0]
---------------- t = 566.8515590638495, dt = 1.564011774005205 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (2.0%)
patch tree reduce : 1.44 us (0.7%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 186.21 us (92.6%)
LB move op cnt : 0
LB apply : 2.68 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.791660835687676e-21,4.992067266132884e-21,8.852966288844123e-21)
sum a = (8.481684433026977e-23,4.3534304153995664e-23,8.163375472602675e-23)
sum e = 7.860938996224653e-13
sum de = -3.9758589623138995e-28
Info: cfl dt = 1.563965633439692 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4984e+04 | 2592 | 1 | 5.762e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97715.22928246278 (tsim/hr) [sph::Model][rank=0]
---------------- t = 568.4155708378547, dt = 1.563965633439692 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (1.8%)
patch tree reduce : 1.15 us (0.6%)
gen split merge : 541.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 651.00 ns (0.3%)
LB compute : 179.08 us (93.9%)
LB move op cnt : 0
LB apply : 2.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.5418959615708715e-21,5.1043802627939994e-21,8.972765188155283e-21)
sum a = (1.6406224769802445e-22,2.3920278522557935e-23,9.784046231366046e-23)
sum e = 7.860893754392341e-13
sum de = 1.262177448353619e-28
Info: cfl dt = 1.5639201074372586 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4811e+04 | 2592 | 1 | 5.784e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97336.40636862969 (tsim/hr) [sph::Model][rank=0]
---------------- t = 569.9795364712944, dt = 0.23186736718253087 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (1.8%)
patch tree reduce : 791.00 ns (0.4%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.4%)
LB compute : 182.32 us (93.6%)
LB move op cnt : 0
LB apply : 1.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.412083954628585e-21,5.094569263357128e-21,9.008124565404523e-21)
sum a = (1.882351125192592e-22,-8.6461338092193e-23,4.2836177571293267e-23)
sum e = 7.857657191554868e-13
sum de = -2.271919407036514e-28
Info: cfl dt = 1.5639135612280815 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6313e+04 | 2592 | 1 | 5.597e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14914.627130036299 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 412 [SPH][rank=0]
Info: time since start : 110.782436383 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000314514 s
sph::RenderFieldGetter compute custom field took : 0.000254304 s
rho_t_ampl=0.00127206, rho_t_phi=3.14159 rad
eps_t_ampl=-1.16376e-05, eps_t_phi=3.81708e-10 rad
vx_t_ampl=-7.67805e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 581.39s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 570.2114038384769, dt = 1.5639135612280815 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.87 us (3.5%)
patch tree reduce : 1.45 us (0.5%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 258.00 us (91.8%)
LB move op cnt : 0
LB apply : 3.59 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.109737001750348e-21,4.9466147703773434e-21,9.068739795076132e-21)
sum a = (4.763967145597565e-23,8.101004737220912e-23,7.841815459445206e-23)
sum e = 7.860857650260971e-13
sum de = 7.825500179792437e-28
Info: cfl dt = 1.5638686058601678 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4123e+04 | 2592 | 1 | 5.875e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95839.44583172046 (tsim/hr) [sph::Model][rank=0]
---------------- t = 571.775317399705, dt = 1.5638686058601678 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.7%)
patch tree reduce : 882.00 ns (0.4%)
gen split merge : 550.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 742.00 ns (0.4%)
LB compute : 194.60 us (93.8%)
LB move op cnt : 0
LB apply : 2.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1475303708601277e-21,5.2042618213397336e-21,9.219199053377038e-21)
sum a = (5.407121966385595e-23,5.415937664481164e-23,1.2071940136308227e-22)
sum e = 7.860792581244802e-13
sum de = -4.543838814073028e-28
Info: cfl dt = 1.5638244789603797 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5161e+04 | 2592 | 1 | 5.740e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98090.86532731121 (tsim/hr) [sph::Model][rank=0]
---------------- t = 573.3391860055652, dt = 1.5638244789603797 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (1.9%)
patch tree reduce : 971.00 ns (0.5%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.4%)
LB compute : 183.11 us (92.9%)
LB move op cnt : 0
LB apply : 2.68 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.0900187222148107e-21,5.267896920075188e-21,9.441059804219212e-21)
sum a = (1.8091778222286845e-22,-7.163516924556063e-23,1.21277339479333e-22)
sum e = 7.860736096669618e-13
sum de = -3.407879110554771e-28
Info: cfl dt = 1.5637810283822047 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4751e+04 | 2592 | 1 | 5.792e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97198.49660807934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 574.9030104845256, dt = 1.5637810283822047 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (1.6%)
patch tree reduce : 1.02 us (0.5%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 211.50 us (94.0%)
LB move op cnt : 0
LB apply : 2.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6927775490718006e-21,5.057552558252492e-21,9.631147265511298e-21)
sum a = (1.522261450080731e-22,1.1563347598475712e-22,-1.0038283020286341e-22)
sum e = 7.860675767314178e-13
sum de = -7.699282434957075e-28
Info: cfl dt = 1.563738280401983 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3997e+04 | 2592 | 1 | 5.891e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95558.16218856009 (tsim/hr) [sph::Model][rank=0]
---------------- t = 576.4667915129078, dt = 1.563738280401983 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (2.0%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 611.00 ns (0.3%)
LB compute : 183.74 us (93.9%)
LB move op cnt : 0
LB apply : 2.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.425348382871077e-21,5.384820155758569e-21,9.300860807179202e-21)
sum a = (-3.4925489130457383e-22,-2.630568206469755e-24,4.528975207561857e-23)
sum e = 7.860612097380497e-13
sum de = 2.7767903863779616e-28
Info: cfl dt = 1.5636962552563054 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4375e+04 | 2592 | 1 | 5.841e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96375.2930047797 (tsim/hr) [sph::Model][rank=0]
---------------- t = 578.0305297933097, dt = 1.5636962552563054 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (1.8%)
patch tree reduce : 1.02 us (0.5%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 189.63 us (93.1%)
LB move op cnt : 0
LB apply : 2.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.423175486867325e-21,5.288215349069245e-21,9.485577119558306e-21)
sum a = (1.399664074062254e-22,-9.257706567091576e-23,9.648912530773357e-23)
sum e = 7.860545213284828e-13
sum de = -1.7670484276950664e-28
Info: cfl dt = 1.5636549728193858 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4625e+04 | 2592 | 1 | 5.808e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96917.24425480583 (tsim/hr) [sph::Model][rank=0]
---------------- t = 579.594226048566, dt = 1.5636549728193858 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.98 us (2.0%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 911.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.12 us (0.6%)
LB compute : 181.33 us (92.6%)
LB move op cnt : 0
LB apply : 2.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.817659986130203e-21,5.0731724909509714e-21,9.67648295426591e-21)
sum a = (1.9511597048218104e-22,-1.3004969982609211e-22,-5.486067402961357e-23)
sum e = 7.860475249384686e-13
sum de = 6.310887241768094e-28
Info: cfl dt = 1.5636141260340684 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4586e+04 | 2592 | 1 | 5.813e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96829.38837864208 (tsim/hr) [sph::Model][rank=0]
---------------- t = 581.1578810213854, dt = 0.23413857863033627 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (1.8%)
patch tree reduce : 1.12 us (0.6%)
gen split merge : 681.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 501.00 ns (0.3%)
LB compute : 181.39 us (94.1%)
LB move op cnt : 0
LB apply : 1.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7207117784138116e-21,5.013388618687302e-21,9.545308520841946e-21)
sum a = (3.575221907973381e-23,1.611824529868051e-22,-1.3378780223700818e-22)
sum e = 7.85757454741265e-13
sum de = -9.34011311781678e-28
Info: cfl dt = 1.5636081154147758 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6074e+04 | 2592 | 1 | 5.626e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14983.07612415678 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 420 [SPH][rank=0]
Info: time since start : 111.47802742500001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00032594000000000004 s
sph::RenderFieldGetter compute custom field took : 0.000266823 s
rho_t_ampl=0.00120376, rho_t_phi=3.14159 rad
eps_t_ampl=-1.29593e-05, eps_t_phi=3.53617e-10 rad
vx_t_ampl=-1.21687e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 592.57s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 581.3920196000157, dt = 1.5636081154147758 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.41 us (4.2%)
patch tree reduce : 1.40 us (0.6%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.4%)
LB compute : 225.60 us (90.9%)
LB move op cnt : 0
LB apply : 3.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6451250401942523e-21,5.299489814565395e-21,9.326876884713347e-21)
sum a = (4.9398398211423953e-23,-1.0245756771052005e-22,6.570026580324432e-23)
sum e = 7.860420851294637e-13
sum de = 2.271919407036514e-28
Info: cfl dt = 1.5635665917736106 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4055e+04 | 2592 | 1 | 5.884e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95672.27228665024 (tsim/hr) [sph::Model][rank=0]
---------------- t = 582.9556277154305, dt = 1.5635665917736106 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (2.0%)
patch tree reduce : 1.27 us (0.6%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 641.00 ns (0.3%)
LB compute : 184.83 us (93.3%)
LB move op cnt : 0
LB apply : 2.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (58.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.60815326606512e-21,4.933186827412387e-21,9.585564206452268e-21)
sum a = (2.4161311141819394e-22,-9.129237073627188e-23,7.913052343471246e-23)
sum e = 7.860328546828038e-13
sum de = -5.932234007262009e-28
Info: cfl dt = 1.563526129678429 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4787e+04 | 2592 | 1 | 5.787e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97261.37299965721 (tsim/hr) [sph::Model][rank=0]
---------------- t = 584.5191943072041, dt = 1.563526129678429 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (2.0%)
patch tree reduce : 971.00 ns (0.5%)
gen split merge : 461.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 701.00 ns (0.4%)
LB compute : 180.69 us (93.3%)
LB move op cnt : 0
LB apply : 1.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1131422902250713e-21,4.7991737742604626e-21,9.719786398573924e-21)
sum a = (-3.34029709319452e-23,7.11794909259108e-23,-1.2992652451570957e-23)
sum e = 7.860250162206071e-13
sum de = 5.048709793414476e-29
Info: cfl dt = 1.5634864873436578 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4173e+04 | 2592 | 1 | 5.868e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95924.87756715194 (tsim/hr) [sph::Model][rank=0]
---------------- t = 586.0827204368825, dt = 1.5634864873436578 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 us (2.0%)
patch tree reduce : 1.10 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 182.91 us (92.4%)
LB move op cnt : 0
LB apply : 2.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (58.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3378485174321307e-21,5.037571111574716e-21,9.627454065706852e-21)
sum a = (1.2272575023420296e-23,4.644634285768062e-23,-1.3968473112356986e-22)
sum e = 7.860168971485035e-13
sum de = -4.0389678347315804e-28
Info: cfl dt = 1.56344768874895 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4742e+04 | 2592 | 1 | 5.793e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97157.07803331509 (tsim/hr) [sph::Model][rank=0]
---------------- t = 587.6462069242261, dt = 1.56344768874895 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.70 us (1.9%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 681.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.5%)
LB compute : 178.82 us (93.4%)
LB move op cnt : 0
LB apply : 2.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2864988311416694e-21,5.090759758505455e-21,9.310023619149188e-21)
sum a = (2.582889220410213e-23,9.453637713843618e-23,-2.746265554616e-22)
sum e = 7.860085483390084e-13
sum de = -4.543838814073028e-28
Info: cfl dt = 1.5634097518966077 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4675e+04 | 2592 | 1 | 5.802e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97010.05743006611 (tsim/hr) [sph::Model][rank=0]
---------------- t = 589.2096546129751, dt = 1.5634097518966077 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (1.7%)
patch tree reduce : 881.00 ns (0.4%)
gen split merge : 451.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.3%)
LB compute : 197.08 us (94.4%)
LB move op cnt : 0
LB apply : 1.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2183064477479362e-21,5.276221987965029e-21,8.775182542522392e-21)
sum a = (-1.241892162934811e-22,5.78939129603483e-23,1.358584736379707e-23)
sum e = 7.859999862164796e-13
sum de = -2.069971015299935e-27
Info: cfl dt = 1.5633726943763062 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9951e+04 | 2592 | 1 | 8.654e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65036.52789431812 (tsim/hr) [sph::Model][rank=0]
---------------- t = 590.7730643648717, dt = 1.5633726943763062 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.87 us (1.8%)
patch tree reduce : 1.34 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 201.41 us (92.9%)
LB move op cnt : 0
LB apply : 2.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.588024189039259e-21,5.338066266391104e-21,9.021719325918661e-21)
sum a = (-7.884744329900362e-23,-5.1589535459921724e-23,2.1117911793473026e-23)
sum e = 7.859912278289347e-13
sum de = 5.048709793414476e-28
Info: cfl dt = 1.563336533322403 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9558e+04 | 2592 | 1 | 8.769e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64180.96262856141 (tsim/hr) [sph::Model][rank=0]
---------------- t = 592.336437059248, dt = 0.23619830230643402 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (1.8%)
patch tree reduce : 1.34 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 216.05 us (93.4%)
LB move op cnt : 0
LB apply : 2.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.500113526109989e-21,5.2402226485200224e-21,9.032595052763144e-21)
sum a = (1.3020996701103772e-22,2.226893980733524e-22,-1.5615811209906456e-22)
sum e = 7.857464392749311e-13
sum de = -3.281661365719409e-28
Info: cfl dt = 1.563331462807419 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0873e+04 | 2592 | 1 | 8.396e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10127.950724568565 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 428 [SPH][rank=0]
Info: time since start : 112.263839985 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000301864 s
sph::RenderFieldGetter compute custom field took : 0.000236449 s
rho_t_ampl=0.00110566, rho_t_phi=3.14159 rad
eps_t_ampl=-1.41858e-05, eps_t_phi=3.31525e-10 rad
vx_t_ampl=-1.63426e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 603.75s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 592.5726353615545, dt = 1.563331462807419 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.30 us (3.0%)
patch tree reduce : 1.50 us (0.5%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 289.24 us (92.8%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3062171106772063e-21,5.6208072671725644e-21,8.76753201500493e-21)
sum a = (1.047148477678236e-22,-1.5659021644244808e-22,-7.520152411209352e-23)
sum e = 7.859845103795608e-13
sum de = 7.573064690121713e-29
Info: cfl dt = 1.5632960296871652 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3391e+04 | 2592 | 1 | 5.974e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94213.7120773738 (tsim/hr) [sph::Model][rank=0]
---------------- t = 594.135966824362, dt = 1.5632960296871652 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (1.7%)
patch tree reduce : 902.00 ns (0.4%)
gen split merge : 761.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.4%)
LB compute : 211.26 us (93.4%)
LB move op cnt : 0
LB apply : 2.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2380247272834736e-21,5.079453199455374e-21,8.713250761495005e-21)
sum a = (1.8959587920595643e-22,8.642844219941318e-23,-3.775578387684025e-23)
sum e = 7.859734820909145e-13
sum de = -2.271919407036514e-28
Info: cfl dt = 1.5632618580025208 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3642e+04 | 2592 | 1 | 5.939e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94757.67439509249 (tsim/hr) [sph::Model][rank=0]
---------------- t = 595.6992628540492, dt = 1.5632618580025208 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (1.7%)
patch tree reduce : 1.23 us (0.5%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.4%)
LB compute : 210.13 us (93.7%)
LB move op cnt : 0
LB apply : 2.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.819011287153308e-21,5.404573738203431e-21,8.683497973160603e-21)
sum a = (3.244529928262809e-22,1.106640900355265e-22,-3.628056589295271e-23)
sum e = 7.859642498470162e-13
sum de = -2.7767903863779616e-28
Info: cfl dt = 1.5632286287055555 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3381e+04 | 2592 | 1 | 5.975e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94189.28927449214 (tsim/hr) [sph::Model][rank=0]
---------------- t = 597.2625247120517, dt = 1.5632286287055555 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (2.0%)
patch tree reduce : 761.00 ns (0.4%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 661.00 ns (0.3%)
LB compute : 178.04 us (93.7%)
LB move op cnt : 0
LB apply : 1.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1674864674999324e-21,5.5965509591111074e-21,8.627936229894261e-21)
sum a = (-2.820381519503597e-23,1.2027224818231486e-22,-5.001477111683099e-23)
sum e = 7.859548663061535e-13
sum de = 4.796274303743752e-28
Info: cfl dt = 1.563196362050022 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4743e+04 | 2592 | 1 | 5.793e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97144.6143347342 (tsim/hr) [sph::Model][rank=0]
---------------- t = 598.8257533407573, dt = 1.563196362050022 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (1.8%)
patch tree reduce : 1.42 us (0.7%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.6%)
LB compute : 180.61 us (92.7%)
LB move op cnt : 0
LB apply : 2.45 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5322746389073709e-21,5.7920584709512535e-21,8.539018470236621e-21)
sum a = (3.9620134199562823e-22,1.0791397334066177e-22,-2.3138253550579295e-23)
sum e = 7.859453796820808e-13
sum de = -1.8932661725304283e-27
Info: cfl dt = 1.5631650726920934 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4489e+04 | 2592 | 1 | 5.826e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96591.28202022953 (tsim/hr) [sph::Model][rank=0]
---------------- t = 600.3889497028073, dt = 1.5631650726920934 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (2.0%)
patch tree reduce : 1.56 us (0.8%)
gen split merge : 882.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.4%)
LB compute : 186.35 us (92.5%)
LB move op cnt : 0
LB apply : 2.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.414310922466259e-22,5.95107561197124e-21,8.523856197684983e-21)
sum a = (5.0720652633403337e-23,-2.012992951088721e-22,-5.928968964060554e-23)
sum e = 7.859358085191287e-13
sum de = -1.1107161545511846e-27
Info: cfl dt = 1.5631347748414417 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2176e+04 | 2592 | 1 | 8.056e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69856.2523314028 (tsim/hr) [sph::Model][rank=0]
---------------- t = 601.9521147754994, dt = 1.5631347748414417 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 16.87 us (7.7%)
patch tree reduce : 1.34 us (0.6%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 190.16 us (86.9%)
LB move op cnt : 0
LB apply : 2.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.788720416537199e-22,5.394769157477346e-21,8.402923090906564e-21)
sum a = (2.4044490605508593e-23,2.5708741961570932e-23,5.1904651168505553e-23)
sum e = 7.859261717548312e-13
sum de = 1.7670484276950664e-28
Info: cfl dt = 1.5631054822133075 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3525e+04 | 2592 | 1 | 5.955e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94493.13758728023 (tsim/hr) [sph::Model][rank=0]
---------------- t = 603.5152495503407, dt = 0.23800157275252332 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (1.7%)
patch tree reduce : 781.00 ns (0.4%)
gen split merge : 441.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 520.00 ns (0.3%)
LB compute : 196.30 us (94.7%)
LB move op cnt : 0
LB apply : 2.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.197172030471082e-22,5.57832823918878e-21,8.502182349959965e-21)
sum a = (3.1671202761799384e-22,1.2931194925509087e-22,1.8531328713676984e-23)
sum e = 7.857338112666982e-13
sum de = 1.0854726055841122e-27
Info: cfl dt = 1.563101492339461 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5213e+04 | 2592 | 1 | 5.733e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14945.424823842677 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 436 [SPH][rank=0]
Info: time since start : 112.991226509 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00029165 s
sph::RenderFieldGetter compute custom field took : 0.000256498 s
rho_t_ampl=0.000980273, rho_t_phi=3.14159 rad
eps_t_ampl=-1.52861e-05, eps_t_phi=3.18802e-10 rad
vx_t_ampl=-2.00952e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 614.93s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 603.7532511230933, dt = 1.563101492339461 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.96 us (3.8%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.4%)
LB compute : 241.35 us (91.4%)
LB move op cnt : 0
LB apply : 3.28 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.73356540916598e-22,5.792729226228422e-21,8.527177245910776e-21)
sum a = (1.0878431040634267e-22,-1.0267299569128549e-22,1.2422154240246016e-22)
sum e = 7.859188571852092e-13
sum de = -9.592548607487504e-28
Info: cfl dt = 1.5630729836413788 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3913e+04 | 2592 | 1 | 5.903e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95334.40125092372 (tsim/hr) [sph::Model][rank=0]
---------------- t = 605.3163526154327, dt = 1.5630729836413788 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (2.0%)
patch tree reduce : 1.34 us (0.7%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 530.00 ns (0.3%)
LB compute : 184.07 us (93.3%)
LB move op cnt : 0
LB apply : 2.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1525788492961457e-22,5.450948923634504e-21,8.803946848198176e-21)
sum a = (-1.3476725166931618e-22,-1.4801725092157488e-22,-4.422668943592584e-23)
sum e = 7.859071306200164e-13
sum de = -1.0602290566170399e-27
Info: cfl dt = 1.5630459032415271 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4545e+04 | 2592 | 1 | 5.819e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96703.7907086749 (tsim/hr) [sph::Model][rank=0]
---------------- t = 606.8794255990741, dt = 1.5630459032415271 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (1.7%)
patch tree reduce : 871.00 ns (0.4%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 751.00 ns (0.4%)
LB compute : 194.29 us (93.9%)
LB move op cnt : 0
LB apply : 1.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.227689953307169e-22,5.184177675289377e-21,8.603170062296552e-21)
sum a = (-1.1553679415353835e-23,-2.3806622210080072e-23,-1.2297305347397214e-23)
sum e = 7.858974351688641e-13
sum de = -4.0389678347315804e-28
Info: cfl dt = 1.5630198635373809 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4380e+04 | 2592 | 1 | 5.840e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96344.9435957312 (tsim/hr) [sph::Model][rank=0]
---------------- t = 608.4424715023157, dt = 1.5630198635373809 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (1.8%)
patch tree reduce : 611.00 ns (0.3%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.6%)
LB compute : 184.50 us (93.6%)
LB move op cnt : 0
LB apply : 2.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (59.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.8145465865936695e-22,5.244009687883944e-21,8.608902676266956e-21)
sum a = (1.5344570005747154e-22,-1.6592858815149947e-22,-2.0618002460701306e-23)
sum e = 7.858877301748396e-13
sum de = 1.0349855076499675e-27
Info: cfl dt = 1.5629948806788114 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4567e+04 | 2592 | 1 | 5.816e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96748.79501386161 (tsim/hr) [sph::Model][rank=0]
---------------- t = 610.0054913658531, dt = 1.5629948806788114 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (1.9%)
patch tree reduce : 1.26 us (0.6%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 200.28 us (93.5%)
LB move op cnt : 0
LB apply : 2.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.930748204521352e-22,4.873627610026238e-21,8.570174136537904e-21)
sum a = (1.1928532125274203e-22,8.005935105625434e-23,-1.001286510897045e-22)
sum e = 7.858780583719389e-13
sum de = -1.2116903504194741e-27
Info: cfl dt = 1.5629709657237993 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4662e+04 | 2592 | 1 | 5.804e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96953.96400639878 (tsim/hr) [sph::Model][rank=0]
---------------- t = 611.568486246532, dt = 1.5629709657237993 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (1.9%)
patch tree reduce : 901.00 ns (0.5%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.3%)
LB compute : 176.69 us (93.8%)
LB move op cnt : 0
LB apply : 1.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4788709651652908e-23,5.191125929715555e-21,8.351538593663928e-21)
sum a = (-4.640727898500457e-23,2.6011559686768405e-22,-8.941923233464382e-23)
sum e = 7.858684385638772e-13
sum de = 2.8272774843121063e-27
Info: cfl dt = 1.5629481292618308 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4257e+04 | 2592 | 1 | 5.857e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96073.20010608197 (tsim/hr) [sph::Model][rank=0]
---------------- t = 613.1314572122558, dt = 1.5629481292618308 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (1.9%)
patch tree reduce : 1.05 us (0.6%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 174.75 us (92.8%)
LB move op cnt : 0
LB apply : 2.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (59.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.892014331878791e-22,5.7381958593879525e-21,8.220150227053886e-21)
sum a = (-1.517383229883137e-22,-4.060614345407792e-23,-1.0040230277087244e-22)
sum e = 7.85858889683456e-13
sum de = -1.4388822911231255e-27
Info: cfl dt = 1.5629263813618266 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4386e+04 | 2592 | 1 | 5.840e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96351.12649593549 (tsim/hr) [sph::Model][rank=0]
---------------- t = 614.6944053415176, dt = 0.23946154311443024 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (1.9%)
patch tree reduce : 1.11 us (0.5%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 194.57 us (93.4%)
LB move op cnt : 0
LB apply : 2.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.105629026847111e-22,5.493556325834014e-21,8.187524752004338e-21)
sum a = (-1.9663078622774967e-22,1.360309102822815e-22,2.550415366893424e-23)
sum e = 7.857208708102209e-13
sum de = -2.524354896707238e-29
Info: cfl dt = 1.5629235848318168 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5745e+04 | 2592 | 1 | 7.251e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11888.115436500275 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 444 [SPH][rank=0]
Info: time since start : 113.70541312 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000298209 s
sph::RenderFieldGetter compute custom field took : 0.000216209 s
rho_t_ampl=0.000830842, rho_t_phi=3.14159 rad
eps_t_ampl=-1.62329e-05, eps_t_phi=3.1255e-10 rad
vx_t_ampl=-2.33323e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 626.11s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 614.933866884632, dt = 1.5629235848318168 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.53 us (4.1%)
patch tree reduce : 1.53 us (0.7%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 211.34 us (90.8%)
LB move op cnt : 0
LB apply : 2.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.999989235115711e-22,5.727332191382126e-21,8.242460672457763e-21)
sum a = (1.1078694817167067e-22,2.3732556305147444e-23,1.0990574690597783e-22)
sum e = 7.858517176685737e-13
sum de = 7.573064690121713e-28
Info: cfl dt = 1.5629026573162759 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2269e+04 | 2592 | 1 | 8.032e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70047.66687952737 (tsim/hr) [sph::Model][rank=0]
---------------- t = 616.4967904694638, dt = 1.5629026573162759 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (1.8%)
patch tree reduce : 1.32 us (0.6%)
gen split merge : 851.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 223.03 us (93.4%)
LB move op cnt : 0
LB apply : 2.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4730008917486254e-22,5.6767206568320906e-21,8.480189276685495e-21)
sum a = (1.2168591908682113e-22,1.9118079930839425e-23,-3.170209401901253e-23)
sum e = 7.8584045651468e-13
sum de = -9.34011311781678e-28
Info: cfl dt = 1.5628832889481081 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2262e+04 | 2592 | 1 | 8.034e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70032.1478176447 (tsim/hr) [sph::Model][rank=0]
---------------- t = 618.0596931267801, dt = 1.5628832889481081 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (1.9%)
patch tree reduce : 1.33 us (0.6%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 207.89 us (93.0%)
LB move op cnt : 0
LB apply : 2.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1420170230998635e-22,5.7029924400804474e-21,8.319982968279203e-21)
sum a = (3.4636647145073536e-22,3.210130151604222e-23,1.4567805796964114e-23)
sum e = 7.858312700952571e-13
sum de = -2.347650053937731e-27
Info: cfl dt = 1.5628650336171623 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2509e+04 | 2592 | 1 | 7.973e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70565.9781995847 (tsim/hr) [sph::Model][rank=0]
---------------- t = 619.6225764157282, dt = 1.5628650336171623 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (1.9%)
patch tree reduce : 1.55 us (0.7%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 199.71 us (92.6%)
LB move op cnt : 0
LB apply : 2.94 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.61383959421144e-22,5.763232040809945e-21,8.378907709178024e-21)
sum a = (2.211245865882998e-23,5.650393612495557e-23,-6.237840543286336e-23)
sum e = 7.858222141568676e-13
sum de = 6.310887241768094e-28
Info: cfl dt = 1.5628479030993532 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4426e+04 | 2592 | 1 | 7.529e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74726.57816513252 (tsim/hr) [sph::Model][rank=0]
---------------- t = 621.1854414493454, dt = 1.5628479030993532 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.87 us (1.9%)
patch tree reduce : 1.53 us (0.7%)
gen split merge : 782.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 193.45 us (92.7%)
LB move op cnt : 0
LB apply : 2.81 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (59.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.88027418504546e-22,5.870504744826113e-21,8.221291477548462e-21)
sum a = (-2.525955255735664e-22,9.38379913171791e-23,-2.929896760227576e-23)
sum e = 7.858133236896515e-13
sum de = 2.9787387781145406e-27
Info: cfl dt = 1.562831904692565 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2457e+04 | 2592 | 1 | 7.986e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70451.16601725575 (tsim/hr) [sph::Model][rank=0]
---------------- t = 622.7482893524448, dt = 1.562831904692565 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (1.9%)
patch tree reduce : 1.33 us (0.6%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 196.49 us (92.7%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (58.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8157249072307183e-22,6.046277930353755e-21,8.201351181229066e-21)
sum a = (3.2046697342798386e-22,-1.533070208021627e-22,-5.078951091692385e-24)
sum e = 7.858046158851628e-13
sum de = -4.0389678347315804e-28
Info: cfl dt = 1.5628170452148187 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4402e+04 | 2592 | 1 | 7.534e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74672.48181674209 (tsim/hr) [sph::Model][rank=0]
---------------- t = 624.3111212571373, dt = 1.5628170452148187 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (1.8%)
patch tree reduce : 1.40 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.6%)
LB compute : 205.96 us (93.0%)
LB move op cnt : 0
LB apply : 2.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.232381706086786e-22,5.613566961405609e-21,8.212339617159031e-21)
sum a = (-2.1331943427214964e-22,1.0998307986495265e-22,1.0782704117105087e-23)
sum e = 7.857961077878655e-13
sum de = 1.2116903504194741e-27
Info: cfl dt = 1.5628033309490588 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2492e+04 | 2592 | 1 | 7.977e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70525.43630717619 (tsim/hr) [sph::Model][rank=0]
---------------- t = 625.8739383023521, dt = 0.2405443438186694 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.56 us (2.1%)
patch tree reduce : 1.40 us (0.7%)
gen split merge : 812.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 198.09 us (92.5%)
LB move op cnt : 0
LB apply : 2.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8755824322658434e-22,5.845779870877255e-21,8.22732776820787e-21)
sum a = (1.5994143537321493e-22,2.282046000972202e-22,-8.152922369740756e-24)
sum e = 7.857089507710683e-13
sum de = 7.573064690121713e-29
Info: cfl dt = 1.562801807508301 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5124e+04 | 2592 | 1 | 5.744e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15075.343371262063 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 452 [SPH][rank=0]
Info: time since start : 114.545646527 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000293843 s
sph::RenderFieldGetter compute custom field took : 0.000209478 s
rho_t_ampl=0.000661185, rho_t_phi=3.14159 rad
eps_t_ampl=-1.70024e-05, eps_t_phi=3.07429e-10 rad
vx_t_ampl=-2.59733e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 637.30s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 626.1144826461708, dt = 1.562801807508301 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.62 us (3.5%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 731.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 252.45 us (91.8%)
LB move op cnt : 0
LB apply : 3.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.742948914725213e-22,6.216707539151797e-21,8.212308937467918e-21)
sum a = (3.751094583518212e-23,-6.624365276977424e-23,9.866777539952023e-23)
sum e = 7.857898023729123e-13
sum de = 1.135959703518257e-27
Info: cfl dt = 1.5627889300483357 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4393e+04 | 2592 | 1 | 5.839e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96357.78989851028 (tsim/hr) [sph::Model][rank=0]
---------------- t = 627.6772844536791, dt = 1.5627889300483357 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (1.8%)
patch tree reduce : 1.37 us (0.6%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 207.64 us (93.4%)
LB move op cnt : 0
LB apply : 2.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.104450706210062e-22,5.883178489273677e-21,8.449975634391457e-21)
sum a = (-1.2815597955941925e-22,-6.184297462544609e-23,-1.1855733111074962e-22)
sum e = 7.857801182198259e-13
sum de = 7.068193710780266e-28
Info: cfl dt = 1.562777704479792 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2146e+04 | 2592 | 1 | 8.063e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69774.24692562685 (tsim/hr) [sph::Model][rank=0]
---------------- t = 629.2400733837275, dt = 1.562777704479792 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (2.2%)
patch tree reduce : 1.46 us (0.7%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 184.00 us (92.6%)
LB move op cnt : 0
LB apply : 2.53 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6126720384586805e-22,5.790010902210421e-21,8.094958384737648e-21)
sum a = (-1.6408150383038338e-22,-8.078545517741088e-23,-3.7563822295364436e-23)
sum e = 7.857723576740231e-13
sum de = 2.7263032884438168e-27
Info: cfl dt = 1.562767637301882 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3108e+04 | 2592 | 1 | 6.013e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93566.86115292924 (tsim/hr) [sph::Model][rank=0]
---------------- t = 630.8028510882073, dt = 1.562767637301882 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.33 us (1.9%)
patch tree reduce : 1.41 us (0.6%)
gen split merge : 801.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.4%)
LB compute : 217.06 us (93.5%)
LB move op cnt : 0
LB apply : 2.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (59.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.751164864531687e-23,5.648722240382216e-21,8.099542283812801e-21)
sum a = (-9.006093104268315e-23,1.844105638141802e-23,-6.520248744888982e-23)
sum e = 7.857648519845314e-13
sum de = -6.563322731438818e-28
Info: cfl dt = 1.5627587357454165 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4720e+04 | 2592 | 1 | 5.796e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97066.27938166299 (tsim/hr) [sph::Model][rank=0]
---------------- t = 632.3656187255092, dt = 1.5627587357454165 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (1.6%)
patch tree reduce : 1.14 us (0.5%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 620.00 ns (0.3%)
LB compute : 199.88 us (94.4%)
LB move op cnt : 0
LB apply : 2.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4377912161329217e-22,5.755189396194702e-21,7.976050121239994e-21)
sum a = (-2.8369417933322713e-22,-2.5838457587559067e-23,3.6389332387075586e-23)
sum e = 7.857576269139684e-13
sum de = -1.1612032524853294e-27
Info: cfl dt = 1.56275100326619 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4879e+04 | 2592 | 1 | 5.776e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97409.16594858705 (tsim/hr) [sph::Model][rank=0]
---------------- t = 633.9283774612546, dt = 1.56275100326619 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (1.8%)
patch tree reduce : 871.00 ns (0.4%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 181.24 us (93.0%)
LB move op cnt : 0
LB apply : 2.37 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.722992818085408e-22,5.680199598078269e-21,8.11229933890022e-21)
sum a = (-8.863597724812283e-23,-2.4204130963228987e-23,-1.1750427046244884e-22)
sum e = 7.857506963374413e-13
sum de = 1.6155871338926322e-27
Info: cfl dt = 1.5627444428378863 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4910e+04 | 2592 | 1 | 5.772e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97475.56505536906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 635.4911284645208, dt = 1.5627444428378863 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.76 us (1.9%)
patch tree reduce : 1.16 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 188.54 us (92.9%)
LB move op cnt : 0
LB apply : 2.70 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.564543895372597e-22,5.6437413208120416e-21,7.808421502101352e-21)
sum a = (-9.490063897555914e-23,4.5439457749256615e-24,-1.687997328192382e-22)
sum e = 7.857440737273514e-13
sum de = 1.2116903504194741e-27
Info: cfl dt = 1.5627390568946664 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4543e+04 | 2592 | 1 | 5.819e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96680.4207646476 (tsim/hr) [sph::Model][rank=0]
---------------- t = 637.0538729073587, dt = 0.24122550035087897 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.32 us (2.1%)
patch tree reduce : 991.00 ns (0.5%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 541.00 ns (0.3%)
LB compute : 191.78 us (93.8%)
LB move op cnt : 0
LB apply : 2.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.40022489924312e-22,5.667278733265432e-21,7.72762185272221e-21)
sum a = (1.6505072915911585e-22,9.0194018999143e-23,-3.1848186338589735e-23)
sum e = 7.85699277430483e-13
sum de = -2.069971015299935e-27
Info: cfl dt = 1.5627388505449558 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.0899e+04 | 2592 | 1 | 6.338e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13702.562858243255 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 460 [SPH][rank=0]
Info: time since start : 115.27323624 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000315424 s
sph::RenderFieldGetter compute custom field took : 0.000263228 s
rho_t_ampl=0.000475631, rho_t_phi=3.14159 rad
eps_t_ampl=-1.75755e-05, eps_t_phi=3.06613e-10 rad
vx_t_ampl=-2.79527e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 648.48s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 637.2950984077096, dt = 1.5627388505449558 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.91 us (4.1%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 711.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.4%)
LB compute : 217.90 us (90.7%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.1408387024628147e-22,5.8187025394252165e-21,7.694369557272991e-21)
sum a = (-4.6946450691054416e-23,4.9845940313690355e-23,-1.272661723962917e-22)
sum e = 7.857392698555242e-13
sum de = -2.524354896707238e-28
Info: cfl dt = 1.5627342977526832 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4330e+04 | 2592 | 1 | 5.847e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96216.63322878946 (tsim/hr) [sph::Model][rank=0]
---------------- t = 638.8578372582546, dt = 1.5627342977526832 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.8%)
patch tree reduce : 1.35 us (0.7%)
gen split merge : 941.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 182.72 us (92.4%)
LB move op cnt : 0
LB apply : 2.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (59.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.022291208145323e-22,5.864891582243487e-21,7.420929647799495e-21)
sum a = (-1.0927213242610206e-22,1.206567314657236e-22,-3.270523844822017e-25)
sum e = 7.857321117756855e-13
sum de = 6.058451752097371e-28
Info: cfl dt = 1.5627314502125267 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5002e+04 | 2592 | 1 | 5.760e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97675.34326406916 (tsim/hr) [sph::Model][rank=0]
---------------- t = 640.4205715560072, dt = 1.5627314502125267 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (1.7%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 620.00 ns (0.3%)
LB compute : 188.99 us (94.1%)
LB move op cnt : 0
LB apply : 2.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.396700702216263e-22,6.1088346856771104e-21,7.519604611037136e-21)
sum a = (7.158788139968963e-23,-5.241128087910316e-24,-9.25668050883361e-23)
sum e = 7.857265474940564e-13
sum de = 7.068193710780266e-28
Info: cfl dt = 1.5627297789597425 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4747e+04 | 2592 | 1 | 5.793e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97120.51778829165 (tsim/hr) [sph::Model][rank=0]
---------------- t = 641.9833030062197, dt = 1.5627297789597425 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (1.8%)
patch tree reduce : 1.11 us (0.5%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.4%)
LB compute : 193.77 us (93.3%)
LB move op cnt : 0
LB apply : 2.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.211258053694222e-22,6.0022198995165395e-21,7.302874726927449e-21)
sum a = (-4.486357904089757e-23,1.3976841149059347e-22,3.52560385425974e-23)
sum e = 7.857213345011529e-13
sum de = 6.815758221109542e-28
Info: cfl dt = 1.5627292865958036 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4600e+04 | 2592 | 1 | 5.812e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96802.03142970931 (tsim/hr) [sph::Model][rank=0]
---------------- t = 643.5460327851794, dt = 1.5627292865958036 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (2.0%)
patch tree reduce : 1.36 us (0.7%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.5%)
LB compute : 186.50 us (92.8%)
LB move op cnt : 0
LB apply : 2.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.854448014988989e-22,6.333932454242135e-21,7.457846652973805e-21)
sum a = (3.323961474243367e-22,1.5722477244736046e-22,1.196432037680473e-22)
sum e = 7.85716488767242e-13
sum de = -1.2621774483536189e-27
Info: cfl dt = 1.5627299727216684 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4779e+04 | 2592 | 1 | 5.788e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97191.93208241096 (tsim/hr) [sph::Model][rank=0]
---------------- t = 645.1087620717751, dt = 1.5627299727216684 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (2.2%)
patch tree reduce : 1.24 us (0.7%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 581.00 ns (0.3%)
LB compute : 175.73 us (93.0%)
LB move op cnt : 0
LB apply : 2.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.147876331632239e-23,6.593318975827614e-21,7.710753820789845e-21)
sum a = (-8.466279527139839e-23,-8.357330687123419e-24,-7.786460914420462e-23)
sum e = 7.857120194847056e-13
sum de = -1.5146129380243427e-27
Info: cfl dt = 1.5627318364617242 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4524e+04 | 2592 | 1 | 5.822e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96637.11452121512 (tsim/hr) [sph::Model][rank=0]
---------------- t = 646.6714920444967, dt = 1.5627318364617242 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (1.8%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 601.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 191.28 us (93.5%)
LB move op cnt : 0
LB apply : 2.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.6666594900771405e-22,6.450855689925515e-21,7.434746627604351e-21)
sum a = (3.6637359297165645e-22,2.413817165809339e-22,-1.5215912855682965e-22)
sum e = 7.857079352300398e-13
sum de = 1.4136387421560532e-27
Info: cfl dt = 1.5627348764051647 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3478e+04 | 2592 | 1 | 5.962e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94367.85027428131 (tsim/hr) [sph::Model][rank=0]
---------------- t = 648.2342238809584, dt = 0.24149028828992414 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.93 us (2.0%)
patch tree reduce : 1.14 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.5%)
LB compute : 181.38 us (92.6%)
LB move op cnt : 0
LB apply : 2.60 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2863799225895353e-23,6.704388347273882e-21,7.339950470402585e-21)
sum a = (1.366222590865591e-23,-3.1068023847300103e-23,-1.488604214094687e-22)
sum e = 7.856928443667571e-13
sum de = 1.9185097214975007e-27
Info: cfl dt = 1.5627359938370944 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4795e+04 | 2592 | 1 | 5.786e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15024.391558851034 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 468 [SPH][rank=0]
Info: time since start : 115.972550236 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000303587 s
sph::RenderFieldGetter compute custom field took : 0.000256228 s
rho_t_ampl=0.0002789, rho_t_phi=3.14159 rad
eps_t_ampl=-1.79383e-05, eps_t_phi=3.08122e-10 rad
vx_t_ampl=-2.92217e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 659.66s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 648.4757141692484, dt = 1.5627359938370944 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.87 us (3.9%)
patch tree reduce : 1.56 us (0.6%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 232.56 us (91.5%)
LB move op cnt : 0
LB apply : 2.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.2159498064738385e-25,6.622851464155416e-21,7.107719234678418e-21)
sum a = (-6.1523342886759175e-24,2.6248977315068584e-23,2.272910700140791e-23)
sum e = 7.857051144480785e-13
sum de = -2.2214323091023692e-27
Info: cfl dt = 1.5627398435645286 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1944e+04 | 2592 | 1 | 8.114e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69334.43580186758 (tsim/hr) [sph::Model][rank=0]
---------------- t = 650.0384501630855, dt = 1.5627398435645286 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (1.9%)
patch tree reduce : 1.34 us (0.6%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 200.04 us (92.7%)
LB move op cnt : 0
LB apply : 2.81 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.61266127357439e-23,6.708586184128128e-21,7.277313481904622e-21)
sum a = (-1.976995015736699e-22,-1.1385642706951548e-22,-5.331764292629799e-23)
sum e = 7.857011752512963e-13
sum de = 2.2214323091023692e-27
Info: cfl dt = 1.5627454119477973 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2129e+04 | 2592 | 1 | 8.067e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69735.25651170379 (tsim/hr) [sph::Model][rank=0]
---------------- t = 651.60119000665, dt = 1.5627454119477973 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.34 us (2.0%)
patch tree reduce : 1.45 us (0.7%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 205.45 us (92.6%)
LB move op cnt : 0
LB apply : 2.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.855626335626039e-22,6.4212397583574916e-21,7.134570937002637e-21)
sum a = (1.9824990602359577e-22,1.7615398306696724e-22,-3.796411188422198e-23)
sum e = 7.85698355091103e-13
sum de = 6.058451752097371e-28
Info: cfl dt = 1.562752147070227 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7200e+04 | 2592 | 1 | 6.968e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80742.74245364894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 653.1639354185978, dt = 1.562752147070227 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (1.9%)
patch tree reduce : 1.35 us (0.6%)
gen split merge : 762.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 202.40 us (93.0%)
LB move op cnt : 0
LB apply : 2.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.462428300668054e-23,6.923086661184958e-21,7.087239269740485e-21)
sum a = (1.6324546675046681e-22,1.6355116411993698e-23,-2.6808265104697666e-23)
sum e = 7.856959452398216e-13
sum de = 1.1107161545511846e-27
Info: cfl dt = 1.5627600468974374 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4445e+04 | 2592 | 1 | 5.832e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96467.74174439785 (tsim/hr) [sph::Model][rank=0]
---------------- t = 654.726687565668, dt = 1.5627600468974374 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (1.8%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 196.69 us (93.4%)
LB move op cnt : 0
LB apply : 2.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.001167555752759e-22,6.823795624031565e-21,7.054061295861671e-21)
sum a = (9.22545254539038e-23,-2.2572186282354762e-23,4.0089633630955835e-23)
sum e = 7.856939522812158e-13
sum de = 8.582806648804608e-28
Info: cfl dt = 1.5627691072237524 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4441e+04 | 2592 | 1 | 5.832e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96458.63961137622 (tsim/hr) [sph::Model][rank=0]
---------------- t = 656.2894476125655, dt = 1.5627691072237524 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (1.8%)
patch tree reduce : 1.10 us (0.6%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 590.00 ns (0.3%)
LB compute : 185.33 us (94.2%)
LB move op cnt : 0
LB apply : 1.62 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.442482968912538e-22,6.758042350736628e-21,7.168984818503205e-21)
sum a = (-7.002653000092028e-23,1.003540985177423e-22,-1.6026987891635337e-22)
sum e = 7.856923798279446e-13
sum de = 6.563322731438818e-28
Info: cfl dt = 1.5627793233794571 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4666e+04 | 2592 | 1 | 5.803e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96948.67910664775 (tsim/hr) [sph::Model][rank=0]
---------------- t = 657.8522167197892, dt = 1.5627793233794571 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.76 us (2.0%)
patch tree reduce : 1.45 us (0.8%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.5%)
LB compute : 178.02 us (92.7%)
LB move op cnt : 0
LB apply : 2.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4295752663264478e-22,7.01108076735445e-21,6.7619605372982344e-21)
sum a = (-2.653326547901457e-22,5.5298321713046125e-24,2.2790972908754e-22)
sum e = 7.856912307271974e-13
sum de = -4.543838814073028e-28
Info: cfl dt = 1.5627906901719677 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4865e+04 | 2592 | 1 | 5.777e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97379.83700310448 (tsim/hr) [sph::Model][rank=0]
---------------- t = 659.4149960431687, dt = 0.24133388761845254 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (1.9%)
patch tree reduce : 1.33 us (0.7%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 183.83 us (92.3%)
LB move op cnt : 0
LB apply : 2.83 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (52.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.969471312279623e-23,6.938376030277942e-21,7.120282410818061e-21)
sum a = (4.017751899746882e-23,-3.050519881590638e-23,1.241724483586534e-22)
sum e = 7.856903105823409e-13
sum de = 1.1612032524853294e-27
Info: cfl dt = 1.5627931004730116 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.0470e+04 | 2592 | 1 | 6.405e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13564.939287612324 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 476 [SPH][rank=0]
Info: time since start : 116.887214747 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000286111 s
sph::RenderFieldGetter compute custom field took : 0.000239883 s
rho_t_ampl=7.59854e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-1.80819e-05, eps_t_phi=3.09535e-10 rad
vx_t_ampl=-2.97499e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 670.84s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 659.6563299307871, dt = 1.5627931004730116 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.42 us (4.1%)
patch tree reduce : 1.56 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 228.92 us (90.9%)
LB move op cnt : 0
LB apply : 3.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.859139767768607e-24,6.886236842560766e-21,7.301820595757268e-21)
sum a = (3.860433310068722e-23,-5.0736022436965865e-24,-1.9301724533904188e-23)
sum e = 7.856906727143924e-13
sum de = 4.0389678347315804e-28
Info: cfl dt = 1.5628052346956691 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1242e+04 | 2592 | 1 | 8.296e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67812.54229371519 (tsim/hr) [sph::Model][rank=0]
---------------- t = 661.2191230312601, dt = 1.5628052346956691 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.34 us (2.0%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 982.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 198.91 us (92.7%)
LB move op cnt : 0
LB apply : 2.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (58.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2899041196163927e-22,6.898111457515435e-21,7.159545535871117e-21)
sum a = (1.550084555492254e-22,1.23115260671958e-23,-7.993092289116445e-23)
sum e = 7.856903210507365e-13
sum de = 4.543838814073028e-28
Info: cfl dt = 1.562814360197007 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.8043e+04 | 2592 | 1 | 6.813e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82575.46932717055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 662.7819282659558, dt = 1.562814360197007 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (2.0%)
patch tree reduce : 1.22 us (0.6%)
gen split merge : 841.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 180.79 us (92.5%)
LB move op cnt : 0
LB apply : 2.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (59.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.537550169563367e-22,6.931065118692339e-21,6.987252527468679e-21)
sum a = (-1.4730179032670265e-22,5.770641640073889e-23,3.709649739619958e-23)
sum e = 7.856905166758517e-13
sum de = 2.524354896707238e-28
Info: cfl dt = 1.5628023267764404 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4650e+04 | 2592 | 1 | 5.805e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96916.3609628111 (tsim/hr) [sph::Model][rank=0]
---------------- t = 664.3447426261528, dt = 1.5628023267764404 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.31 us (2.0%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.4%)
LB compute : 202.08 us (93.2%)
LB move op cnt : 0
LB apply : 2.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.448342277444914e-23,7.056653613937235e-21,7.136673086395847e-21)
sum a = (7.726844044557193e-23,-1.2921326157675138e-22,6.3439656927995704e-24)
sum e = 7.856911384701768e-13
sum de = 2.1709452111682245e-27
Info: cfl dt = 1.5627908892203306 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3981e+04 | 2592 | 1 | 5.894e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95462.51330142474 (tsim/hr) [sph::Model][rank=0]
---------------- t = 665.9075449529292, dt = 1.5627908892203306 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (1.8%)
patch tree reduce : 681.00 ns (0.4%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.4%)
LB compute : 180.77 us (94.1%)
LB move op cnt : 0
LB apply : 2.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9190080576880207e-22,6.7087915828732895e-21,7.122557314131552e-21)
sum a = (-2.943396111723184e-22,9.236588757873734e-23,3.086703032418005e-24)
sum e = 7.856921848905965e-13
sum de = -1.3631516442219084e-27
Info: cfl dt = 1.5627806481832232 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4666e+04 | 2592 | 1 | 5.803e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96949.6110466829 (tsim/hr) [sph::Model][rank=0]
---------------- t = 667.4703358421496, dt = 1.5627806481832232 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.9%)
patch tree reduce : 902.00 ns (0.5%)
gen split merge : 751.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 179.41 us (93.0%)
LB move op cnt : 0
LB apply : 2.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (54.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.102104829820254e-22,7.026261018364068e-21,7.12483594369266e-21)
sum a = (2.0152826255770242e-22,-7.176893417542371e-23,1.732122039245037e-23)
sum e = 7.856936535668189e-13
sum de = 1.9185097214975007e-27
Info: cfl dt = 1.5627716081939862 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4377e+04 | 2592 | 1 | 5.841e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96320.98402986299 (tsim/hr) [sph::Model][rank=0]
---------------- t = 669.0331164903328, dt = 1.5627716081939862 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (1.7%)
patch tree reduce : 1.13 us (0.5%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 210.11 us (93.6%)
LB move op cnt : 0
LB apply : 2.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7089175597465585e-22,6.785912392970777e-21,7.163027769274193e-21)
sum a = (1.1847335433827412e-23,1.649526933810906e-22,6.028218403444757e-23)
sum e = 7.856955412922488e-13
sum de = 2.6253290925755273e-27
Info: cfl dt = 1.5627637731574175 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3573e+04 | 2592 | 1 | 5.949e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94575.53839091693 (tsim/hr) [sph::Model][rank=0]
---------------- t = 670.5958880985268, dt = 0.24105759379904157 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (1.9%)
patch tree reduce : 1.30 us (0.7%)
gen split merge : 661.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.3%)
LB compute : 175.99 us (93.6%)
LB move op cnt : 0
LB apply : 2.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.330983868648762e-22,7.010528758226828e-21,7.211128334627122e-21)
sum a = (-1.594857069073871e-22,2.1757699522441435e-23,-1.402503197709747e-22)
sum e = 7.856919340238674e-13
sum de = 6.058451752097371e-28
Info: cfl dt = 1.5627632433507235 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5690e+04 | 2592 | 1 | 5.673e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15297.278404438423 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 484 [SPH][rank=0]
Info: time since start : 117.619419836 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000316636 s
sph::RenderFieldGetter compute custom field took : 0.00025668800000000003 s
rho_t_ampl=-0.000127973, rho_t_phi=3.14159 rad
eps_t_ampl=-1.80031e-05, eps_t_phi=3.1671e-10 rad
vx_t_ampl=-2.95254e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 682.02s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 670.8369456923258, dt = 1.5627632433507235 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.82 us (3.6%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 249.92 us (91.8%)
LB move op cnt : 0
LB apply : 3.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.722992818085409e-23,7.027268755957517e-21,6.967780348597583e-21)
sum a = (-2.4253098706063592e-23,5.429103543519798e-23,-5.541906237640757e-23)
sum e = 7.856972960735602e-13
sum de = 1.7165613297609217e-27
Info: cfl dt = 1.5627562335420322 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3565e+04 | 2592 | 1 | 5.950e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94557.48820272769 (tsim/hr) [sph::Model][rank=0]
---------------- t = 672.3997089356765, dt = 1.5627562335420322 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (1.8%)
patch tree reduce : 1.06 us (0.5%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 185.63 us (92.9%)
LB move op cnt : 0
LB apply : 2.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6267580616818201e-22,7.13744592660449e-21,6.947459448883677e-21)
sum a = (2.6338858776074274e-22,-1.3494574698997136e-22,-1.6544489203150126e-23)
sum e = 7.857005397423303e-13
sum de = 1.5146129380243427e-28
Info: cfl dt = 1.5627510043341535 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4727e+04 | 2592 | 1 | 5.795e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97080.13476398194 (tsim/hr) [sph::Model][rank=0]
---------------- t = 673.9624651692185, dt = 1.5627510043341535 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (1.7%)
patch tree reduce : 1.02 us (0.5%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 671.00 ns (0.3%)
LB compute : 205.71 us (94.4%)
LB move op cnt : 0
LB apply : 1.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.899051961048216e-22,6.778877485948983e-21,6.951980272541798e-21)
sum a = (-4.5916247609852035e-23,1.9148092418383215e-23,-4.296539147572964e-23)
sum e = 7.857037191065474e-13
sum de = 1.6155871338926322e-27
Info: cfl dt = 1.5627469886106993 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3887e+04 | 2592 | 1 | 5.906e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95257.10725864739 (tsim/hr) [sph::Model][rank=0]
---------------- t = 675.5252161735526, dt = 1.5627469886106993 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (1.8%)
patch tree reduce : 1.38 us (0.7%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 195.54 us (93.1%)
LB move op cnt : 0
LB apply : 2.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.174880822325759e-22,6.92919406449813e-21,6.864191590617451e-21)
sum a = (-3.244882957356056e-22,1.7162895493769888e-22,7.365619919997101e-23)
sum e = 7.857072955327483e-13
sum de = -2.524354896707238e-28
Info: cfl dt = 1.5627441874174501 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5582e+04 | 2592 | 1 | 7.285e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77229.88434519427 (tsim/hr) [sph::Model][rank=0]
---------------- t = 677.0879631621633, dt = 1.5627441874174501 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (2.1%)
patch tree reduce : 1.32 us (0.7%)
gen split merge : 851.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.6%)
LB compute : 182.98 us (92.0%)
LB move op cnt : 0
LB apply : 2.63 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.296941748785818e-22,7.316540794964046e-21,7.070422407602024e-21)
sum a = (-1.4485425566999872e-22,1.772870484958291e-23,-1.4576446095515766e-22)
sum e = 7.857112615677121e-13
sum de = -2.2971629560035864e-27
Info: cfl dt = 1.5627426013561774 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3594e+04 | 2592 | 1 | 5.946e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94619.45284398485 (tsim/hr) [sph::Model][rank=0]
---------------- t = 678.6507073495808, dt = 1.5627426013561774 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (1.9%)
patch tree reduce : 1.11 us (0.6%)
gen split merge : 821.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.5%)
LB compute : 181.94 us (92.7%)
LB move op cnt : 0
LB apply : 2.53 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.742948914725213e-22,7.22399261349167e-21,6.671180894075831e-21)
sum a = (4.024852598554235e-22,-9.755693217135214e-23,-5.0720567688008924e-23)
sum e = 7.857156091814722e-13
sum de = 5.806016262426647e-28
Info: cfl dt = 1.5627422304688898 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4252e+04 | 2592 | 1 | 7.567e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74343.49607594326 (tsim/hr) [sph::Model][rank=0]
---------------- t = 680.2134499509369, dt = 1.5627422304688898 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.05 us (1.8%)
patch tree reduce : 1.32 us (0.6%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.4%)
LB compute : 210.29 us (93.5%)
LB move op cnt : 0
LB apply : 2.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.822762536400143e-22,6.981471254497212e-21,6.666182291499522e-21)
sum a = (1.478100719870934e-22,-2.213109548589038e-22,-3.312673334412264e-23)
sum e = 7.857203295249224e-13
sum de = 3.534096855390133e-28
Info: cfl dt = 1.5627430741702535 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4282e+04 | 2592 | 1 | 5.853e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96111.93159886591 (tsim/hr) [sph::Model][rank=0]
---------------- t = 681.7761921814058, dt = 0.24136927245876905 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (1.5%)
patch tree reduce : 1.02 us (0.4%)
gen split merge : 561.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.3%)
LB compute : 239.94 us (94.7%)
LB move op cnt : 0
LB apply : 2.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0809811774276896e-22,6.83125095660986e-21,6.671933829936177e-21)
sum a = (2.62287778860891e-22,3.73626385136938e-23,9.378364611565238e-24)
sum e = 7.856975533877438e-13
sum de = 1.3883951931889808e-27
Info: cfl dt = 1.562743863289597 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5092e+04 | 2592 | 1 | 5.748e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15116.530625128014 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 492 [SPH][rank=0]
Info: time since start : 118.353530551 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000310277 s
sph::RenderFieldGetter compute custom field took : 0.00022431000000000003 s
rho_t_ampl=-0.000327821, rho_t_phi=3.14159 rad
eps_t_ampl=-1.77044e-05, eps_t_phi=3.28166e-10 rad
vx_t_ampl=-2.85553e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 693.20s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 682.0175614538646, dt = 1.562743863289597 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.98 us (3.9%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 234.49 us (91.1%)
LB move op cnt : 0
LB apply : 3.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.82745428917976e-22,6.920926765005366e-21,6.691719523965112e-21)
sum a = (-6.732585743758132e-23,-6.470795114106112e-23,6.547829295442046e-23)
sum e = 7.857242163795989e-13
sum de = 1.4893693890572703e-27
Info: cfl dt = 1.5627455608314818 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2241e+04 | 2592 | 1 | 8.039e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69979.11536869196 (tsim/hr) [sph::Model][rank=0]
---------------- t = 683.5803053171542, dt = 1.5627455608314818 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (1.8%)
patch tree reduce : 1.18 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.4%)
LB compute : 198.05 us (93.3%)
LB move op cnt : 0
LB apply : 2.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.633795690851245e-22,6.739986517294745e-21,6.837880344984834e-21)
sum a = (-1.2694926193159343e-22,1.6795835499913522e-23,-6.83242544776569e-23)
sum e = 7.857307020648904e-13
sum de = 2.1204581132340797e-27
Info: cfl dt = 1.5627490151258059 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7563e+04 | 2592 | 1 | 6.900e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81529.01411642296 (tsim/hr) [sph::Model][rank=0]
---------------- t = 685.1430508779856, dt = 1.5627490151258059 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.56 us (1.8%)
patch tree reduce : 1.62 us (0.8%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 711.00 ns (0.4%)
LB compute : 182.56 us (93.1%)
LB move op cnt : 0
LB apply : 2.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1607947991026196e-22,6.82993833025406e-21,6.626557015076859e-21)
sum a = (1.4882422829133002e-22,-3.09736644109508e-23,1.537072235723594e-22)
sum e = 7.857365341183553e-13
sum de = 7.825500179792437e-28
Info: cfl dt = 1.5627536793763313 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4441e+04 | 2592 | 1 | 5.832e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96458.09099911488 (tsim/hr) [sph::Model][rank=0]
---------------- t = 686.7057998931115, dt = 1.5627536793763313 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.04 us (2.1%)
patch tree reduce : 981.00 ns (0.5%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.5%)
LB compute : 183.23 us (93.1%)
LB move op cnt : 0
LB apply : 1.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.45304479510882e-22,6.744235703835281e-21,7.040253281086348e-21)
sum a = (2.0627168982878381e-22,3.632391058222835e-23,1.2238239335102842e-22)
sum e = 7.857426927103585e-13
sum de = -8.077935669463161e-28
Info: cfl dt = 1.5627595491611435 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4339e+04 | 2592 | 1 | 5.846e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96237.27897530097 (tsim/hr) [sph::Model][rank=0]
---------------- t = 688.2685535724878, dt = 1.5627595491611435 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (1.8%)
patch tree reduce : 1.41 us (0.7%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.5%)
LB compute : 192.75 us (92.7%)
LB move op cnt : 0
LB apply : 2.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.284023281315438e-22,6.853584860790819e-21,7.207031038102776e-21)
sum a = (-1.7134106572969738e-22,1.353678022972601e-22,-6.636168522377111e-23)
sum e = 7.857491671815544e-13
sum de = -2.0194839173657902e-27
Info: cfl dt = 1.5627666206228605 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3814e+04 | 2592 | 1 | 5.916e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95097.83979644087 (tsim/hr) [sph::Model][rank=0]
---------------- t = 689.8313131216489, dt = 1.5627666206228605 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (2.0%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.4%)
LB compute : 180.43 us (93.5%)
LB move op cnt : 0
LB apply : 2.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.417835119493117e-22,7.142661129118365e-21,6.955842405976285e-21)
sum a = (-2.091857845257675e-23,1.2670670486852022e-22,-5.260033631085234e-23)
sum e = 7.857559446647692e-13
sum de = -7.068193710780266e-28
Info: cfl dt = 1.5627748893534261 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4462e+04 | 2592 | 1 | 5.830e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96505.9557300777 (tsim/hr) [sph::Model][rank=0]
---------------- t = 691.3940797422717, dt = 1.5627748893534261 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (1.7%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 611.00 ns (0.3%)
LB compute : 177.89 us (93.7%)
LB move op cnt : 0
LB apply : 2.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.075111104011024e-22,7.333778242780676e-21,6.884392809586264e-21)
sum a = (-2.4482888552213407e-22,-1.0141858904816451e-22,-1.2969551676706473e-22)
sum e = 7.857630115735321e-13
sum de = 7.573064690121713e-28
Info: cfl dt = 1.5627843503336087 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4018e+04 | 2592 | 1 | 5.889e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95541.96563220986 (tsim/hr) [sph::Model][rank=0]
---------------- t = 692.9568546316252, dt = 0.24132258377812832 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 us (1.7%)
patch tree reduce : 1.20 us (0.6%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 194.90 us (93.3%)
LB move op cnt : 0
LB apply : 2.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0622034014249335e-22,7.131081774859866e-21,6.792853146322209e-21)
sum a = (-5.34421860067978e-23,-3.192126670772189e-22,-1.177662877674493e-22)
sum e = 7.857066047965182e-13
sum de = -1.1864468014524018e-27
Info: cfl dt = 1.562786432600308 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6304e+04 | 2592 | 1 | 7.140e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12168.07075064054 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 500 [SPH][rank=0]
Info: time since start : 119.099675191 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00030591 s
sph::RenderFieldGetter compute custom field took : 0.00022338900000000003 s
rho_t_ampl=-0.000518517, rho_t_phi=3.14159 rad
eps_t_ampl=-1.71938e-05, eps_t_phi=3.45482e-10 rad
vx_t_ampl=-2.68658e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 704.38s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 693.1981772154033, dt = 1.562786432600308 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.40 us (4.0%)
patch tree reduce : 1.49 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 237.65 us (91.2%)
LB move op cnt : 0
LB apply : 3.46 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6678378107141893e-22,6.605870764770239e-21,6.610248985764059e-21)
sum a = (-4.211316146896473e-23,-1.5084577116577082e-22,-1.1335710812409818e-22)
sum e = 7.857686361940569e-13
sum de = 1.6408306828597046e-27
Info: cfl dt = 1.5627967533295357 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4070e+04 | 2592 | 1 | 5.882e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95655.70538765464 (tsim/hr) [sph::Model][rank=0]
---------------- t = 694.7609636480037, dt = 1.5627967533295357 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (1.9%)
patch tree reduce : 1.15 us (0.6%)
gen split merge : 481.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 721.00 ns (0.4%)
LB compute : 182.28 us (93.3%)
LB move op cnt : 0
LB apply : 1.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2406084207775496e-22,6.501749647750149e-21,6.436540168283368e-21)
sum a = (-3.191383002952182e-23,-1.1938295586134314e-22,9.811760609670323e-23)
sum e = 7.857776885526221e-13
sum de = 3.7865323450608567e-28
Info: cfl dt = 1.5628087608141354 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4480e+04 | 2592 | 1 | 5.827e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96545.40027477744 (tsim/hr) [sph::Model][rank=0]
---------------- t = 696.3237604013332, dt = 1.5628087608141354 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (1.8%)
patch tree reduce : 1.17 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.4%)
LB compute : 194.73 us (93.0%)
LB move op cnt : 0
LB apply : 2.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.204220424524797e-23,6.339693247172846e-21,6.755125221078882e-21)
sum a = (1.450628637705537e-23,-1.6651289141776554e-23,8.718672698385403e-23)
sum e = 7.857855789344646e-13
sum de = 2.069971015299935e-27
Info: cfl dt = 1.5628219430111303 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4505e+04 | 2592 | 1 | 5.824e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96600.2791107375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 697.8865691621473, dt = 1.5628219430111303 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (1.8%)
patch tree reduce : 1.25 us (0.6%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 188.41 us (92.8%)
LB move op cnt : 0
LB apply : 2.79 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (58.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.61266127357439e-23,6.393982703003436e-21,6.882841114328213e-21)
sum a = (-1.3146161561436772e-22,9.58504075872206e-24,2.318940747046415e-22)
sum e = 7.857936911047815e-13
sum de = 1.4893693890572703e-27
Info: cfl dt = 1.5628362902052801 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6828e+04 | 2592 | 1 | 7.038e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79938.43173953216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 699.4493911051585, dt = 1.5628362902052801 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.08 us (1.8%)
patch tree reduce : 1.23 us (0.5%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 214.75 us (93.6%)
LB move op cnt : 0
LB apply : 2.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0457715018119857e-22,6.4294974297840766e-21,7.358329498926744e-21)
sum a = (3.7408246462601195e-23,4.8262737717849653e-23,-3.034925279189857e-23)
sum e = 7.858020142097324e-13
sum de = 3.660314600225495e-27
Info: cfl dt = 1.562851794235023 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2508e+04 | 2592 | 1 | 7.974e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70560.98617864131 (tsim/hr) [sph::Model][rank=0]
---------------- t = 701.0122273953638, dt = 1.562851794235023 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (1.7%)
patch tree reduce : 1.07 us (0.5%)
gen split merge : 540.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.30 us (0.6%)
LB compute : 216.45 us (93.8%)
LB move op cnt : 0
LB apply : 2.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (55.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.394354825826454e-23,6.535130153194342e-21,7.105976420209396e-21)
sum a = (-4.518772393560611e-23,-5.0786043249538846e-24,4.314414845804768e-23)
sum e = 7.858105318410534e-13
sum de = -7.573064690121713e-29
Info: cfl dt = 1.562868446413659 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2193e+04 | 2592 | 1 | 8.051e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69879.29772875692 (tsim/hr) [sph::Model][rank=0]
---------------- t = 702.5750791895988, dt = 1.562868446413659 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.34 us (2.1%)
patch tree reduce : 1.40 us (0.7%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 195.21 us (92.7%)
LB move op cnt : 0
LB apply : 2.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.69482077163913e-23,6.4854493317083206e-21,7.230834695485904e-21)
sum a = (-2.8894468475642683e-22,5.041039823000579e-23,-2.5873824284931268e-23)
sum e = 7.858192270461966e-13
sum de = 9.592548607487504e-28
Info: cfl dt = 1.5628862374776442 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2528e+04 | 2592 | 1 | 7.969e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70606.72603481729 (tsim/hr) [sph::Model][rank=0]
---------------- t = 704.1379476360124, dt = 0.24084534092969534 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.56 us (2.1%)
patch tree reduce : 1.22 us (0.6%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.4%)
LB compute : 202.21 us (92.8%)
LB move op cnt : 0
LB apply : 2.75 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.6807455133002795e-22,6.541067460671677e-21,7.170670099537173e-21)
sum a = (-5.716503826285626e-23,1.1163140980949427e-23,-6.689916171585635e-24)
sum e = 7.857181750376581e-13
sum de = -7.573064690121713e-28
Info: cfl dt = 1.5628895465996142 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6354e+04 | 2592 | 1 | 7.130e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12160.749226195592 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 508 [SPH][rank=0]
Info: time since start : 119.889115931 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000287263 s
sph::RenderFieldGetter compute custom field took : 0.000238812 s
rho_t_ampl=-0.000695262, rho_t_phi=3.14159 rad
eps_t_ampl=-1.64846e-05, eps_t_phi=3.6419e-10 rad
vx_t_ampl=-2.45011e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 715.56s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 704.3787929769421, dt = 1.5628895465996142 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.82 us (3.9%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.4%)
LB compute : 228.20 us (91.1%)
LB move op cnt : 0
LB apply : 3.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.3791012468505555e-22,6.553683436722164e-21,7.162524676929851e-21)
sum a = (3.6417197517195287e-22,-3.1865489113912437e-23,-6.434973933441465e-23)
sum e = 7.858260212896566e-13
sum de = 6.563322731438818e-28
Info: cfl dt = 1.562908180678465 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2602e+04 | 2592 | 1 | 7.950e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70768.29677430217 (tsim/hr) [sph::Model][rank=0]
---------------- t = 705.9416825235418, dt = 1.562908180678465 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.80 us (2.2%)
patch tree reduce : 1.39 us (0.6%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 205.08 us (92.6%)
LB move op cnt : 0
LB apply : 2.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.436612895495873e-22,6.470291546186455e-21,7.016893975459587e-21)
sum a = (-1.7826043595733707e-22,-1.2167498722001318e-22,1.2931478027700434e-22)
sum e = 7.858367116053757e-13
sum de = -3.0292258760486853e-28
Info: cfl dt = 1.5629283878038838 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5510e+04 | 2592 | 1 | 7.299e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77081.5867843162 (tsim/hr) [sph::Model][rank=0]
---------------- t = 707.5045907042203, dt = 1.5629283878038838 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (2.0%)
patch tree reduce : 1.55 us (0.7%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 205.76 us (92.7%)
LB move op cnt : 0
LB apply : 2.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3086818956191486e-22,6.210009614446285e-21,7.370343647521247e-21)
sum a = (-1.6678378107141893e-22,9.511205526208315e-23,9.040572792874704e-23)
sum e = 7.858458628852851e-13
sum de = -9.592548607487504e-28
Info: cfl dt = 1.5629497040209006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4442e+04 | 2592 | 1 | 5.832e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96471.23333228656 (tsim/hr) [sph::Model][rank=0]
---------------- t = 709.0675190920242, dt = 1.5629497040209006 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (1.8%)
patch tree reduce : 1.12 us (0.5%)
gen split merge : 721.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 194.67 us (94.1%)
LB move op cnt : 0
LB apply : 2.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.9624336831101985e-22,6.52807599004019e-21,7.481237222000567e-21)
sum a = (1.7946715358516292e-22,-6.486618740579701e-23,6.463235913183507e-23)
sum e = 7.858551075317732e-13
sum de = 2.0194839173657902e-27
Info: cfl dt = 1.5629721146520608 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.9372e+04 | 2592 | 1 | 6.583e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85466.79635363416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 710.6304687960451, dt = 1.5629721146520608 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (1.9%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.4%)
LB compute : 204.01 us (93.6%)
LB move op cnt : 0
LB apply : 2.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.326281350984855e-23,6.301511546060494e-21,7.56211455746126e-21)
sum a = (-1.2629455343139005e-22,-8.243821052216259e-23,1.5354025987195684e-23)
sum e = 7.85864437508824e-13
sum de = 4.0389678347315804e-28
Info: cfl dt = 1.5629956075130071 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.8624e+04 | 2592 | 1 | 6.711e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83843.72074082258 (tsim/hr) [sph::Model][rank=0]
---------------- t = 712.1934409106972, dt = 1.5629956075130071 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (1.9%)
patch tree reduce : 1.43 us (0.7%)
gen split merge : 821.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 188.14 us (92.5%)
LB move op cnt : 0
LB apply : 2.84 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.600931891625349e-22,6.159003329182891e-21,7.547602502355905e-21)
sum a = (1.292728352362368e-22,1.4988120943159403e-22,-2.1508975888433657e-23)
sum e = 7.858738345088669e-13
sum de = 7.068193710780266e-28
Info: cfl dt = 1.5630201699347595 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4270e+04 | 2592 | 1 | 5.855e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96102.473983776 (tsim/hr) [sph::Model][rank=0]
---------------- t = 713.7564365182102, dt = 1.5630201699347595 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (2.0%)
patch tree reduce : 1.27 us (0.6%)
gen split merge : 861.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.5%)
LB compute : 184.76 us (92.6%)
LB move op cnt : 0
LB apply : 2.65 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3826254438774132e-23,6.574842716829227e-21,7.485175184202236e-21)
sum a = (-6.99767849923264e-23,7.273417288300374e-23,2.0770692265026927e-22)
sum e = 7.85883279906776e-13
sum de = 1.6408306828597046e-27
Info: cfl dt = 1.5630457887221203 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3804e+04 | 2592 | 1 | 5.917e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95091.33904404312 (tsim/hr) [sph::Model][rank=0]
---------------- t = 715.319456688145, dt = 0.23995205033588718 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.93 us (1.9%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 520.00 ns (0.3%)
LB compute : 193.24 us (94.1%)
LB move op cnt : 0
LB apply : 2.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.881452505682509e-22,6.532071637504666e-21,7.714149422503794e-21)
sum a = (-1.9551393055093214e-23,3.3302929306799235e-23,9.675340076285246e-23)
sum e = 7.857310976087739e-13
sum de = -2.54959844567431e-27
Info: cfl dt = 1.5630502205893408 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6039e+04 | 2592 | 1 | 5.630e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15343.256493003202 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 516 [SPH][rank=0]
Info: time since start : 120.640180778 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00027514600000000004 s
sph::RenderFieldGetter compute custom field took : 0.00022771500000000002 s
rho_t_ampl=-0.000853619, rho_t_phi=3.14159 rad
eps_t_ampl=-1.55951e-05, eps_t_phi=3.89462e-10 rad
vx_t_ampl=-2.15221e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 726.74s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 715.5594087384809, dt = 1.5630502205893408 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.00 us (3.2%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 290.38 us (92.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.938964154327826e-22,6.579278045982566e-21,7.852068084374512e-21)
sum a = (-2.038582545731321e-23,-1.8199391920313534e-22,-2.172276056631894e-22)
sum e = 7.858905603923764e-13
sum de = -9.087677628146056e-28
Info: cfl dt = 1.5630766438619916 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1496e+04 | 2592 | 1 | 8.230e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68375.66383975765 (tsim/hr) [sph::Model][rank=0]
---------------- t = 717.1224589590703, dt = 1.5630766438619916 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (2.0%)
patch tree reduce : 1.50 us (0.7%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 206.43 us (92.6%)
LB move op cnt : 0
LB apply : 2.85 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.938964154327826e-22,6.1265792116458574e-21,7.267140646882643e-21)
sum a = (1.4474192823123833e-22,4.085103231442896e-23,8.749197768334323e-23)
sum e = 7.859017999737332e-13
sum de = 2.5243548967072378e-27
Info: cfl dt = 1.563104486466708 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3479e+04 | 2592 | 1 | 5.961e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94390.75086289411 (tsim/hr) [sph::Model][rank=0]
---------------- t = 718.6855356029323, dt = 1.563104486466708 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.97 us (1.7%)
patch tree reduce : 1.27 us (0.5%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.3%)
LB compute : 218.63 us (94.2%)
LB move op cnt : 0
LB apply : 2.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (59.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2981200694228666e-22,6.364671660197762e-21,7.642049781557819e-21)
sum a = (-3.28689341945244e-22,-7.986240194208852e-23,3.064953477908675e-23)
sum e = 7.859112918211364e-13
sum de = 1.135959703518257e-27
Info: cfl dt = 1.563133344387438 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4369e+04 | 2592 | 1 | 5.842e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96324.16366865137 (tsim/hr) [sph::Model][rank=0]
---------------- t = 720.248640089399, dt = 1.563133344387438 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 us (1.7%)
patch tree reduce : 1.09 us (0.5%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 601.00 ns (0.3%)
LB compute : 213.08 us (94.1%)
LB move op cnt : 0
LB apply : 2.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.870879914601937e-22,6.145434174580636e-21,7.645533752597983e-21)
sum a = (-4.2774288679954424e-23,-3.918071327082644e-23,6.104482027184341e-24)
sum e = 7.859207378025075e-13
sum de = -1.7670484276950664e-27
Info: cfl dt = 1.5631631984551457 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4174e+04 | 2592 | 1 | 5.868e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95902.09195213021 (tsim/hr) [sph::Model][rank=0]
---------------- t = 721.8117734337865, dt = 1.5631631984551457 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (1.8%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 721.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 194.50 us (93.2%)
LB move op cnt : 0
LB apply : 2.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.005859308532376e-22,6.11604931660092e-21,7.635892459050757e-21)
sum a = (4.529170705034429e-22,-5.2057599885542e-23,6.874628422201598e-24)
sum e = 7.859301354160579e-13
sum de = -8.582806648804608e-28
Info: cfl dt = 1.5631940328552407 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5393e+04 | 2592 | 1 | 7.323e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76840.99218961106 (tsim/hr) [sph::Model][rank=0]
---------------- t = 723.3749366322417, dt = 1.5631940328552407 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.72 us (2.2%)
patch tree reduce : 1.13 us (0.5%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 197.51 us (92.5%)
LB move op cnt : 0
LB apply : 2.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.633795690851245e-22,6.024544175631317e-21,7.647240769429054e-21)
sum a = (-1.5254708054738848e-22,1.3731758599095708e-22,3.567714263190242e-23)
sum e = 7.859394662802343e-13
sum de = 3.7865323450608567e-28
Info: cfl dt = 1.563225831341769 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2541e+04 | 2592 | 1 | 7.965e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70649.25329122807 (tsim/hr) [sph::Model][rank=0]
---------------- t = 724.9381306650969, dt = 1.563225831341769 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (2.1%)
patch tree reduce : 1.58 us (0.7%)
gen split merge : 751.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 200.70 us (92.7%)
LB move op cnt : 0
LB apply : 2.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.54694444000689e-22,6.387289592331014e-21,7.725524159551707e-21)
sum a = (4.647146609286765e-24,-1.4169494616250687e-22,7.327457986094827e-23)
sum e = 7.859487119570371e-13
sum de = 1.5903435849255598e-27
Info: cfl dt = 1.5632585772068042 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5873e+04 | 2592 | 1 | 7.225e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77886.32902702253 (tsim/hr) [sph::Model][rank=0]
---------------- t = 726.5013564964387, dt = 0.23866800358098317 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (1.7%)
patch tree reduce : 1.14 us (0.4%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.3%)
LB compute : 243.13 us (94.2%)
LB move op cnt : 0
LB apply : 2.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.462428300668054e-23,6.135366426712313e-21,7.772399099774772e-21)
sum a = (-1.6967220092525737e-22,-2.5939665111343956e-23,3.3414235498137395e-23)
sum e = 7.857440741160754e-13
sum de = -6.058451752097371e-28
Info: cfl dt = 1.5632639946589761 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6301e+04 | 2592 | 1 | 5.598e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15347.910603057497 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 524 [SPH][rank=0]
Info: time since start : 121.414127457 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00029445400000000004 s
sph::RenderFieldGetter compute custom field took : 0.000242677 s
rho_t_ampl=-0.000989624, rho_t_phi=3.14159 rad
eps_t_ampl=-1.45482e-05, eps_t_phi=4.28243e-10 rad
vx_t_ampl=-1.80055e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 737.92s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 726.7400245000197, dt = 1.5632639946589761 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.30 us (3.8%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.4%)
LB compute : 226.49 us (91.4%)
LB move op cnt : 0
LB apply : 2.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.896706084658407e-22,6.10859077466723e-21,7.819877676632467e-21)
sum a = (2.603300720710671e-22,-2.175289551858731e-22,2.6700758458218953e-22)
sum e = 7.859557500019124e-13
sum de = -1.2874209973206913e-27
Info: cfl dt = 1.5632974861680848 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3531e+04 | 2592 | 1 | 5.954e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94514.08211902034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 728.3032884946787, dt = 1.5632974861680848 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.89 us (1.8%)
patch tree reduce : 922.00 ns (0.4%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 203.82 us (93.5%)
LB move op cnt : 0
LB apply : 2.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3603234708478e-22,5.61885918844892e-21,8.419873998405173e-21)
sum a = (1.3107007425640295e-22,2.436738184576668e-23,1.4298151364061044e-22)
sum e = 7.859663991133733e-13
sum de = 1.5146129380243427e-28
Info: cfl dt = 1.5633322081013576 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4600e+04 | 2592 | 1 | 5.812e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96837.5341770535 (tsim/hr) [sph::Model][rank=0]
---------------- t = 729.8665859808467, dt = 1.5633322081013576 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.48 us (1.6%)
patch tree reduce : 1.18 us (0.6%)
gen split merge : 641.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 470.00 ns (0.2%)
LB compute : 202.55 us (94.5%)
LB move op cnt : 0
LB apply : 1.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.387317196657029e-22,5.8459836649447205e-21,8.546456781381051e-21)
sum a = (3.319757218678335e-23,-1.0087059161478348e-22,1.8021129898885665e-22)
sum e = 7.859752803842564e-13
sum de = -4.796274303743752e-28
Info: cfl dt = 1.563367826405664 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4196e+04 | 2592 | 1 | 5.865e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95963.24634287585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 731.429918188948, dt = 1.563367826405664 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (1.8%)
patch tree reduce : 1.04 us (0.5%)
gen split merge : 541.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.4%)
LB compute : 197.49 us (93.6%)
LB move op cnt : 0
LB apply : 2.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.828632609816809e-22,5.5903665312685e-21,8.857294589443153e-21)
sum a = (1.256141700880414e-22,7.715972353162884e-23,1.056454598430806e-22)
sum e = 7.859839796403665e-13
sum de = 2.0194839173657902e-28
Info: cfl dt = 1.563404318007251 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2741e+04 | 2592 | 1 | 7.917e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71091.9634349862 (tsim/hr) [sph::Model][rank=0]
---------------- t = 732.9932860153536, dt = 1.563404318007251 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 16.66 us (7.1%)
patch tree reduce : 1.58 us (0.7%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 207.37 us (88.0%)
LB move op cnt : 0
LB apply : 2.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.156092281438714e-22,5.850157431633517e-21,8.964174240604881e-21)
sum a = (-1.2882352548119526e-22,1.4010942430593283e-22,-2.6507384918089384e-23)
sum e = 7.859925020689992e-13
sum de = 1.1612032524853294e-27
Info: cfl dt = 1.5634416639448427 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2285e+04 | 2592 | 1 | 8.028e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70103.853306377 (tsim/hr) [sph::Model][rank=0]
---------------- t = 734.5566903333608, dt = 1.5634416639448427 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.97 us (1.8%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 203.21 us (92.9%)
LB move op cnt : 0
LB apply : 2.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.105629026847111e-22,6.118464356534268e-21,8.81942732655368e-21)
sum a = (-4.698496295577226e-23,3.4108828533726975e-23,1.2539962467644078e-22)
sum e = 7.860008310427748e-13
sum de = -2.7767903863779616e-28
Info: cfl dt = 1.5634798448891614 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1246e+04 | 2592 | 1 | 8.295e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67849.4810543565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 736.1201319973056, dt = 1.5634798448891614 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (1.9%)
patch tree reduce : 1.18 us (0.5%)
gen split merge : 831.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 216.27 us (93.1%)
LB move op cnt : 0
LB apply : 2.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.92077015620145e-22,6.088922240140287e-21,9.134235986214289e-21)
sum a = (-3.4853599569650738e-22,-1.9678699157227582e-22,-1.4945719247493048e-22)
sum e = 7.860089501470495e-13
sum de = -6.310887241768094e-29
Info: cfl dt = 1.5635188411237826 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2451e+04 | 2592 | 1 | 7.988e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70466.44404045747 (tsim/hr) [sph::Model][rank=0]
---------------- t = 737.6836118421948, dt = 0.23702841936369623 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (2.4%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 202.13 us (91.9%)
LB move op cnt : 0
LB apply : 2.85 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.3544533974311345e-23,5.8617881355783065e-21,8.88394383719648e-21)
sum a = (-2.481601964202278e-22,3.833570002504464e-23,-2.325451406684845e-23)
sum e = 7.857558084634347e-13
sum de = 3.9127500898962186e-28
Info: cfl dt = 1.5635250800211646 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4110e+04 | 2592 | 1 | 7.599e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11229.087177423944 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 532 [SPH][rank=0]
Info: time since start : 122.22215069600001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00028599100000000003 s
sph::RenderFieldGetter compute custom field took : 0.000259872 s
rho_t_ampl=-0.00109989, rho_t_phi=3.14159 rad
eps_t_ampl=-1.33705e-05, eps_t_phi=4.68019e-10 rad
vx_t_ampl=-1.40412e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 749.10s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 737.9206402615584, dt = 1.5635250800211646 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.40 us (3.8%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 741.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 253.14 us (91.4%)
LB move op cnt : 0
LB apply : 3.66 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.1490546522692886e-22,5.949605727201175e-21,8.862541631920271e-21)
sum a = (1.4208458196570695e-22,2.6925488825000383e-24,-4.102498475262074e-23)
sum e = 7.860150458662832e-13
sum de = 6.184669496932733e-28
Info: cfl dt = 1.5635647447900805 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4763e+04 | 2592 | 1 | 5.791e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97204.95069096408 (tsim/hr) [sph::Model][rank=0]
---------------- t = 739.4841653415796, dt = 1.5635647447900805 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.9%)
patch tree reduce : 1.29 us (0.7%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 410.00 ns (0.2%)
LB compute : 181.92 us (93.8%)
LB move op cnt : 0
LB apply : 2.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.69482077163913e-23,5.925899823589645e-21,8.784504123805016e-21)
sum a = (2.404962557413764e-22,-8.7212327254191e-23,2.5752046902878748e-23)
sum e = 7.860240274026053e-13
sum de = -8.582806648804608e-28
Info: cfl dt = 1.5636054215449942 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5138e+04 | 2592 | 1 | 5.742e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98023.49041340998 (tsim/hr) [sph::Model][rank=0]
---------------- t = 741.0477300863696, dt = 1.5636054215449942 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.82 us (2.0%)
patch tree reduce : 1.02 us (0.5%)
gen split merge : 681.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.5%)
LB compute : 180.00 us (93.2%)
LB move op cnt : 0
LB apply : 2.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.038723107758271e-22,5.719292756122276e-21,8.87697527018754e-21)
sum a = (1.1368820544708174e-22,-4.253097942421095e-23,-2.4940974337181884e-23)
sum e = 7.860314110179732e-13
sum de = 1.135959703518257e-28
Info: cfl dt = 1.563646854155677 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4879e+04 | 2592 | 1 | 5.775e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97463.51394562653 (tsim/hr) [sph::Model][rank=0]
---------------- t = 742.6113355079146, dt = 1.563646854155677 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (1.8%)
patch tree reduce : 1.03 us (0.5%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 201.17 us (93.5%)
LB move op cnt : 0
LB apply : 2.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.650811368340572e-22,5.687691035904739e-21,8.798344452702876e-21)
sum a = (-4.518772393560611e-23,-2.885541463220224e-23,1.3194821479287525e-23)
sum e = 7.860384931125929e-13
sum de = -1.7670484276950664e-28
Info: cfl dt = 1.563688001342744 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4366e+04 | 2592 | 1 | 5.842e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96351.93575772307 (tsim/hr) [sph::Model][rank=0]
---------------- t = 744.1749823620703, dt = 1.563688001342744 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (2.1%)
patch tree reduce : 1.13 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 591.00 ns (0.3%)
LB compute : 181.88 us (93.1%)
LB move op cnt : 0
LB apply : 2.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.526988343367085e-22,5.653274711007405e-21,8.848792495309511e-21)
sum a = (-6.844913182518516e-23,-2.1312175803840257e-23,5.647330882297372e-23)
sum e = 7.86045287568389e-13
sum de = -1.262177448353619e-28
Info: cfl dt = 1.5637291797551418 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4819e+04 | 2592 | 1 | 5.783e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97337.58408261856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 745.738670363413, dt = 1.5637291797551418 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (1.9%)
patch tree reduce : 761.00 ns (0.4%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.4%)
LB compute : 181.14 us (93.5%)
LB move op cnt : 0
LB apply : 2.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3685394206542737e-22,5.625836327073636e-21,8.970938481881079e-21)
sum a = (1.5920970234357584e-22,-1.8176083976770754e-23,1.1083626561910802e-22)
sum e = 7.860517812641765e-13
sum de = -7.446846945286351e-28
Info: cfl dt = 1.563771048692896 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4846e+04 | 2592 | 1 | 5.780e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97399.61869982885 (tsim/hr) [sph::Model][rank=0]
---------------- t = 747.3023995431681, dt = 1.563771048692896 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (1.9%)
patch tree reduce : 641.00 ns (0.3%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 201.03 us (93.5%)
LB move op cnt : 0
LB apply : 2.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.542241922342983e-22,5.599888688719987e-21,9.186765496121258e-21)
sum a = (-2.738222021438859e-22,1.7642428350302893e-24,6.118090808195898e-23)
sum e = 7.860579616893872e-13
sum de = -2.145701662201152e-28
Info: cfl dt = 1.5638135868654675 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4512e+04 | 2592 | 1 | 5.823e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96674.83694069715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 748.866170591861, dt = 0.23508543123625714 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (1.8%)
patch tree reduce : 1.33 us (0.6%)
gen split merge : 741.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 711.00 ns (0.3%)
LB compute : 197.08 us (93.6%)
LB move op cnt : 0
LB apply : 2.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.1901344013016575e-22,5.615876092610983e-21,9.162323431016646e-21)
sum a = (-6.376347295118055e-23,4.5261137940224505e-23,-7.358156625523103e-24)
sum e = 7.857651398773016e-13
sum de = -7.825500179792437e-28
Info: cfl dt = 1.5638202069180651 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6273e+04 | 2592 | 1 | 5.601e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15108.619479764433 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 540 [SPH][rank=0]
Info: time since start : 122.91704923700001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00029080800000000004 s
sph::RenderFieldGetter compute custom field took : 0.000249959 s
rho_t_ampl=-0.00118168, rho_t_phi=3.14159 rad
eps_t_ampl=-1.20922e-05, eps_t_phi=5.24773e-10 rad
vx_t_ampl=-9.73023e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 760.28s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 749.1012560230972, dt = 1.5638202069180651 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.04 us (3.8%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 821.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 240.61 us (91.1%)
LB move op cnt : 0
LB apply : 3.40 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8386106581367114e-22,5.691769324270589e-21,9.142760329208313e-21)
sum a = (8.588235032079685e-24,-8.331867711580314e-23,3.18598808668262e-23)
sum e = 7.860625138455153e-13
sum de = -3.281661365719409e-28
Info: cfl dt = 1.5638633314435446 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4549e+04 | 2592 | 1 | 5.818e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96758.86607352368 (tsim/hr) [sph::Model][rank=0]
---------------- t = 750.6650762300153, dt = 1.5638633314435446 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.87 us (1.0%)
patch tree reduce : 1.07 us (0.3%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.1%)
LB compute : 359.00 us (96.7%)
LB move op cnt : 0
LB apply : 2.22 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.5451823414934613e-22,5.460940048142816e-21,9.2232498083932e-21)
sum a = (-2.2342248504979794e-22,2.0071509213496206e-23,9.746507728964536e-23)
sum e = 7.860689197879134e-13
sum de = 5.048709793414476e-29
Info: cfl dt = 1.5639072299125103 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4774e+04 | 2592 | 1 | 5.789e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97251.09153518642 (tsim/hr) [sph::Model][rank=0]
---------------- t = 752.2289395614589, dt = 1.5639072299125103 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.87 us (2.0%)
patch tree reduce : 1.02 us (0.5%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.4%)
LB compute : 183.80 us (93.0%)
LB move op cnt : 0
LB apply : 2.72 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8280488319404291e-22,5.57316197934465e-21,9.42697492794923e-21)
sum a = (-2.4690212910611145e-22,1.3094270296423717e-22,4.999180681813924e-23)
sum e = 7.860740702826127e-13
sum de = -8.835242138475332e-28
Info: cfl dt = 1.5639517339542262 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5190e+04 | 2592 | 1 | 5.736e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98157.87767940685 (tsim/hr) [sph::Model][rank=0]
---------------- t = 753.7928467913714, dt = 1.5639517339542262 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (2.0%)
patch tree reduce : 891.00 ns (0.4%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.5%)
LB compute : 183.93 us (92.7%)
LB move op cnt : 0
LB apply : 2.50 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.845648287306136e-22,5.864649476496016e-21,9.468037805447321e-21)
sum a = (3.3352904987812e-22,2.344917523854976e-22,-2.9970780639925424e-23)
sum e = 7.860788282670189e-13
sum de = -5.048709793414476e-28
Info: cfl dt = 1.5639968157893396 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5030e+04 | 2592 | 1 | 5.756e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97812.54664667873 (tsim/hr) [sph::Model][rank=0]
---------------- t = 755.3567985253256, dt = 1.5639968157893396 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (2.1%)
patch tree reduce : 1.19 us (0.6%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 691.00 ns (0.4%)
LB compute : 175.05 us (93.0%)
LB move op cnt : 0
LB apply : 2.46 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.1613785769789994e-22,6.312368193601397e-21,9.358634786306497e-21)
sum a = (-1.3363755857092603e-22,-3.413009051320662e-23,1.308643331363579e-22)
sum e = 7.860832175494644e-13
sum de = -3.34477023813709e-28
Info: cfl dt = 1.5640424200291867 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3016e+04 | 2592 | 1 | 6.026e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93439.91724817725 (tsim/hr) [sph::Model][rank=0]
---------------- t = 756.920795341115, dt = 1.5640424200291867 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (1.8%)
patch tree reduce : 1.20 us (0.6%)
gen split merge : 611.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 721.00 ns (0.3%)
LB compute : 197.73 us (93.7%)
LB move op cnt : 0
LB apply : 2.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7376733840692169e-22,6.048926150014887e-21,9.689084957506789e-21)
sum a = (8.844983463531992e-23,-9.844757843913035e-23,-4.5688116734282064e-23)
sum e = 7.860872296177495e-13
sum de = -3.660314600225495e-28
Info: cfl dt = 1.564088429445527 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2934e+04 | 2592 | 1 | 7.870e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71542.54449493655 (tsim/hr) [sph::Model][rank=0]
---------------- t = 758.4848377611441, dt = 1.564088429445527 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.82 us (1.8%)
patch tree reduce : 1.31 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 201.71 us (93.0%)
LB move op cnt : 0
LB apply : 2.76 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3843875423908417e-22,5.844645865207556e-21,9.479556942280841e-21)
sum a = (-1.2041501435113219e-23,1.285077048520377e-22,1.1349790321473354e-22)
sum e = 7.86090856604179e-13
sum de = 1.8932661725304283e-28
Info: cfl dt = 1.5641348894659814 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2976e+04 | 2592 | 1 | 7.860e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71634.48188031993 (tsim/hr) [sph::Model][rank=0]
---------------- t = 760.0489261905897, dt = 0.23294559404632764 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (1.9%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 205.50 us (93.2%)
LB move op cnt : 0
LB apply : 2.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.011729381949041e-23,6.0520722209313824e-21,9.630486284734193e-21)
sum a = (2.299824074734044e-22,-6.48144365500824e-23,-3.807524688345148e-23)
sum e = 7.857711625367439e-13
sum de = -6.941975965944904e-29
Info: cfl dt = 1.5641419341814253 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.8752e+04 | 2592 | 1 | 6.689e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12537.543314251665 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 548 [SPH][rank=0]
Info: time since start : 123.818065794 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00030355700000000003 s
sph::RenderFieldGetter compute custom field took : 0.00021895200000000001 s
rho_t_ampl=-0.00123298, rho_t_phi=3.14159 rad
eps_t_ampl=-1.07457e-05, eps_t_phi=5.94179e-10 rad
vx_t_ampl=-5.18221e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 771.46s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 760.281871784636, dt = 1.5641419341814253 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.07 us (4.0%)
patch tree reduce : 1.49 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 226.10 us (90.8%)
LB move op cnt : 0
LB apply : 3.43 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.383209221753793e-22,5.928173651885694e-21,9.55327704568418e-21)
sum a = (-2.0596359171104103e-22,3.674290697265799e-23,4.1337772623119034e-23)
sum e = 7.860934247873923e-13
sum de = 9.466330862652142e-29
Info: cfl dt = 1.5641888782264008 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4218e+04 | 2592 | 1 | 5.862e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96059.5556664908 (tsim/hr) [sph::Model][rank=0]
---------------- t = 761.8460137188174, dt = 1.5641888782264008 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (1.9%)
patch tree reduce : 1.13 us (0.6%)
gen split merge : 581.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 681.00 ns (0.3%)
LB compute : 186.32 us (94.0%)
LB move op cnt : 0
LB apply : 2.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.284034046199727e-22,6.065079537755123e-21,9.680043746836591e-21)
sum a = (-3.591653807586329e-22,1.8657517373450641e-22,4.86932524270506e-23)
sum e = 7.860966084142448e-13
sum de = 2.461246024289557e-28
Info: cfl dt = 1.5642363454793276 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5334e+04 | 2592 | 1 | 5.718e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98487.92937665796 (tsim/hr) [sph::Model][rank=0]
---------------- t = 763.4102025970438, dt = 1.5642363454793276 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (1.7%)
patch tree reduce : 761.00 ns (0.4%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.5%)
LB compute : 184.85 us (93.4%)
LB move op cnt : 0
LB apply : 2.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (59.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.112515329105295e-22,6.4740870101082835e-21,9.761964181914436e-21)
sum a = (-1.67682400581502e-22,-4.3199829146615413e-23,-1.0221792584903183e-22)
sum e = 7.860990170564114e-13
sum de = -8.835242138475332e-29
Info: cfl dt = 1.564284252316653 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.0727e+04 | 2592 | 1 | 6.364e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88481.31925671364 (tsim/hr) [sph::Model][rank=0]
---------------- t = 764.9744389425232, dt = 1.564284252316653 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (1.8%)
patch tree reduce : 941.00 ns (0.4%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 208.79 us (93.4%)
LB move op cnt : 0
LB apply : 2.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (58.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0205236653366318e-21,6.226807380574052e-21,9.484035915204784e-21)
sum a = (-1.483107314284254e-22,7.471479647618183e-24,7.078335905458423e-23)
sum e = 7.861009798090686e-13
sum de = -1.8932661725304283e-28
Info: cfl dt = 1.564331906507862 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4202e+04 | 2592 | 1 | 7.579e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74307.43620257125 (tsim/hr) [sph::Model][rank=0]
---------------- t = 766.5387231948398, dt = 1.564331906507862 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (1.9%)
patch tree reduce : 1.27 us (0.6%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 206.65 us (93.1%)
LB move op cnt : 0
LB apply : 2.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2313654772452665e-21,6.2781458341206376e-21,9.730076175026856e-21)
sum a = (-8.599788711495038e-23,-1.8932268282811421e-22,-1.8008581164401628e-23)
sum e = 7.861025292615049e-13
sum de = 3.6287601640166543e-29
Info: cfl dt = 1.564377548553052 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4295e+04 | 2592 | 1 | 7.558e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74511.82791573576 (tsim/hr) [sph::Model][rank=0]
---------------- t = 768.1030551013476, dt = 1.564377548553052 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (2.2%)
patch tree reduce : 891.00 ns (0.4%)
gen split merge : 882.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 201.18 us (93.0%)
LB move op cnt : 0
LB apply : 2.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (59.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.323332765391483e-21,5.828017693453845e-21,9.632453922408823e-21)
sum a = (2.9397695401289203e-23,1.80390846184255e-23,1.0726790780321177e-22)
sum e = 7.861036617263569e-13
sum de = 2.524354896707238e-29
Info: cfl dt = 1.564423559406091 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.9338e+04 | 2592 | 1 | 6.589e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85471.67363684662 (tsim/hr) [sph::Model][rank=0]
---------------- t = 769.6674326499007, dt = 1.564423559406091 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (1.7%)
patch tree reduce : 1.30 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 752.00 ns (0.3%)
LB compute : 201.65 us (93.8%)
LB move op cnt : 0
LB apply : 2.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1913383967818518e-21,6.018442388690084e-21,9.898256227896315e-21)
sum a = (2.064385763092278e-22,1.248180493658272e-22,7.949756580213307e-23)
sum e = 7.861043761143415e-13
sum de = 5.5220263365470826e-30
Info: cfl dt = 1.5644699161616822 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6626e+04 | 2592 | 1 | 5.559e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101310.50838500325 (tsim/hr) [sph::Model][rank=0]
---------------- t = 771.2318562093068, dt = 0.23063133686798665 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.59 us (1.8%)
patch tree reduce : 791.00 ns (0.4%)
gen split merge : 711.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.5%)
LB compute : 185.99 us (93.3%)
LB move op cnt : 0
LB apply : 2.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0056065814692525e-21,6.130788281243979e-21,9.894868569135108e-21)
sum a = (9.096596926355253e-23,1.2299152497769852e-23,1.34092342909573e-22)
sum e = 7.857733066345489e-13
sum de = -7.099748146989106e-30
Info: cfl dt = 1.5644767777300548 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6490e+04 | 2592 | 1 | 5.575e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14891.792736132 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 556 [SPH][rank=0]
Info: time since start : 124.559009544 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00029882000000000004 s
sph::RenderFieldGetter compute custom field took : 0.000234565 s
rho_t_ampl=-0.00125257, rho_t_phi=3.14159 rad
eps_t_ampl=-9.36509e-06, eps_t_phi=6.89861e-10 rad
vx_t_ampl=-5.12526e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 782.64s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 771.4624875461748, dt = 1.5644767777300548 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.41 us (3.5%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 247.65 us (91.7%)
LB move op cnt : 0
LB apply : 3.50 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.758732037340983e-22,6.137026465789422e-21,1.0110948558903647e-20)
sum a = (2.4339751301678747e-22,-2.8813993889159348e-24,-1.3691688816873943e-22)
sum e = 7.861047202016431e-13
sum de = 3.944304526105059e-30
Info: cfl dt = 1.56448647811172 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5898e+04 | 2592 | 1 | 5.647e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99731.68798977454 (tsim/hr) [sph::Model][rank=0]
---------------- t = 773.0269643239048, dt = 1.56448647811172 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (1.9%)
patch tree reduce : 881.00 ns (0.4%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 631.00 ns (0.3%)
LB compute : 182.95 us (93.4%)
LB move op cnt : 0
LB apply : 2.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (59.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.7292709668447655e-22,6.120635485457737e-21,9.684750114452097e-21)
sum a = (2.5152360087225297e-22,8.586319448079396e-23,2.754099815055971e-23)
sum e = 7.861043413755281e-13
sum de = -1.8932661725304283e-29
Info: cfl dt = 1.5644403458054505 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6069e+04 | 2592 | 1 | 5.626e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100103.06003566275 (tsim/hr) [sph::Model][rank=0]
---------------- t = 774.5914508020165, dt = 1.5644403458054505 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (2.2%)
patch tree reduce : 791.00 ns (0.4%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 178.25 us (92.4%)
LB move op cnt : 0
LB apply : 2.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6342389067006745e-23,6.3243942500136815e-21,9.856482432805149e-21)
sum a = (6.959166234514794e-23,-1.5980523835371795e-22,1.1022514430128334e-22)
sum e = 7.86103732720967e-13
sum de = -6.941975965944904e-29
Info: cfl dt = 1.564394111178436 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6436e+04 | 2592 | 1 | 5.582e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100897.18370714068 (tsim/hr) [sph::Model][rank=0]
---------------- t = 776.155891147822, dt = 1.564394111178436 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.10 us (1.9%)
patch tree reduce : 1.27 us (0.6%)
gen split merge : 902.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 661.00 ns (0.3%)
LB compute : 197.92 us (93.6%)
LB move op cnt : 0
LB apply : 2.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.653741022606761e-24,5.88223493878809e-21,1.0093595206552401e-20)
sum a = (-2.377490475248367e-23,-9.670800752368494e-23,-1.4805224964903778e-24)
sum e = 7.861026678503938e-13
sum de = -1.2306230121447784e-28
Info: cfl dt = 1.5643460092744506 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6592e+04 | 2592 | 1 | 5.563e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101233.02448015104 (tsim/hr) [sph::Model][rank=0]
---------------- t = 777.7202852590004, dt = 1.5643460092744506 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (1.8%)
patch tree reduce : 881.00 ns (0.4%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 721.00 ns (0.4%)
LB compute : 185.85 us (93.9%)
LB move op cnt : 0
LB apply : 1.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1512599666321467e-22,5.780360370543207e-21,1.0003903313431064e-20)
sum a = (7.430299606229777e-23,-1.4506486961767443e-23,-4.338822277701541e-23)
sum e = 7.861011867449592e-13
sum de = -1.735493991486226e-28
Info: cfl dt = 1.564297629456696 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6578e+04 | 2592 | 1 | 5.565e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101199.54403049313 (tsim/hr) [sph::Model][rank=0]
---------------- t = 779.2846312682749, dt = 1.564297629456696 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.98 us (2.0%)
patch tree reduce : 1.05 us (0.5%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.6%)
LB compute : 182.48 us (92.5%)
LB move op cnt : 0
LB apply : 2.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.226219743731931e-23,5.821870173198259e-21,9.903252147548969e-21)
sum a = (-3.2889474069040587e-22,-1.3026873833167486e-23,3.9961300601445116e-23)
sum e = 7.860992932395979e-13
sum de = -1.8932661725304283e-29
Info: cfl dt = 1.5642497151421595 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6323e+04 | 2592 | 1 | 5.595e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100643.38040736811 (tsim/hr) [sph::Model][rank=0]
---------------- t = 780.8489288977316, dt = 1.5642497151421595 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (1.9%)
patch tree reduce : 1.22 us (0.6%)
gen split merge : 872.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.4%)
LB compute : 179.69 us (93.3%)
LB move op cnt : 0
LB apply : 2.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (58.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.566889771762405e-22,5.802689460691075e-21,1.0030953331550476e-20)
sum a = (-2.595469893551376e-22,1.1957717200880697e-22,1.0604970898366284e-22)
sum e = 7.860969916757603e-13
sum de = -1.3883951931889808e-28
Info: cfl dt = 1.5642022893376335 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5384e+04 | 2592 | 1 | 5.711e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98600.09955282955 (tsim/hr) [sph::Model][rank=0]
---------------- t = 782.4131786128738, dt = 0.229924694839724 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (1.6%)
patch tree reduce : 951.00 ns (0.5%)
gen split merge : 481.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 601.00 ns (0.3%)
LB compute : 198.73 us (94.2%)
LB move op cnt : 0
LB apply : 1.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.538133947439747e-22,5.9339376541717985e-21,1.0107026165519324e-20)
sum a = (-2.774808672920813e-22,-1.0055341703881946e-22,-7.011602968045205e-23)
sum e = 7.857715045550454e-13
sum de = -1.8301573001127474e-28
Info: cfl dt = 1.5641954485312954 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6504e+04 | 2592 | 1 | 5.574e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14850.545368859475 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 564 [SPH][rank=0]
Info: time since start : 125.24066672900001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000302065 s
sph::RenderFieldGetter compute custom field took : 0.00024964700000000003 s
rho_t_ampl=-0.00124001, rho_t_phi=3.14159 rad
eps_t_ampl=-7.98543e-06, eps_t_phi=8.11462e-10 rad
vx_t_ampl=4.1606e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 793.82s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 782.6431033077135, dt = 1.5641954485312954 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.98 us (3.6%)
patch tree reduce : 1.41 us (0.5%)
gen split merge : 711.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 257.23 us (92.3%)
LB move op cnt : 0
LB apply : 2.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1888479369967643e-21,5.751306076168986e-21,9.97709856417234e-21)
sum a = (-7.149160073789501e-23,8.990307087428239e-24,1.4364069177351674e-23)
sum e = 7.860950510006026e-13
sum de = -9.466330862652142e-29
Info: cfl dt = 1.5641485111518119 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2916e+04 | 2592 | 1 | 7.874e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71510.67249162504 (tsim/hr) [sph::Model][rank=0]
---------------- t = 784.2072987562449, dt = 1.5641485111518119 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.34 us (2.0%)
patch tree reduce : 1.66 us (0.8%)
gen split merge : 1.29 us (0.6%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 200.59 us (92.5%)
LB move op cnt : 0
LB apply : 2.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.141400826864378e-21,5.851089749375229e-21,1.0065637794652642e-20)
sum a = (1.0617831382710175e-22,-1.2931666299582456e-22,-4.8080806131127295e-23)
sum e = 7.860911400921902e-13
sum de = 6.310887241768095e-30
Info: cfl dt = 1.564102216192927 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5019e+04 | 2592 | 1 | 7.402e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76077.18512696766 (tsim/hr) [sph::Model][rank=0]
---------------- t = 785.7714472673966, dt = 1.564102216192927 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (1.9%)
patch tree reduce : 1.46 us (0.7%)
gen split merge : 802.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.4%)
LB compute : 201.00 us (93.2%)
LB move op cnt : 0
LB apply : 2.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.476806212829382e-22,5.540603871219953e-21,9.941597969855289e-21)
sum a = (-1.052283446307282e-22,-9.89094247386764e-23,1.989911888891942e-23)
sum e = 7.860876274847916e-13
sum de = 3.7865323450608567e-29
Info: cfl dt = 1.5640564746439363 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3889e+04 | 2592 | 1 | 5.906e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95343.72224182049 (tsim/hr) [sph::Model][rank=0]
---------------- t = 787.3355494835896, dt = 1.5640564746439363 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (1.7%)
patch tree reduce : 801.00 ns (0.4%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 183.77 us (93.4%)
LB move op cnt : 0
LB apply : 2.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (63.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1767294110322155e-21,5.40971673022096e-21,1.0025885091283177e-20)
sum a = (1.6177718665809892e-22,1.7162870420680878e-22,-1.0017934998468866e-22)
sum e = 7.860836939082843e-13
sum de = 3.597205727807814e-28
Info: cfl dt = 1.564011313858517 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3910e+04 | 2592 | 1 | 5.903e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95384.80049565934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 788.8996059582336, dt = 1.564011313858517 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (1.9%)
patch tree reduce : 1.03 us (0.5%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 183.10 us (92.6%)
LB move op cnt : 0
LB apply : 2.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.069824808470738e-22,5.889699899432566e-21,9.775298701138627e-21)
sum a = (4.8422754171905185e-23,2.236210639147493e-22,-6.882066730830683e-23)
sum e = 7.860793855778394e-13
sum de = -5.048709793414476e-28
Info: cfl dt = 1.5639667552362744 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4589e+04 | 2592 | 1 | 5.813e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96857.86925945141 (tsim/hr) [sph::Model][rank=0]
---------------- t = 790.463617272092, dt = 1.5639667552362744 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (1.8%)
patch tree reduce : 1.17 us (0.6%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 701.00 ns (0.4%)
LB compute : 181.81 us (93.5%)
LB move op cnt : 0
LB apply : 2.55 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (54.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.209495955180793e-22,6.2800666333234405e-21,9.692188132642098e-21)
sum a = (2.0231776398441828e-23,3.8953149914980625e-23,-1.2059249528358052e-22)
sum e = 7.860747111480893e-13
sum de = -3.155443620884047e-28
Info: cfl dt = 1.5639228198589108 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4653e+04 | 2592 | 1 | 5.805e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96995.1071393818 (tsim/hr) [sph::Model][rank=0]
---------------- t = 792.0275840273283, dt = 1.5639228198589108 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (1.7%)
patch tree reduce : 991.00 ns (0.5%)
gen split merge : 441.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.4%)
LB compute : 198.33 us (94.2%)
LB move op cnt : 0
LB apply : 2.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.242359754406689e-22,6.196597718258295e-21,9.463106068458668e-21)
sum a = (-4.538028525919534e-23,9.213868778268215e-23,9.28790410463692e-23)
sum e = 7.860696801107043e-13
sum de = -3.407879110554771e-28
Info: cfl dt = 1.563879528460844 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4161e+04 | 2592 | 1 | 5.869e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95923.69681654692 (tsim/hr) [sph::Model][rank=0]
---------------- t = 793.5915068471872, dt = 0.23221222206507264 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (1.9%)
patch tree reduce : 1.12 us (0.5%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.4%)
LB compute : 195.32 us (93.6%)
LB move op cnt : 0
LB apply : 2.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.686021043956276e-22,6.25957168978276e-21,9.651600220491748e-21)
sum a = (1.5488349127360447e-22,-1.541222722912908e-22,1.901267017861667e-22)
sum e = 7.85766045566934e-13
sum de = 5.553580772755923e-28
Info: cfl dt = 1.5638733260175706 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7456e+04 | 2592 | 1 | 6.920e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12080.297604217196 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 572 [SPH][rank=0]
Info: time since start : 125.989176778 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00027829 s
sph::RenderFieldGetter compute custom field took : 0.00023148100000000002 s
rho_t_ampl=-0.00119568, rho_t_phi=3.14159 rad
eps_t_ampl=-6.64151e-06, eps_t_phi=9.84809e-10 rad
vx_t_ampl=8.71906e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 805.00s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 793.8237190692523, dt = 1.5638733260175706 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.11 us (4.0%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 228.93 us (90.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.05280913098141e-22,5.9899505338485124e-21,9.960225345674188e-21)
sum a = (2.3468090376898165e-22,-1.2395132282496358e-22,-8.528555677280108e-23)
sum e = 7.860657039693034e-13
sum de = -5.048709793414476e-29
Info: cfl dt = 1.5638306183055022 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2464e+04 | 2592 | 1 | 7.984e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70513.12502993556 (tsim/hr) [sph::Model][rank=0]
---------------- t = 795.3875923952698, dt = 1.5638306183055022 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (1.9%)
patch tree reduce : 1.18 us (0.5%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.4%)
LB compute : 212.35 us (93.4%)
LB move op cnt : 0
LB apply : 2.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.448342277444914e-23,5.8197231144402394e-21,9.611498238284706e-21)
sum a = (-9.017004912605037e-23,-4.9250266401558697e-23,-1.1123842892290327e-22)
sum e = 7.860586851556589e-13
sum de = -5.048709793414476e-28
Info: cfl dt = 1.5637887843834124 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7183e+04 | 2592 | 1 | 6.971e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80761.08852186678 (tsim/hr) [sph::Model][rank=0]
---------------- t = 796.9514230135753, dt = 1.5637887843834124 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (2.1%)
patch tree reduce : 1.21 us (0.6%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.4%)
LB compute : 184.98 us (92.7%)
LB move op cnt : 0
LB apply : 2.60 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.646119615560955e-22,5.801025409919725e-21,9.41725188269197e-21)
sum a = (8.734581638007499e-23,1.5180210892675265e-22,-2.8672645447645054e-23)
sum e = 7.860526366191641e-13
sum de = 5.301145283085199e-28
Info: cfl dt = 1.5637476519881162 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4694e+04 | 2592 | 1 | 5.799e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97071.35801212383 (tsim/hr) [sph::Model][rank=0]
---------------- t = 798.5152117979587, dt = 1.5637476519881162 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (2.0%)
patch tree reduce : 1.29 us (0.7%)
gen split merge : 641.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.6%)
LB compute : 178.97 us (92.6%)
LB move op cnt : 0
LB apply : 2.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2141984728446994e-22,6.195705517458998e-21,9.436972823783432e-21)
sum a = (6.384049748061624e-23,2.4970189051721403e-23,4.4554966374397566e-23)
sum e = 7.860462422094926e-13
sum de = 3.407879110554771e-28
Info: cfl dt = 1.5637072457374375 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4493e+04 | 2592 | 1 | 5.826e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96633.12399913832 (tsim/hr) [sph::Model][rank=0]
---------------- t = 800.0789594499469, dt = 1.5637072457374375 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (2.1%)
patch tree reduce : 1.43 us (0.7%)
gen split merge : 641.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 182.87 us (92.4%)
LB move op cnt : 0
LB apply : 2.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.524058689100897e-22,6.135514057060398e-21,9.56389850056006e-21)
sum a = (-8.007983576997469e-23,7.118330203544017e-23,3.7891403048274783e-23)
sum e = 7.860395507685175e-13
sum de = 2.271919407036514e-28
Info: cfl dt = 1.5636666022622439 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4078e+04 | 2592 | 1 | 5.881e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95728.39995105848 (tsim/hr) [sph::Model][rank=0]
---------------- t = 801.6426666956843, dt = 1.5636666022622439 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (1.7%)
patch tree reduce : 1.28 us (0.7%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 571.00 ns (0.3%)
LB compute : 181.87 us (93.9%)
LB move op cnt : 0
LB apply : 2.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.421943094396354e-22,6.2830320777067146e-21,9.617938090891695e-21)
sum a = (-1.8500008228296014e-22,1.439382855823214e-22,8.783395170877563e-26)
sum e = 7.860325751894633e-13
sum de = -3.155443620884047e-28
Info: cfl dt = 1.5636261140843701 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4053e+04 | 2592 | 1 | 5.884e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95673.39875657001 (tsim/hr) [sph::Model][rank=0]
---------------- t = 803.2063332979466, dt = 1.5636261140843701 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (1.5%)
patch tree reduce : 671.00 ns (0.3%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.4%)
LB compute : 209.59 us (94.4%)
LB move op cnt : 0
LB apply : 2.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.238251779503452e-22,6.564890505755058e-21,9.588519341131222e-21)
sum a = (-9.47016589411836e-23,-1.9741547362137577e-24,-1.366403001919404e-22)
sum e = 7.86025329605405e-13
sum de = 3.281661365719409e-28
Info: cfl dt = 1.563586410843905 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4787e+04 | 2592 | 1 | 5.787e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97264.25542160051 (tsim/hr) [sph::Model][rank=0]
---------------- t = 804.769959412031, dt = 0.23437541876012347 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (2.0%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.6%)
LB compute : 186.47 us (92.7%)
LB move op cnt : 0
LB apply : 2.80 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (58.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.0246370845351315e-22,6.450403170815081e-21,9.449598373015702e-21)
sum a = (3.7780531688207044e-23,8.51075918704183e-24,1.2980563019114128e-22)
sum e = 7.857573105332388e-13
sum de = -4.796274303743752e-28
Info: cfl dt = 1.5635807821229846 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6681e+04 | 2592 | 1 | 5.553e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15195.684817484787 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 580 [SPH][rank=0]
Info: time since start : 126.71859320600001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00030591 s
sph::RenderFieldGetter compute custom field took : 0.00023935200000000002 s
rho_t_ampl=-0.00112078, rho_t_phi=3.14159 rad
eps_t_ampl=-5.36722e-06, eps_t_phi=1.22376e-09 rad
vx_t_ampl=1.30479e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 816.18s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 805.0043348307911, dt = 1.5635807821229846 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.33 us (4.1%)
patch tree reduce : 1.61 us (0.6%)
gen split merge : 741.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 229.17 us (90.6%)
LB move op cnt : 0
LB apply : 3.56 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.470060472598148e-22,6.464960806878426e-21,9.683784150049168e-21)
sum a = (1.9704158371807334e-22,3.892005343748873e-23,3.399634642171432e-23)
sum e = 7.860197218595305e-13
sum de = -2.524354896707238e-29
Info: cfl dt = 1.5635417391605744 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4236e+04 | 2592 | 1 | 5.860e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96064.2522341344 (tsim/hr) [sph::Model][rank=0]
---------------- t = 806.5679156129141, dt = 1.5635417391605744 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (2.0%)
patch tree reduce : 1.14 us (0.6%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 177.80 us (92.5%)
LB move op cnt : 0
LB apply : 2.47 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (58.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8444807315533767e-22,6.549575461818928e-21,9.662036079233067e-21)
sum a = (-2.581220355605773e-22,3.666884106772536e-23,1.0347351675402958e-22)
sum e = 7.860103008564424e-13
sum de = 5.806016262426647e-28
Info: cfl dt = 1.563503790113777 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5138e+04 | 2592 | 1 | 5.742e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98020.7678979787 (tsim/hr) [sph::Model][rank=0]
---------------- t = 808.1314573520747, dt = 1.563503790113777 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.89 us (2.0%)
patch tree reduce : 1.27 us (0.7%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 180.37 us (92.9%)
LB move op cnt : 0
LB apply : 2.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.21418770796041e-22,6.6051582878729585e-21,9.878132542720737e-21)
sum a = (3.975749461038981e-23,-1.3867393981398872e-22,-3.061898320314365e-23)
sum e = 7.860023341680996e-13
sum de = 7.825500179792437e-28
Info: cfl dt = 1.563466677021715 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5137e+04 | 2592 | 1 | 5.743e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98016.64607913898 (tsim/hr) [sph::Model][rank=0]
---------------- t = 809.6949611421885, dt = 1.563466677021715 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (2.0%)
patch tree reduce : 1.09 us (0.6%)
gen split merge : 621.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 591.00 ns (0.3%)
LB compute : 181.36 us (93.5%)
LB move op cnt : 0
LB apply : 2.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.375577049823698e-22,6.251143922520338e-21,9.725433716844592e-21)
sum a = (3.9898706247688576e-23,8.179217731075632e-23,-1.2316637308789978e-22)
sum e = 7.859941289834202e-13
sum de = 1.262177448353619e-28
Info: cfl dt = 1.563430422061998 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5085e+04 | 2592 | 1 | 5.749e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97901.00164252274 (tsim/hr) [sph::Model][rank=0]
---------------- t = 811.2584278192102, dt = 1.563430422061998 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (1.8%)
patch tree reduce : 1.54 us (0.7%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.5%)
LB compute : 197.09 us (93.0%)
LB move op cnt : 0
LB apply : 2.71 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.512902320143946e-22,6.551411213103812e-21,9.460524282118363e-21)
sum a = (-4.147770910112027e-23,-2.3759259144942044e-25,9.626943365045269e-23)
sum e = 7.859857337782984e-13
sum de = 2.524354896707238e-28
Info: cfl dt = 1.5633950417116202 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4511e+04 | 2592 | 1 | 5.823e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96651.50497849169 (tsim/hr) [sph::Model][rank=0]
---------------- t = 812.8218582412721, dt = 1.5633950417116202 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.04 us (2.0%)
patch tree reduce : 1.41 us (0.7%)
gen split merge : 591.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.5%)
LB compute : 185.40 us (92.4%)
LB move op cnt : 0
LB apply : 2.71 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.882620061435268e-22,6.486912797767598e-21,9.782567745328299e-21)
sum a = (-1.8668178450897275e-22,5.098131246674105e-23,1.0835916122548289e-22)
sum e = 7.859771650387502e-13
sum de = 7.32062920045099e-28
Info: cfl dt = 1.5633605520389677 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5233e+04 | 2592 | 1 | 5.730e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98218.97443721436 (tsim/hr) [sph::Model][rank=0]
---------------- t = 814.3852532829837, dt = 1.5633605520389677 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (2.1%)
patch tree reduce : 1.16 us (0.6%)
gen split merge : 560.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.3%)
LB compute : 184.90 us (93.9%)
LB move op cnt : 0
LB apply : 2.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1485897829450426e-21,6.6066313819984164e-21,9.961422693513249e-21)
sum a = (-7.661373194536855e-23,8.020229273669472e-23,1.8151429448486814e-22)
sum e = 7.85968439796157e-13
sum de = 4.543838814073028e-28
Info: cfl dt = 1.5633269686615 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4492e+04 | 2592 | 1 | 5.826e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96606.81154976261 (tsim/hr) [sph::Model][rank=0]
---------------- t = 815.9486138350227, dt = 0.2363367573071855 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (1.8%)
patch tree reduce : 1.25 us (0.6%)
gen split merge : 741.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.4%)
LB compute : 192.09 us (93.2%)
LB move op cnt : 0
LB apply : 2.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (58.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.90843546660745e-22,6.648478166969749e-21,1.0061505118035275e-20)
sum a = (-3.4928056614771904e-22,-4.4970891861856156e-23,2.1539551110958975e-22)
sum e = 7.857462040176047e-13
sum de = -7.32062920045099e-28
Info: cfl dt = 1.5633222964624272 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5549e+04 | 2592 | 1 | 5.691e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14951.389906546341 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 588 [SPH][rank=0]
Info: time since start : 127.414570541 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00028873500000000003 s
sph::RenderFieldGetter compute custom field took : 0.000233283 s
rho_t_ampl=-0.00101725, rho_t_phi=3.14159 rad
eps_t_ampl=-4.19459e-06, eps_t_phi=1.57062e-09 rad
vx_t_ampl=1.70382e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 827.37s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 816.1849505923299, dt = 1.5633222964624272 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.01 us (3.9%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 231.75 us (91.1%)
LB move op cnt : 0
LB apply : 3.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.594715857436572e-21,6.563443086472745e-21,1.0402241411546125e-20)
sum a = (2.0711895965257641e-22,7.48003960020586e-23,-3.458859725379417e-23)
sum e = 7.859617696717486e-13
sum de = 3.281661365719409e-28
Info: cfl dt = 1.5632894401365887 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2370e+04 | 2592 | 1 | 8.007e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70284.30761706362 (tsim/hr) [sph::Model][rank=0]
---------------- t = 817.7482728887923, dt = 1.5632894401365887 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (1.7%)
patch tree reduce : 1.60 us (0.7%)
gen split merge : 711.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 223.56 us (93.6%)
LB move op cnt : 0
LB apply : 2.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (58.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.741770594088165e-22,6.7739832189744236e-21,1.01527665575272e-20)
sum a = (2.550667292262948e-22,-5.0392897213877504e-24,7.94722122415309e-23)
sum e = 7.859508897805604e-13
sum de = 7.32062920045099e-28
Info: cfl dt = 1.563257861943469 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2942e+04 | 2592 | 1 | 7.868e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71525.36903725128 (tsim/hr) [sph::Model][rank=0]
---------------- t = 819.3115623289289, dt = 1.563257861943469 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.65 us (1.9%)
patch tree reduce : 1.42 us (0.6%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 224.82 us (93.3%)
LB move op cnt : 0
LB apply : 2.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.329805548011713e-22,6.70360205520256e-21,1.0366157147628439e-20)
sum a = (2.205340651959595e-22,1.567654773346211e-23,-1.8716268697144148e-22)
sum e = 7.859418123684692e-13
sum de = -3.7865323450608567e-28
Info: cfl dt = 1.5632272315278826 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4097e+04 | 2592 | 1 | 5.878e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95743.55953965758 (tsim/hr) [sph::Model][rank=0]
---------------- t = 820.8748201908724, dt = 1.5632272315278826 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.82 us (1.8%)
patch tree reduce : 1.11 us (0.5%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 197.51 us (93.3%)
LB move op cnt : 0
LB apply : 2.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0269937258092298e-22,6.744277425455392e-21,9.865169787397198e-21)
sum a = (-3.140675187740351e-22,-5.36138363741535e-23,-3.4410928552543667e-23)
sum e = 7.859326251516718e-13
sum de = 4.796274303743752e-28
Info: cfl dt = 1.5631975673605243 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3390e+04 | 2592 | 1 | 5.974e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94206.39292183377 (tsim/hr) [sph::Model][rank=0]
---------------- t = 822.4380474224002, dt = 1.5631975673605243 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (1.7%)
patch tree reduce : 852.00 ns (0.4%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.4%)
LB compute : 207.08 us (93.7%)
LB move op cnt : 0
LB apply : 2.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.661956972413235e-22,6.6063361213022465e-21,9.930771561805652e-21)
sum a = (7.7833286994767e-23,-1.37025233773112e-22,-5.567275023064979e-23)
sum e = 7.859233732982624e-13
sum de = 3.281661365719409e-28
Info: cfl dt = 1.563168882622327 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3679e+04 | 2592 | 1 | 5.934e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94832.2875176741 (tsim/hr) [sph::Model][rank=0]
---------------- t = 824.0012449897607, dt = 1.563168882622327 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (1.9%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 881.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 441.00 ns (0.2%)
LB compute : 181.30 us (93.5%)
LB move op cnt : 0
LB apply : 2.73 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.603277768015158e-22,6.32703875885764e-21,9.827127437072786e-21)
sum a = (-1.0803973995513098e-22,9.412056503031069e-23,-3.786653016513605e-23)
sum e = 7.859140748700932e-13
sum de = -1.337908095254836e-27
Info: cfl dt = 1.5631411900593766 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.1791e+04 | 2592 | 1 | 6.202e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90731.45464595172 (tsim/hr) [sph::Model][rank=0]
---------------- t = 825.564413872383, dt = 1.5631411900593766 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 us (1.9%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 194.88 us (93.5%)
LB move op cnt : 0
LB apply : 2.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.56101969834574e-22,6.65472678192022e-21,9.781853768608292e-21)
sum a = (-8.89376566550793e-23,1.1117858982199147e-23,-2.4855360954770292e-22)
sum e = 7.859047482417334e-13
sum de = -7.573064690121713e-28
Info: cfl dt = 1.563114501936086 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4621e+04 | 2592 | 1 | 5.809e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96874.4289415284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 827.1275550624424, dt = 0.23801129142623267 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (1.7%)
patch tree reduce : 1.13 us (0.6%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 181.28 us (93.6%)
LB move op cnt : 0
LB apply : 2.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.955385289056484e-22,6.5923818440528134e-21,9.558028377013123e-21)
sum a = (2.3461671666111853e-22,8.988326313396527e-23,-5.0350906573452053e-23)
sum e = 7.85733870822921e-13
sum de = 5.048709793414476e-28
Info: cfl dt = 1.5631109145849318 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6130e+04 | 2592 | 1 | 5.619e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15249.243614035919 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 596 [SPH][rank=0]
Info: time since start : 128.15857504500002 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000282747 s
sph::RenderFieldGetter compute custom field took : 0.00021782000000000003 s
rho_t_ampl=-0.000887776, rho_t_phi=3.14159 rad
eps_t_ampl=-3.15304e-06, eps_t_phi=2.12541e-09 rad
vx_t_ampl=2.05899e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 838.55s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 827.3655663538686, dt = 1.5631109145849318 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.64 us (3.9%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 221.95 us (90.9%)
LB move op cnt : 0
LB apply : 2.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.05280913098141e-22,6.7423486028641065e-21,9.502911566038222e-21)
sum a = (-1.7840164759463584e-22,-8.639715098432993e-23,6.078167102773552e-23)
sum e = 7.858976909026434e-13
sum de = -1.5146129380243427e-28
Info: cfl dt = 1.5630850021183889 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2300e+04 | 2592 | 1 | 8.025e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70122.8260233396 (tsim/hr) [sph::Model][rank=0]
---------------- t = 828.9286772684536, dt = 1.5630850021183889 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (2.0%)
patch tree reduce : 1.51 us (0.7%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.4%)
LB compute : 201.29 us (92.8%)
LB move op cnt : 0
LB apply : 2.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.106688438932026e-21,6.469527719602884e-21,9.684774756932844e-21)
sum a = (-6.471344214755409e-23,-1.1066564456704505e-22,-7.837389280757033e-23)
sum e = 7.858864356166624e-13
sum de = -1.0854726055841122e-27
Info: cfl dt = 1.5630605193814984 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1932e+04 | 2592 | 1 | 8.117e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69322.66231590296 (tsim/hr) [sph::Model][rank=0]
---------------- t = 830.491762270572, dt = 1.5630605193814984 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (1.6%)
patch tree reduce : 1.34 us (0.5%)
gen split merge : 761.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 243.32 us (91.6%)
LB move op cnt : 0
LB apply : 2.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.06150071499642e-21,6.277640360646216e-21,9.453515631938898e-21)
sum a = (2.0269004921002413e-22,9.161491095328384e-23,-2.7788425914120803e-23)
sum e = 7.858771611915036e-13
sum de = -4.0389678347315804e-28
Info: cfl dt = 1.5630370723828457 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2302e+04 | 2592 | 1 | 8.024e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70125.51042907585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 832.0548227899535, dt = 1.5630370723828457 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.46 us (1.8%)
patch tree reduce : 1.51 us (0.6%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 232.58 us (93.5%)
LB move op cnt : 0
LB apply : 2.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.545766119369841e-22,6.578953901087858e-21,9.449615365130163e-21)
sum a = (2.528843675589502e-22,-3.042303430322384e-23,7.395855821990271e-23)
sum e = 7.85867914060356e-13
sum de = 4.543838814073028e-28
Info: cfl dt = 1.5630146755796135 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2406e+04 | 2592 | 1 | 7.998e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70350.03828200354 (tsim/hr) [sph::Model][rank=0]
---------------- t = 833.6178598623363, dt = 1.5630146755796135 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (1.5%)
patch tree reduce : 1.33 us (0.5%)
gen split merge : 751.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 229.32 us (93.9%)
LB move op cnt : 0
LB apply : 2.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.265256270196971e-22,6.4359835370336406e-21,9.644730831114257e-21)
sum a = (1.3004308053059372e-22,-6.210007408014453e-23,7.997378488845632e-23)
sum e = 7.858587334890423e-13
sum de = -1.2116903504194741e-27
Info: cfl dt = 1.5629933386605688 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2322e+04 | 2592 | 1 | 8.019e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70165.37342511569 (tsim/hr) [sph::Model][rank=0]
---------------- t = 835.180874537916, dt = 1.5629933386605688 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (1.9%)
patch tree reduce : 1.27 us (0.6%)
gen split merge : 821.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 197.89 us (92.8%)
LB move op cnt : 0
LB apply : 2.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (53.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.572759845179071e-24,6.314072963069299e-21,9.77443026794264e-21)
sum a = (-8.082440622118639e-23,-2.0536414429901352e-23,-1.4032262097388568e-22)
sum e = 7.85849637306682e-13
sum de = -8.330371159133885e-28
Info: cfl dt = 1.5629730708636012 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8337e+04 | 2592 | 1 | 9.147e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61514.07143308858 (tsim/hr) [sph::Model][rank=0]
---------------- t = 836.7438678765766, dt = 1.5629730708636012 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (1.6%)
patch tree reduce : 1.60 us (0.6%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 259.85 us (94.1%)
LB move op cnt : 0
LB apply : 2.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.828632609816809e-22,6.3145800412214166e-21,9.382948882680554e-21)
sum a = (1.1322605827046759e-23,-2.8817303536908535e-23,5.900957810950811e-23)
sum e = 7.85840643395646e-13
sum de = 3.7865323450608567e-28
Info: cfl dt = 1.5629538809252688 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9132e+04 | 2592 | 1 | 8.897e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63239.26229962033 (tsim/hr) [sph::Model][rank=0]
---------------- t = 838.3068409474402, dt = 0.23934116796715443 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.60 us (2.0%)
patch tree reduce : 1.46 us (0.6%)
gen split merge : 531.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 215.01 us (93.1%)
LB move op cnt : 0
LB apply : 2.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.382625443877413e-22,6.301177773099606e-21,9.552847733688772e-21)
sum a = (2.6282053185615454e-22,3.2864952587989767e-23,-1.2626979168807924e-23)
sum e = 7.857215813834697e-13
sum de = 3.7865323450608567e-28
Info: cfl dt = 1.56295147835942 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0219e+04 | 2592 | 1 | 8.577e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10045.284664812156 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 604 [SPH][rank=0]
Info: time since start : 129.061003234 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00028388800000000004 s
sph::RenderFieldGetter compute custom field took : 0.000213565 s
rho_t_ampl=-0.000735673, rho_t_phi=3.14159 rad
eps_t_ampl=-2.2686e-06, eps_t_phi=2.98142e-09 rad
vx_t_ampl=2.3614e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 849.73s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 838.5461821154073, dt = 1.56295147835942 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.59 us (3.6%)
patch tree reduce : 1.62 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 240.77 us (91.4%)
LB move op cnt : 0
LB apply : 3.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1009372740674943e-22,6.3598447896864585e-21,9.524539589284888e-21)
sum a = (1.2670535092171372e-22,-1.7512158609047658e-22,-6.660621071672357e-23)
sum e = 7.858339122967506e-13
sum de = 1.5146129380243427e-27
Info: cfl dt = 1.5629330937849248 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1933e+04 | 2592 | 1 | 8.117e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69318.3997992714 (tsim/hr) [sph::Model][rank=0]
---------------- t = 840.1091335937667, dt = 1.5629330937849248 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (2.0%)
patch tree reduce : 1.58 us (0.8%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 191.85 us (92.3%)
LB move op cnt : 0
LB apply : 2.65 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.9823897797500034e-22,5.923873115658868e-21,9.378255078430026e-21)
sum a = (1.647554684629457e-22,-2.393514184972248e-22,2.0025472877104469e-22)
sum e = 7.858233972612371e-13
sum de = 1.0602290566170399e-27
Info: cfl dt = 1.5629162555136942 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3740e+04 | 2592 | 1 | 5.926e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94948.87323333466 (tsim/hr) [sph::Model][rank=0]
---------------- t = 841.6720666875517, dt = 1.5629162555136942 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (1.9%)
patch tree reduce : 1.05 us (0.5%)
gen split merge : 871.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 196.35 us (93.2%)
LB move op cnt : 0
LB apply : 2.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.69365321588637e-22,5.4994679584682034e-21,9.899779346151643e-21)
sum a = (-9.296218831809422e-23,-2.687133095274091e-24,9.498875898411209e-23)
sum e = 7.858148548405201e-13
sum de = 2.4486242498060206e-27
Info: cfl dt = 1.562900515807398 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4160e+04 | 2592 | 1 | 5.870e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95859.16118994019 (tsim/hr) [sph::Model][rank=0]
---------------- t = 843.2349829430653, dt = 1.562900515807398 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (1.7%)
patch tree reduce : 1.14 us (0.6%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 631.00 ns (0.3%)
LB compute : 187.45 us (94.2%)
LB move op cnt : 0
LB apply : 1.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.505864690974521e-22,5.680218854210628e-21,9.965976378897656e-21)
sum a = (-8.257029555506208e-23,-1.0544552772772429e-22,-6.8231798211895e-23)
sum e = 7.858064715281866e-13
sum de = -7.068193710780266e-28
Info: cfl dt = 1.5628858848959628 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3944e+04 | 2592 | 1 | 5.898e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95389.33001559546 (tsim/hr) [sph::Model][rank=0]
---------------- t = 844.7978834588728, dt = 1.5628858848959628 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (1.8%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.4%)
LB compute : 196.01 us (93.7%)
LB move op cnt : 0
LB apply : 2.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4624390655523434e-22,5.434972752487384e-21,9.731789118055309e-21)
sum a = (-1.6422271546768216e-22,-1.2266256604990025e-24,1.353646839628152e-22)
sum e = 7.85798278691505e-13
sum de = 1.5903435849255598e-27
Info: cfl dt = 1.5628723688558983 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3886e+04 | 2592 | 1 | 5.906e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95262.3577787944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 846.3607693437688, dt = 1.5628723688558983 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (1.6%)
patch tree reduce : 891.00 ns (0.4%)
gen split merge : 541.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 230.43 us (94.2%)
LB move op cnt : 0
LB apply : 2.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3884955172940786e-22,5.5146803030317526e-21,1.01024458764423e-20)
sum a = (9.920117520238529e-23,5.791763210255084e-23,2.1424610903585803e-22)
sum e = 7.857902921525286e-13
sum de = 1.3883951931889808e-27
Info: cfl dt = 1.5628599733054607 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4237e+04 | 2592 | 1 | 5.859e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96024.27297344057 (tsim/hr) [sph::Model][rank=0]
---------------- t = 847.9236417126247, dt = 1.5628599733054607 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (1.7%)
patch tree reduce : 1.01 us (0.4%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 511.00 ns (0.2%)
LB compute : 217.02 us (94.7%)
LB move op cnt : 0
LB apply : 1.94 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6021102122623985e-22,5.65146302988797e-21,1.0498923344522301e-20)
sum a = (1.749612186131749e-22,4.141989055786548e-23,-6.807496194333701e-23)
sum e = 7.857825275245509e-13
sum de = 4.291403324402304e-28
Info: cfl dt = 1.5628487033513803 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4024e+04 | 2592 | 1 | 5.888e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95559.29298367839 (tsim/hr) [sph::Model][rank=0]
---------------- t = 849.4865016859301, dt = 0.24029619101611388 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (1.7%)
patch tree reduce : 871.00 ns (0.4%)
gen split merge : 561.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.4%)
LB compute : 214.55 us (94.2%)
LB move op cnt : 0
LB apply : 2.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6842697103271368e-22,5.648394886132115e-21,1.026195103973657e-20)
sum a = (5.616371938019226e-23,9.76772328524174e-24,2.9156602547229166e-23)
sum e = 7.857106009088559e-13
sum de = 6.310887241768094e-28
Info: cfl dt = 1.56284755331015 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4342e+04 | 2592 | 1 | 5.846e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14798.829987372004 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 612 [SPH][rank=0]
Info: time since start : 129.945420085 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00028953700000000003 s
sph::RenderFieldGetter compute custom field took : 0.00022111600000000002 s
rho_t_ampl=-0.000564834, rho_t_phi=3.14159 rad
eps_t_ampl=-1.56328e-06, eps_t_phi=4.31375e-09 rad
vx_t_ampl=2.60353e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 860.91s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 849.7267978769462, dt = 1.56284755331015 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.95 us (3.8%)
patch tree reduce : 1.51 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.4%)
LB compute : 242.10 us (91.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.625579741044771e-22,5.6598458661748876e-21,1.0319200551987346e-20)
sum a = (-1.270904735688922e-24,2.8059188603014177e-22,4.1326582762547385e-23)
sum e = 7.857768018863396e-13
sum de = 5.048709793414476e-29
Info: cfl dt = 1.5628370992483347 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8850e+04 | 2592 | 1 | 8.984e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62623.377537756285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 851.2896454302563, dt = 1.5628370992483347 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (1.9%)
patch tree reduce : 1.20 us (0.5%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 213.08 us (92.9%)
LB move op cnt : 0
LB apply : 2.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6701836871039977e-22,6.309952150744489e-21,1.0393297180615062e-20)
sum a = (1.4148122315179401e-22,9.135931588392595e-24,-5.684151663304277e-23)
sum e = 7.857680635662989e-13
sum de = -6.058451752097371e-28
Info: cfl dt = 1.5628282713861616 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9811e+04 | 2592 | 1 | 8.695e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64706.953346930444 (tsim/hr) [sph::Model][rank=0]
---------------- t = 852.8524825295046, dt = 1.5628282713861616 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (1.8%)
patch tree reduce : 1.34 us (0.6%)
gen split merge : 822.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 215.16 us (92.9%)
LB move op cnt : 0
LB apply : 2.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.197172030471082e-22,6.1122686959477845e-21,1.0227753277583632e-20)
sum a = (-2.39507774280285e-22,1.0185425904278514e-22,-5.311498518879582e-23)
sum e = 7.857611047976298e-13
sum de = -4.0389678347315804e-28
Info: cfl dt = 1.5628205790314542 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9392e+04 | 2592 | 1 | 8.819e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63798.654606164295 (tsim/hr) [sph::Model][rank=0]
---------------- t = 854.4153108008908, dt = 1.5628205790314542 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.58 us (2.1%)
patch tree reduce : 1.39 us (0.6%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 206.90 us (92.7%)
LB move op cnt : 0
LB apply : 2.88 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.915483860661163e-23,6.3436054513971e-21,1.0147656050023281e-20)
sum a = (1.6347814501647047e-22,-5.839432167079021e-23,2.1178905304231243e-22)
sum e = 7.857544185726957e-13
sum de = 2.4233807008389483e-27
Info: cfl dt = 1.5628140280546376 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9714e+04 | 2592 | 1 | 8.723e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64497.80916954472 (tsim/hr) [sph::Model][rank=0]
---------------- t = 855.9781313799223, dt = 1.5628140280546376 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (1.7%)
patch tree reduce : 851.00 ns (0.3%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 252.49 us (94.0%)
LB move op cnt : 0
LB apply : 2.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (62.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.669005366466949e-22,6.1273911785603255e-21,1.0685641694314544e-20)
sum a = (-1.3046671544249004e-22,-1.9142330622528944e-22,1.1282244742805275e-23)
sum e = 7.857480271577329e-13
sum de = 8.330371159133885e-28
Info: cfl dt = 1.56280862086426 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9368e+04 | 2592 | 1 | 8.826e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63746.41838073095 (tsim/hr) [sph::Model][rank=0]
---------------- t = 857.5409454079769, dt = 1.56280862086426 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (2.1%)
patch tree reduce : 1.47 us (0.7%)
gen split merge : 992.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.4%)
LB compute : 203.63 us (92.6%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (58.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.791066292927007e-23,5.724007299194819e-21,1.0546596257295554e-20)
sum a = (-4.864099033863965e-23,5.913528159718461e-23,7.540789505625916e-23)
sum e = 7.857419428007167e-13
sum de = -1.741804878727994e-27
Info: cfl dt = 1.5628043594103764 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9138e+04 | 2592 | 1 | 8.896e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63245.0087465619 (tsim/hr) [sph::Model][rank=0]
---------------- t = 859.1037540288412, dt = 1.5628043594103764 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (2.1%)
patch tree reduce : 1.58 us (0.8%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 191.84 us (92.2%)
LB move op cnt : 0
LB apply : 3.04 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.859139767768606e-23,6.012303694161829e-21,1.0714552103987947e-20)
sum a = (7.720425333770885e-23,3.088886722392232e-23,1.0196668430424568e-22)
sum e = 7.857361773030294e-13
sum de = -6.563322731438818e-28
Info: cfl dt = 1.5628012451292417 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9906e+04 | 2592 | 1 | 8.667e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64913.4273584069 (tsim/hr) [sph::Model][rank=0]
---------------- t = 860.6665583882516, dt = 0.24085525023326682 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (2.0%)
patch tree reduce : 1.41 us (0.6%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 202.04 us (92.8%)
LB move op cnt : 0
LB apply : 2.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (59.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0352096756157037e-22,5.997810245206346e-21,1.0759864411060023e-20)
sum a = (-1.1271256140756297e-22,1.0811984847451477e-22,-1.1117864723462463e-22)
sum e = 7.857020583907621e-13
sum de = 0
Info: cfl dt = 1.5628013808753773 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0220e+04 | 2592 | 1 | 8.577e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10109.106634955026 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 620 [SPH][rank=0]
Info: time since start : 130.882561627 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.0002918 s
sph::RenderFieldGetter compute custom field took : 0.000218292 s
rho_t_ampl=-0.000379613, rho_t_phi=3.14159 rad
eps_t_ampl=-1.05454e-06, eps_t_phi=6.4468e-09 rad
vx_t_ampl=2.77938e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 872.09s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 860.9074136384849, dt = 1.5628013808753773 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.76 us (3.5%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 256.47 us (91.9%)
LB move op cnt : 0
LB apply : 3.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2183064477479364e-23,6.175980819212675e-21,1.0560445681555916e-20)
sum a = (-4.717174743965381e-22,1.7759544749064e-23,1.241602449489014e-22)
sum e = 7.857320331920344e-13
sum de = -1.9185097214975007e-27
Info: cfl dt = 1.5627990739260305 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3561e+04 | 2592 | 1 | 5.950e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94551.20478198283 (tsim/hr) [sph::Model][rank=0]
---------------- t = 862.4702150193602, dt = 1.5627990739260305 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (1.9%)
patch tree reduce : 1.36 us (0.7%)
gen split merge : 721.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 188.99 us (93.6%)
LB move op cnt : 0
LB apply : 2.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0376744605576458e-21,6.133116668581712e-21,1.0938377170219676e-20)
sum a = (1.1794060134301059e-22,-1.556145473298403e-22,1.0013109610055638e-23)
sum e = 7.857259259746454e-13
sum de = 5.553580772755923e-28
Info: cfl dt = 1.5627984353944417 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3466e+04 | 2592 | 1 | 5.963e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94344.60855886633 (tsim/hr) [sph::Model][rank=0]
---------------- t = 864.0330140932863, dt = 1.5627984353944417 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.8%)
patch tree reduce : 772.00 ns (0.4%)
gen split merge : 460.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 186.40 us (93.9%)
LB move op cnt : 0
LB apply : 2.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.4342670191060643e-22,5.7543228702385505e-21,1.0864831123552344e-20)
sum a = (-1.1548223511185475e-22,-2.6501650821083103e-22,1.0526898801795117e-22)
sum e = 7.857212406013912e-13
sum de = -8.330371159133885e-28
Info: cfl dt = 1.5627989431213638 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4350e+04 | 2592 | 1 | 5.844e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96263.52188460456 (tsim/hr) [sph::Model][rank=0]
---------------- t = 865.5958125286808, dt = 1.5627989431213638 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (1.9%)
patch tree reduce : 811.00 ns (0.4%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.4%)
LB compute : 183.62 us (93.1%)
LB move op cnt : 0
LB apply : 2.57 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.353275076794085e-22,5.25469042263236e-21,1.1103778255639028e-20)
sum a = (2.6820583020586666e-23,2.3407408486878546e-22,1.0340501135759002e-22)
sum e = 7.857169116228902e-13
sum de = -2.398137151871876e-27
Info: cfl dt = 1.5628005985546025 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4245e+04 | 2592 | 1 | 5.858e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96035.38812147286 (tsim/hr) [sph::Model][rank=0]
---------------- t = 867.1586114718021, dt = 1.5628005985546025 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (1.8%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 902.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 186.41 us (93.3%)
LB move op cnt : 0
LB apply : 2.63 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (54.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.26642382594973e-22,6.010551386117167e-21,1.1263923158904937e-20)
sum a = (1.0250681125733375e-22,-2.4059133289489856e-24,7.395392990513257e-23)
sum e = 7.857129519073026e-13
sum de = -9.34011311781678e-28
Info: cfl dt = 1.562803400433249 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4368e+04 | 2592 | 1 | 5.842e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96303.77036416397 (tsim/hr) [sph::Model][rank=0]
---------------- t = 868.7214120703568, dt = 1.562803400433249 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (1.7%)
patch tree reduce : 861.00 ns (0.4%)
gen split merge : 441.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 501.00 ns (0.2%)
LB compute : 199.75 us (94.4%)
LB move op cnt : 0
LB apply : 2.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.8943602082685995e-22,5.821809195445789e-21,1.1356485528174921e-20)
sum a = (1.8664648159964806e-22,7.927361059288983e-23,1.2943424999382761e-23)
sum e = 7.857093689237045e-13
sum de = 8.835242138475332e-28
Info: cfl dt = 1.5628073470436765 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4067e+04 | 2592 | 1 | 5.882e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95650.14778453078 (tsim/hr) [sph::Model][rank=0]
---------------- t = 870.2842154707901, dt = 1.5628073470436765 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (1.8%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 12.89 us (6.1%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 186.09 us (87.5%)
LB move op cnt : 0
LB apply : 2.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6349740114882938e-22,6.009633510474725e-21,1.1329039895595412e-20)
sum a = (-8.950571255966753e-23,-1.258544204269258e-22,-8.868028334493807e-23)
sum e = 7.857061695040126e-13
sum de = 1.539856486991415e-27
Info: cfl dt = 1.5628124361630207 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4322e+04 | 2592 | 1 | 5.848e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96204.37734557403 (tsim/hr) [sph::Model][rank=0]
---------------- t = 871.8470228178337, dt = 0.2410065821900389 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (1.9%)
patch tree reduce : 1.35 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 185.21 us (86.4%)
LB move op cnt : 0
LB apply : 2.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (62.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.292249996006201e-22,5.819151849180258e-21,1.1228258224581565e-20)
sum a = (-1.9428153807996105e-22,-3.555256207195503e-23,-1.553672770875527e-22)
sum e = 7.856968305606808e-13
sum de = -7.573064690121713e-28
Info: cfl dt = 1.5628138552874362 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4844e+04 | 2592 | 1 | 5.780e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15010.83187900361 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 628 [SPH][rank=0]
Info: time since start : 131.585623868 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000278631 s
sph::RenderFieldGetter compute custom field took : 0.000226664 s
rho_t_ampl=-0.00018472, rho_t_phi=3.14159 rad
eps_t_ampl=-7.54805e-07, eps_t_phi=9.03894e-09 rad
vx_t_ampl=2.88464e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 883.27s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 872.0880294000237, dt = 1.5628138552874362 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.99 us (3.9%)
patch tree reduce : 1.60 us (0.6%)
gen split merge : 782.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 236.07 us (91.3%)
LB move op cnt : 0
LB apply : 3.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.07980285679064e-22,5.774150267857455e-21,1.0977412089071691e-20)
sum a = (-1.0137390880355044e-22,1.807126843547747e-22,-2.647423850572621e-23)
sum e = 7.857040215502778e-13
sum de = -8.330371159133885e-28
Info: cfl dt = 1.5628197245101358 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6053e+04 | 2592 | 1 | 7.189e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78255.19424295933 (tsim/hr) [sph::Model][rank=0]
---------------- t = 873.6508432553112, dt = 1.5628197245101358 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (2.0%)
patch tree reduce : 1.45 us (0.7%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 197.80 us (92.6%)
LB move op cnt : 0
LB apply : 2.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.262899628922873e-22,6.225847783311499e-21,1.1036755540216576e-20)
sum a = (-6.287287682958037e-23,8.560629561080759e-23,6.41258672661813e-23)
sum e = 7.857011334257795e-13
sum de = 1.6155871338926322e-27
Info: cfl dt = 1.5628272662384943 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1410e+04 | 2592 | 1 | 8.252e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68177.09836213448 (tsim/hr) [sph::Model][rank=0]
---------------- t = 875.2136629798214, dt = 1.5628272662384943 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (2.2%)
patch tree reduce : 1.37 us (0.7%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 188.07 us (92.0%)
LB move op cnt : 0
LB apply : 2.81 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.618531346991056e-22,6.285137414844623e-21,1.1207769010222643e-20)
sum a = (-5.0263319489878914e-23,1.2863290732200424e-22,5.1287886474043397e-23)
sum e = 7.856991812352849e-13
sum de = -1.2116903504194741e-27
Info: cfl dt = 1.5628359388538213 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4728e+04 | 2592 | 1 | 7.464e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75381.340443303 (tsim/hr) [sph::Model][rank=0]
---------------- t = 876.7764902460599, dt = 1.5628359388538213 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (2.2%)
patch tree reduce : 1.39 us (0.7%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 184.03 us (92.0%)
LB move op cnt : 0
LB apply : 2.69 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.862663964795463e-22,6.5198760870106815e-21,1.1277891789219636e-20)
sum a = (-3.2519515626094776e-22,1.6060617310902193e-23,-8.78668945238879e-23)
sum e = 7.856976314861738e-13
sum de = -2.1204581132340797e-27
Info: cfl dt = 1.5628457393799398 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.8866e+04 | 2592 | 1 | 6.669e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84363.55271289888 (tsim/hr) [sph::Model][rank=0]
---------------- t = 878.3393261849137, dt = 1.5628457393799398 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (2.2%)
patch tree reduce : 1.25 us (0.6%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 183.78 us (92.4%)
LB move op cnt : 0
LB apply : 2.59 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5889646925720404e-21,6.4569919774372255e-21,1.103183134107692e-20)
sum a = (-1.2316342607594433e-22,1.138811177939171e-22,-1.0603215534408463e-22)
sum e = 7.856964882833257e-13
sum de = 2.4233807008389483e-27
Info: cfl dt = 1.562856662932953 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1619e+04 | 2592 | 1 | 8.198e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68633.50224908016 (tsim/hr) [sph::Model][rank=0]
---------------- t = 879.9021719242936, dt = 1.562856662932953 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (2.5%)
patch tree reduce : 1.40 us (0.7%)
gen split merge : 971.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 189.91 us (91.6%)
LB move op cnt : 0
LB apply : 2.90 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5355610188299604e-21,6.711384742030958e-21,1.085192353037347e-20)
sum a = (2.6179153228322456e-22,1.387133672464554e-22,1.3359007774558905e-23)
sum e = 7.856957535908179e-13
sum de = -7.573064690121713e-28
Info: cfl dt = 1.562857473980683 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.1490e+04 | 2592 | 1 | 6.247e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90058.70129644258 (tsim/hr) [sph::Model][rank=0]
---------------- t = 881.4650285872266, dt = 1.562857473980683 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (1.8%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 591.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 631.00 ns (0.3%)
LB compute : 183.39 us (94.0%)
LB move op cnt : 0
LB apply : 2.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.98824908828238e-22,6.947586880256294e-21,1.096609739290618e-20)
sum a = (5.044282274871225e-22,1.7183218486066145e-22,6.284244284108845e-23)
sum e = 7.856954286105122e-13
sum de = -2.9787387781145406e-27
Info: cfl dt = 1.5628442111983338 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4098e+04 | 2592 | 1 | 5.878e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95719.8466568411 (tsim/hr) [sph::Model][rank=0]
---------------- t = 883.0278860612073, dt = 0.2407591003551488 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (1.9%)
patch tree reduce : 691.00 ns (0.3%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.4%)
LB compute : 187.90 us (93.3%)
LB move op cnt : 0
LB apply : 2.37 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.504686370337472e-22,7.01483571316444e-21,1.1019895061074572e-20)
sum a = (-1.2771810313296585e-22,7.241618343164693e-23,-1.3004539391674222e-23)
sum e = 7.856954522113428e-13
sum de = -1.5146129380243427e-28
Info: cfl dt = 1.5628427648141194 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4317e+04 | 2592 | 1 | 5.849e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14819.195234047504 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 636 [SPH][rank=0]
Info: time since start : 132.376946855 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00028529 s
sph::RenderFieldGetter compute custom field took : 0.000216769 s
rho_t_ampl=1.49007e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-6.71218e-07, eps_t_phi=1.03473e-08 rad
vx_t_ampl=2.91681e-06, vx_t_phi=4.71239 rad
----- 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": [
1.0
],
"type": "constant_stopping_times"
},
"evol_mode": {
"type": "none"
},
"mode": {
"C_1_fluid": 0.1,
"C_drift": 1.0,
"cfl_density_threshold": 2.220446049250313e-16,
"clamp_dust_frac": null,
"dust_corrected_av": false,
"ensure_s_j_positivity": true,
"ndust": 1,
"pure_diffusion_mode": false,
"smooth_s_positivity_limiter": false,
"type": "monofluid_tva"
}
},
"enable_particle_reordering": false,
"eos_config": {
"Tvec": "f64_3",
"cs": 0.1,
"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"
},
"neigh_cache_strategy": "two_stage",
"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
}
]
------------------------------------
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 = 2592 ( 2.6e+03 ) Ntotal = 2592 ( 2.6e+03 rank min = 7.6e+06 max = 2.6e+03) rate = 2.592000e+03 N.s^-1
SPH setup: the generation step took : 0.000684233 s
SPH setup: final particle count = 2592 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 : 4.72 us (70.8%)
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 792.00 ns (0.4%)
patch tree reduce : 721.00 ns (0.3%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.4%)
LB compute : 216.57 us (96.2%)
LB move op cnt : 0
LB apply : 2.80 us (1.2%)
Info: patch count stable after 1 runs npatch = 1 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
SPH setup: injected 2592 / 2592 => 100.0% | ranks with patchs = 1 / 1 <- global loop -> (msg count : 0)
SPH setup: the injection step took : 0.004198404 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 | 1.4% 0.0% | 2.15 GB | 2.15 GB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 0.006089163000000001 s
0.0001
---------------- t = 0, dt = 0 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (1.1%)
patch tree reduce : 691.00 ns (0.4%)
gen split merge : 441.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 410.00 ns (0.2%)
LB compute : 187.60 us (96.3%)
LB move op cnt : 0
LB apply : 1.01 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (60.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: 1.183256172839506
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.030555555555555558 unconverged cnt = 2592
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.3290895061728396
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.03361111111111112 unconverged cnt = 2592
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.3290895061728396
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.03697222222222223 unconverged cnt = 2592
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.5088734567901234
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.04066944444444446 unconverged cnt = 2592
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.579861111111111
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.04473638888888891 unconverged cnt = 2592
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1840277777777777
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.049210027777777804 unconverged cnt = 2592
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1032831504573026e-22,0,0)
sum a = (-1.0934855038736845e-19,-2.9344313124921285e-19,-1.6317241325925873e-19)
sum e = 7.856742013183865e-10
sum de = 7.940933880509066e-23
Info: cfl dt = 0.0004013819880673238 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 | 1.4631e+04 | 2592 | 1 | 1.772e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [sph::Model][rank=0]
[ 4.44089210e-16-0.8130449j -4.83780152e-01-0.09347755j
4.83780152e-01-0.09347755j 0.00000000e+00+0.j ]
k=6.283185307179586 cs=0.1 ts=1 epsilon_0=0.5
eigenval = [-4.33187233e-01-9.86960440e-02j 4.33187233e-01-9.86960440e-02j
-6.56455075e-50-1.74393425e-17j]
eigenvec = [[ 8.03388312e-01+0.00000000e+00j 8.03388312e-01+0.00000000e+00j
8.94427191e-01+0.00000000e+00j]
[ 3.96456241e-02-1.74008780e-01j 3.96456241e-02+1.74008780e-01j
4.47213595e-01+9.71445147e-17j]
[-5.53887149e-01-1.26195941e-01j 5.53887149e-01-1.26195941e-01j
9.45549854e-18+1.73080871e-16j]]
14.504548673460324
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 : 132.936618675 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000310958 s
sph::RenderFieldGetter compute custom field took : 0.000244701 s
offset_rho=0.999981, ampl_rho=1.5987e-16, phi_rho=5.96884 rad
offset_eps=0.500009, ampl_eps=7.71362e-17, phi_eps=2.839 rad
offset_vx=0, ampl_vx=0.0001, phi_vx=4.71239 rad
eigenval = [-4.33187233e-01-9.86960440e-02j 4.33187233e-01-9.86960440e-02j
-6.56455075e-50-1.74393425e-17j]
eigenvec = [[ 8.03388312e-01+0.00000000e+00j 8.03388312e-01+0.00000000e+00j
8.94427191e-01+0.00000000e+00j]
[ 3.96456241e-02-1.74008780e-01j 3.96456241e-02+1.74008780e-01j
4.47213595e-01+9.71445147e-17j]
[-5.53887149e-01-1.26195941e-01j 5.53887149e-01-1.26195941e-01j
9.45549854e-18+1.73080871e-16j]]
eigenvec=[[ 8.03388312e-01+0.00000000e+00j 8.03388312e-01+0.00000000e+00j
8.94427191e-01+0.00000000e+00j]
[ 3.96456241e-02-1.74008780e-01j 3.96456241e-02+1.74008780e-01j
4.47213595e-01+9.71445147e-17j]
[-5.53887149e-01-1.26195941e-01j 5.53887149e-01-1.26195941e-01j
9.45549854e-18+1.73080871e-16j]]
v=[1.59870093e-16+0.j 7.71362122e-17+0.j 0.00000000e+00-0.001j]
c=[ 0.00039104+8.13616959e-04j 0.00039104-8.13616959e-04j
-0.00070248+2.44564918e-19j]
coefs=[ 0.00039104+8.13616959e-04j 0.00039104-8.13616959e-04j
-0.00070248+2.44564918e-19j]
coefs=[ 0.00039104+8.13616959e-04j 0.00039104-8.13616959e-04j
-0.00070248+2.44564918e-19j]
decomp=[ 1.59919820e-16-1.06515139e-19j 7.71409846e-17+7.24921663e-21j
-2.01948397e-20-1.00000000e-03j]
rho_t_ampl=-1.5987e-16, rho_t_phi=2.82724 rad
eps_t_ampl=-7.71362e-17, eps_t_phi=5.98059 rad
vx_t_ampl=0.0001, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 0.36s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0, dt = 0.0004013819880673238 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.88 us (3.9%)
patch tree reduce : 1.49 us (0.6%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.4%)
LB compute : 227.78 us (90.9%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.6807455133002795e-22,-1.1778278724396234e-22,-6.549446763174435e-23)
sum a = (-8.670925999397529e-20,2.2028816448602837e-19,2.6634977410667595e-20)
sum e = 7.856742013183861e-10
sum de = 9.26442286059391e-23
Info: cfl dt = 0.013646985720160777 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 | 3.0397e+04 | 2592 | 1 | 8.527e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.945384813347957 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0004013819880673238, dt = 0.013646985720160777 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.62 us (2.1%)
patch tree reduce : 1.27 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 204.62 us (92.5%)
LB move op cnt : 0
LB apply : 2.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6291039380716283e-22,2.9915878910320702e-21,3.3608532265692133e-22)
sum a = (1.2413458022726806e-19,-1.6423779061230265e-19,2.0255173163402422e-20)
sum e = 7.856742013202578e-10
sum de = -4.632211430296955e-23
Info: cfl dt = 0.022477283162944537 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 | 2.9507e+04 | 2592 | 1 | 8.784e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 559.2823379661237 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0140483677082281, dt = 0.022477283162944537 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (1.9%)
patch tree reduce : 1.51 us (0.7%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 203.90 us (92.5%)
LB move op cnt : 0
LB apply : 3.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.9971784894016564e-21,-3.323841524585548e-21,7.478340366352647e-22)
sum a = (1.9452719497917462e-19,1.0283168948974962e-19,-1.3124301635169477e-19)
sum e = 7.856742067953813e-10
sum de = -6.782881022934827e-23
Info: cfl dt = 0.02836397156442427 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 | 3.2825e+04 | 2592 | 1 | 7.896e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1024.7599506716451 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03652565087117264, dt = 0.02836397156442427 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (2.0%)
patch tree reduce : 1.71 us (0.8%)
gen split merge : 782.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 203.31 us (92.4%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.676983499169155e-21,2.5943726951763416e-21,-4.677372999395613e-21)
sum a = (-2.821735097234214e-19,-1.7836145202301427e-19,-8.72348608028432e-20)
sum e = 7.856742562556669e-10
sum de = -4.963083675318166e-24
Info: cfl dt = 0.03228823016805111 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 | 3.5012e+04 | 2592 | 1 | 7.403e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1379.265849522053 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06488962243559691, dt = 0.03228823016805111 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (1.5%)
patch tree reduce : 1.57 us (0.6%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 229.96 us (93.6%)
LB move op cnt : 0
LB apply : 2.23 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.940834396509099e-21,-7.152479449897227e-21,-6.86990922738046e-21)
sum a = (3.7075295096693846e-20,1.6891953968909955e-19,-1.0606446860143475e-19)
sum e = 7.856744130050161e-10
sum de = 1.0587911840678754e-22
Info: cfl dt = 0.034904196809531905 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 | 4.4457e+04 | 2592 | 1 | 5.830e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1993.6736720978972 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09717785260364803, dt = 0.034904196809531905 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (1.9%)
patch tree reduce : 1.43 us (0.7%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 192.98 us (92.7%)
LB move op cnt : 0
LB apply : 2.87 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0516415752286513e-21,4.350070621472359e-21,-1.0875991669230821e-20)
sum a = (-3.2981205148629864e-19,-3.8632525683138376e-20,-1.8964779840239065e-19)
sum e = 7.856747320409651e-10
sum de = -4.301339185275744e-23
Info: cfl dt = 0.03664796968834204 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 | 4.4588e+04 | 2592 | 1 | 5.813e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2161.5493416722484 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13208204941317994, dt = 0.03664796968834204 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.36 us (2.0%)
patch tree reduce : 1.11 us (0.5%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 681.00 ns (0.3%)
LB compute : 200.12 us (93.3%)
LB move op cnt : 0
LB apply : 2.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9350204984207183e-20,-6.879534103822164e-22,-1.9284902933226983e-20)
sum a = (-1.8744525164473933e-19,4.463378919474776e-21,2.4141729435399687e-21)
sum e = 7.856752462151307e-10
sum de = 2.9778502051908996e-23
Info: cfl dt = 0.037810282529431846 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 | 4.4496e+04 | 2592 | 1 | 5.825e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2264.8412680104266 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16873001910152197, dt = 0.037810282529431846 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (1.8%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 440.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 671.00 ns (0.3%)
LB compute : 185.31 us (94.0%)
LB move op cnt : 0
LB apply : 1.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5081651569203333e-20,2.704836701961576e-22,-1.567428172007244e-20)
sum a = (-4.631560952503884e-19,3.912036310780365e-19,-6.801259535475456e-20)
sum e = 7.856759683075199e-10
sum de = -1.6543612251060553e-23
Info: cfl dt = 0.03858495772083536 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 | 4.4711e+04 | 2592 | 1 | 5.797e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2347.9855957958516 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20654030163095383, dt = 0.03858495772083536 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (1.6%)
patch tree reduce : 1.35 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 212.96 us (94.0%)
LB move op cnt : 0
LB apply : 2.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.937457195698518e-20,2.267641701892e-20,-1.9629972839816437e-20)
sum a = (-3.6618981244442285e-19,5.723866087557521e-21,-1.0947056055164234e-19)
sum e = 7.856768980503304e-10
sum de = 6.782881022934827e-23
Info: cfl dt = 0.039101209616246115 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 | 3.4464e+04 | 2592 | 1 | 7.521e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1846.916012723363 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2451252593517892, dt = 0.039101209616246115 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.36 us (1.9%)
patch tree reduce : 1.36 us (0.6%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 218.35 us (93.3%)
LB move op cnt : 0
LB apply : 2.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.784028663757583e-20,1.5463409226600248e-20,-2.471023109191077e-20)
sum a = (-1.771851735264148e-19,2.5773665616496737e-20,-2.875409183489063e-20)
sum e = 7.85678028431228e-10
sum de = 1.1911400820763599e-22
Info: cfl dt = 0.039445180519248724 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 | 4.4405e+04 | 2592 | 1 | 5.837e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2411.492840892 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.28422646896803533, dt = 0.039445180519248724 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (1.9%)
patch tree reduce : 1.12 us (0.5%)
gen split merge : 851.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 650.00 ns (0.3%)
LB compute : 203.41 us (93.7%)
LB move op cnt : 0
LB apply : 2.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.504403142789209e-20,1.6872064309796422e-20,-2.4266385653616885e-20)
sum a = (-2.1491281503774267e-19,-6.967615825393889e-20,-9.952444014449851e-20)
sum e = 7.856793498106225e-10
sum de = 3.8050308177439273e-23
Info: cfl dt = 0.03967429814596573 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 | 4.4741e+04 | 2592 | 1 | 5.793e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2451.1131983612545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.32367164948728405, dt = 0.03894206734922406 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (1.9%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.4%)
LB compute : 185.92 us (93.3%)
LB move op cnt : 0
LB apply : 2.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.077547801288823e-20,1.2276166292105235e-20,-2.953784768685873e-20)
sum a = (1.1699512524418746e-19,-1.3606760545009268e-19,9.951816186808374e-20)
sum e = 7.85680658557527e-10
sum de = -6.28657265540301e-23
Info: cfl dt = 0.03982685775766367 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 | 4.4178e+04 | 2592 | 1 | 5.867e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2389.4210847513536 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 13 [SPH][rank=0]
Info: time since start : 133.981983168 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00027114900000000004 s
sph::RenderFieldGetter compute custom field took : 0.00021521700000000002 s
rho_t_ampl=0.000221737, rho_t_phi=3.14159 rad
eps_t_ampl=-3.84544e-06, eps_t_phi=6.28319 rad
vx_t_ampl=9.86971e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 0.73s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.3626137168365081, dt = 0.03982685775766367 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.76 us (3.9%)
patch tree reduce : 1.56 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.4%)
LB compute : 226.38 us (90.8%)
LB move op cnt : 0
LB apply : 3.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.0048733945556e-20,5.564329030963843e-21,-2.1698786803365562e-20)
sum a = (1.722227398433046e-19,-3.399763881145346e-20,-9.734712965151948e-20)
sum e = 7.856824695400918e-10
sum de = 3.308722450212111e-24
Info: cfl dt = 0.03992836143815935 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 | 2.8598e+04 | 2592 | 1 | 9.064e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1581.8924224928362 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.40244057459417176, dt = 0.03992836143815935 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (1.9%)
patch tree reduce : 1.19 us (0.6%)
gen split merge : 871.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 192.76 us (92.5%)
LB move op cnt : 0
LB apply : 2.66 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.926940779946231e-20,6.239404100492181e-21,-2.950596116244423e-20)
sum a = (1.4789038289645168e-19,6.905276022495112e-20,1.1080905233113703e-19)
sum e = 7.856843153281747e-10
sum de = 7.940933880509066e-23
Info: cfl dt = 0.03999583473993659 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 | 2.8963e+04 | 2592 | 1 | 8.949e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1606.1528451365311 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.44236893603233113, dt = 0.03999583473993659 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (1.9%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 225.51 us (93.1%)
LB move op cnt : 0
LB apply : 2.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.5010259419786274e-20,1.1058498343677949e-20,-2.0918392982824513e-20)
sum a = (4.932527625814634e-19,1.8185915034678834e-19,2.7079217349501876e-20)
sum e = 7.856863036914066e-10
sum de = 1.4889251025954498e-23
Info: cfl dt = 0.040040621027494075 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 | 2.8842e+04 | 2592 | 1 | 8.987e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1602.1441799498073 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4823647707722677, dt = 0.040040621027494075 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.8%)
patch tree reduce : 1.58 us (0.6%)
gen split merge : 801.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 235.36 us (93.5%)
LB move op cnt : 0
LB apply : 2.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0401846559435835e-20,2.0596237215599163e-20,-2.1508546624575565e-20)
sum a = (-3.222788471087428e-19,1.5084110275718205e-19,-1.1179766695540415e-21)
sum e = 7.856884396433742e-10
sum de = -4.963083675318166e-23
Info: cfl dt = 0.04007028250896176 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 | 2.9157e+04 | 2592 | 1 | 8.890e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1621.4882705964694 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5224053917997618, dt = 0.04007028250896176 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.58 us (1.9%)
patch tree reduce : 1.57 us (0.6%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 226.01 us (93.3%)
LB move op cnt : 0
LB apply : 2.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (57.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.774452751538077e-20,2.6019438052504458e-20,-2.2117860845440882e-20)
sum a = (3.9926229679540267e-19,-1.5313671615764026e-19,1.9928273187527395e-20)
sum e = 7.856907162128235e-10
sum de = -1.819797347616661e-23
Info: cfl dt = 0.040089860654600996 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 | 2.9470e+04 | 2592 | 1 | 8.795e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1640.087854937432 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5624756743087235, dt = 0.040089860654600996 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.63 us (2.2%)
patch tree reduce : 1.47 us (0.7%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 194.01 us (91.9%)
LB move op cnt : 0
LB apply : 2.67 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7430959109414896e-20,1.37900673713868e-20,-2.0897274561502248e-20)
sum a = (1.9924992832668094e-19,2.1030315369944792e-20,6.335766286182055e-20)
sum e = 7.856931267380156e-10
sum de = 1.3234889800848443e-23
Info: cfl dt = 0.040102716464576485 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 | 2.9331e+04 | 2592 | 1 | 8.837e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1633.1657224088372 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6025655349633244, dt = 0.040102716464576485 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.65 us (2.1%)
patch tree reduce : 1.48 us (0.7%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 200.04 us (92.3%)
LB move op cnt : 0
LB apply : 2.79 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.451265373815539e-20,1.8124731883463747e-20,-1.748592108171754e-20)
sum a = (-2.648690762410262e-19,-6.050713259507094e-20,-7.980337362228905e-20)
sum e = 7.856956647034051e-10
sum de = 1.6543612251060553e-23
Info: cfl dt = 0.04011109064036675 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 | 2.9172e+04 | 2592 | 1 | 8.885e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1624.8130372991031 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.642668251427901, dt = 0.04011109064036675 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (2.0%)
patch tree reduce : 1.63 us (0.8%)
gen split merge : 812.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 197.05 us (92.1%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.5414030045824834e-20,1.4062721368167578e-20,-2.3557494661937114e-20)
sum a = (4.356425225384688e-20,-1.0415819149359184e-19,1.7694706104446478e-20)
sum e = 7.856983236600584e-10
sum de = -5.1285197978287716e-23
Info: cfl dt = 0.04011647702747121 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 | 2.9138e+04 | 2592 | 1 | 8.896e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1623.2766103012834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6827793420682677, dt = 0.04011647702747121 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (2.1%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 731.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 207.30 us (92.8%)
LB move op cnt : 0
LB apply : 2.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.931450890949866e-20,9.008801800220136e-21,-2.0892268234400214e-20)
sum a = (3.4321637359556073e-19,1.4812543608544626e-19,3.87344513879483e-20)
sum e = 7.85701097174682e-10
sum de = -4.963083675318166e-24
Info: cfl dt = 0.04011987157386627 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 | 2.8915e+04 | 2592 | 1 | 8.964e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1611.0722944822974 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.722895819095739, dt = 0.0023316145772772634 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (1.9%)
patch tree reduce : 1.78 us (0.8%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.6%)
LB compute : 201.37 us (87.2%)
LB move op cnt : 0
LB apply : 14.81 us (6.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1584943331568068e-20,1.441458867476218e-20,-2.0379934193735775e-20)
sum a = (-3.4027834994476567e-19,-1.9270487163725558e-19,8.776804505523769e-20)
sum e = 7.856799053172474e-10
sum de = 4.4667753077863494e-23
Info: cfl dt = 0.04012249226900421 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 | 3.0554e+04 | 2592 | 1 | 8.483e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.94553901483768 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 23 [SPH][rank=0]
Info: time since start : 135.104678298 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00031202000000000004 s
sph::RenderFieldGetter compute custom field took : 0.00024019400000000002 s
rho_t_ampl=0.000437794, rho_t_phi=3.14159 rad
eps_t_ampl=-1.4917e-05, eps_t_phi=6.28319 rad
vx_t_ampl=9.49357e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 1.09s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 0.7252274336730162, dt = 0.04012249226900421 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.90 us (4.1%)
patch tree reduce : 1.60 us (0.7%)
gen split merge : 861.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 216.88 us (90.7%)
LB move op cnt : 0
LB apply : 2.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.4046895998027585e-20,6.2851630896877685e-21,-1.6801297763655887e-20)
sum a = (2.1692079317044487e-19,6.50436463052449e-20,7.416943717054361e-20)
sum e = 7.857029920584182e-10
sum de = -8.023651941764368e-23
Info: cfl dt = 0.04012367399976547 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 | 4.2796e+04 | 2592 | 1 | 6.057e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2384.8205340254035 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7653499259420204, dt = 0.04012367399976547 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.08 us (1.8%)
patch tree reduce : 1.32 us (0.6%)
gen split merge : 841.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 206.04 us (93.2%)
LB move op cnt : 0
LB apply : 2.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3382139044784588e-20,1.40657574183695e-20,-1.4098152465739944e-20)
sum a = (-2.584277715927507e-19,-2.4540184532176306e-19,6.36350198304433e-20)
sum e = 7.857065627761004e-10
sum de = -4.0531850015098356e-23
Info: cfl dt = 0.04012426564063797 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 | 4.3658e+04 | 2592 | 1 | 5.937e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2432.9301587374866 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8054735999417859, dt = 0.04012426564063797 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (1.8%)
patch tree reduce : 1.20 us (0.5%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 531.00 ns (0.2%)
LB compute : 214.03 us (94.3%)
LB move op cnt : 0
LB apply : 2.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.260088883208819e-20,-2.0088510773691438e-21,-1.175618378958343e-20)
sum a = (6.938731113358641e-19,-6.433314637088694e-20,6.618164862533265e-20)
sum e = 7.857096452927009e-10
sum de = -1.1580528575742387e-23
Info: cfl dt = 0.04012446410365767 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 | 3.2709e+04 | 2592 | 1 | 7.924e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1822.8357751930098 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8455978655824239, dt = 0.04012446410365767 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (2.2%)
patch tree reduce : 1.50 us (0.8%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 184.52 us (92.4%)
LB move op cnt : 0
LB apply : 2.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (57.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0937072382377974e-20,-9.575689499445258e-22,-9.049589799866777e-21)
sum a = (-2.214625702234636e-19,1.052517857625198e-19,1.3021771686465607e-19)
sum e = 7.857128169748323e-10
sum de = 1.166324663699769e-22
Info: cfl dt = 0.04012440070082066 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 | 3.2130e+04 | 2592 | 1 | 8.067e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1790.5620879798091 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8857223296860816, dt = 0.04012440070082066 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.18 us (1.9%)
patch tree reduce : 1.14 us (0.5%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 202.08 us (92.8%)
LB move op cnt : 0
LB apply : 2.73 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (55.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4749273092581835e-20,6.667718252551707e-21,-2.5399754893405404e-21)
sum a = (-2.3392452288992313e-20,7.96071105579847e-20,8.1935663440788e-20)
sum e = 7.857160703423493e-10
sum de = 4.218621124020441e-23
Info: cfl dt = 0.04012416303487777 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 | 3.1700e+04 | 2592 | 1 | 8.177e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1766.6082369391813 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9258467303869022, dt = 0.04012416303487777 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (2.1%)
patch tree reduce : 1.33 us (0.6%)
gen split merge : 1.03 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 197.85 us (92.4%)
LB move op cnt : 0
LB apply : 2.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1830967721322327e-20,9.347247582560568e-21,-2.210198001890876e-22)
sum a = (-3.429008811229921e-19,1.2868744881252554e-20,-1.4043098679783887e-19)
sum e = 7.857193988591e-10
sum de = -1.075334796318936e-23
Info: cfl dt = 0.040123809568826656 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 | 3.2258e+04 | 2592 | 1 | 8.035e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1797.6765933077766 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.96597089342178, dt = 0.040123809568826656 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.74 us (2.2%)
patch tree reduce : 1.34 us (0.6%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 199.55 us (92.5%)
LB move op cnt : 0
LB apply : 2.73 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.089197127234163e-20,8.524856681775682e-21,-1.0316783835875216e-20)
sum a = (5.606564147937747e-20,-1.8129345652776947e-19,-5.188718720107904e-20)
sum e = 7.857227959363749e-10
sum de = 7.610061635487855e-23
Info: cfl dt = 0.04012337933887674 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 | 3.2695e+04 | 2592 | 1 | 7.928e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1822.0381229084612 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0060947029906067, dt = 0.04012337933887674 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.81 us (3.3%)
patch tree reduce : 3.34 us (1.4%)
gen split merge : 841.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 216.78 us (90.4%)
LB move op cnt : 0
LB apply : 2.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2084473079801677e-20,-2.6443547948998952e-21,-1.0622315854011535e-20)
sum a = (2.1727572220208455e-19,-1.1551294222425644e-19,1.0793398131466771e-19)
sum e = 7.857262549968976e-10
sum de = -5.542110104105285e-23
Info: cfl dt = 0.040122898429647516 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 | 3.2342e+04 | 2592 | 1 | 8.014e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1802.3451799999941 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0462180823294833, dt = 0.040122898429647516 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.36 us (2.0%)
patch tree reduce : 1.48 us (0.7%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 196.61 us (92.3%)
LB move op cnt : 0
LB apply : 2.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0411251594763649e-20,-5.9594263547042264e-21,-3.0854089992466424e-21)
sum a = (-1.9714993155614623e-19,-1.1923589717968748e-19,-9.314900041998332e-20)
sum e = 7.85729769483136e-10
sum de = -1.6543612251060553e-24
Info: cfl dt = 0.04012238429088929 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 | 3.2699e+04 | 2592 | 1 | 7.927e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1822.1841216730584 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0863409807591309, dt = 0.0015001697503935763 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (1.9%)
patch tree reduce : 1.61 us (0.7%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 210.28 us (92.6%)
LB move op cnt : 0
LB apply : 2.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.690513832180057e-20,-6.213003943028098e-21,-7.259164337990369e-21)
sum a = (-1.7640630148476107e-19,-1.48371478107307e-19,-7.212353694349266e-20)
sum e = 7.856853038582048e-10
sum de = -2.0679515313825692e-23
Info: cfl dt = 0.0401224085472098 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 | 3.3694e+04 | 2592 | 1 | 7.693e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.20472255349665 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 33 [SPH][rank=0]
Info: time since start : 136.09591171900001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00029687800000000004 s
sph::RenderFieldGetter compute custom field took : 0.00021878200000000002 s
rho_t_ampl=0.000642965, rho_t_phi=3.14159 rad
eps_t_ampl=-3.24319e-05, eps_t_phi=6.28319 rad
vx_t_ampl=8.89683e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 1.45s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 1.0878411505095245, dt = 0.0401224085472098 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.71 us (3.5%)
patch tree reduce : 1.41 us (0.5%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 254.97 us (91.9%)
LB move op cnt : 0
LB apply : 3.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.602812898690912e-20,-1.2188310188217649e-20,-1.0137163470958327e-20)
sum a = (-1.32835476471069e-19,-1.8347802623162456e-19,-1.311156703833489e-19)
sum e = 7.857320368040566e-10
sum de = -4.963083675318166e-24
Info: cfl dt = 0.04012185761252067 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 | 4.4217e+04 | 2592 | 1 | 5.862e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2463.990672804084 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1279635590567343, dt = 0.04012185761252067 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (1.8%)
patch tree reduce : 1.10 us (0.5%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.4%)
LB compute : 183.71 us (91.0%)
LB move op cnt : 0
LB apply : 8.37 us (4.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.9104180594452926e-20,-2.0253625689958418e-20,-1.6581220968322272e-20)
sum a = (-2.172888677217749e-19,4.7762140457778395e-21,-1.3173170933534707e-19)
sum e = 7.857363558770276e-10
sum de = 3.7223127564886245e-23
Info: cfl dt = 0.040121298089210056 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 | 4.4396e+04 | 2592 | 1 | 5.838e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2473.9423522872553 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.168085416669255, dt = 0.040121298089210056 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (1.9%)
patch tree reduce : 1.03 us (0.5%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.4%)
LB compute : 186.68 us (93.1%)
LB move op cnt : 0
LB apply : 2.57 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.046190960692236e-20,-1.6285784080608168e-20,-2.187882645992516e-20)
sum a = (5.774169523989814e-20,1.0989936884414005e-20,-1.3920063330807566e-19)
sum e = 7.857399993682058e-10
sum de = 4.4667753077863494e-23
Info: cfl dt = 0.040120733594195664 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 | 4.4779e+04 | 2592 | 1 | 5.788e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2495.254788522306 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.208206714758465, dt = 0.040120733594195664 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (1.8%)
patch tree reduce : 962.00 ns (0.5%)
gen split merge : 601.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.4%)
LB compute : 193.44 us (93.4%)
LB move op cnt : 0
LB apply : 2.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.9735165539590114e-20,-1.5719294341451796e-20,-2.7613489447579754e-20)
sum a = (2.444606569217452e-19,2.7629581923187e-19,5.697217360503619e-20)
sum e = 7.857436717290305e-10
sum de = 2.6469779601696886e-23
Info: cfl dt = 0.04012016657773062 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 | 4.4405e+04 | 2592 | 1 | 5.837e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2474.4014569136634 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2483274483526607, dt = 0.04012016657773062 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (1.9%)
patch tree reduce : 1.08 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.2%)
LB compute : 183.89 us (93.7%)
LB move op cnt : 0
LB apply : 2.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.000748096872509e-20,6.874696000566985e-22,-2.1392457889957553e-20)
sum a = (-2.392090218054471e-19,3.897523348944092e-19,-6.605375425838394e-20)
sum e = 7.857473670525953e-10
sum de = -2.481541837659083e-23
Info: cfl dt = 0.04011959873035092 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 | 4.4960e+04 | 2592 | 1 | 5.765e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2505.2884898841057 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2884476149303914, dt = 0.04011959873035092 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 us (1.8%)
patch tree reduce : 942.00 ns (0.5%)
gen split merge : 701.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 178.07 us (93.3%)
LB move op cnt : 0
LB apply : 2.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.686003721176423e-20,1.8600088766876123e-20,-2.6510418365067735e-20)
sum a = (-2.4924562608903554e-19,-2.621908820028609e-19,-2.647279559449907e-20)
sum e = 7.85751079140654e-10
sum de = -3.3914405114674135e-23
Info: cfl dt = 0.040119031235373845 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 | 4.4507e+04 | 2592 | 1 | 5.824e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2480.0062678901863 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3285672136607423, dt = 0.040119031235373845 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (1.7%)
patch tree reduce : 1.34 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.5%)
LB compute : 195.52 us (92.7%)
LB move op cnt : 0
LB apply : 2.94 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.7770818554761485e-20,-4.996350150905048e-21,-2.677849518893089e-20)
sum a = (-3.1290280518959485e-19,1.440837793020535e-19,1.3280866119100675e-19)
sum e = 7.857548018170337e-10
sum de = -3.970466940254533e-23
Info: cfl dt = 0.040118464937274945 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 | 4.4643e+04 | 2592 | 1 | 5.806e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2487.535754450873 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3686862448961161, dt = 0.040118464937274945 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.8%)
patch tree reduce : 1.14 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.4%)
LB compute : 187.27 us (93.6%)
LB move op cnt : 0
LB apply : 2.52 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.170506942654112e-20,8.93322789942215e-21,-1.8255306701575505e-20)
sum a = (1.6359599254650707e-19,-1.4683186046326012e-20,4.4715575580174953e-20)
sum e = 7.85758528990294e-10
sum de = 1.3234889800848443e-23
Info: cfl dt = 0.04011790045392266 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 | 4.4092e+04 | 2592 | 1 | 5.879e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2456.8272414339644 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4088047098333911, dt = 0.04011790045392266 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.56 us (1.7%)
patch tree reduce : 871.00 ns (0.4%)
gen split merge : 581.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 711.00 ns (0.3%)
LB compute : 193.70 us (94.0%)
LB move op cnt : 0
LB apply : 2.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.784969167290364e-20,5.159642153308716e-21,-1.8228491374859016e-20)
sum a = (-2.3275457163748127e-19,-1.0119451867449472e-19,3.303365855982043e-20)
sum e = 7.857622546606311e-10
sum de = 5.790264287871194e-24
Info: cfl dt = 0.04011733825138797 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 | 4.3559e+04 | 2592 | 1 | 5.951e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2427.0556528175866 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4489226102873138, dt = 0.0015322570587186224 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (1.6%)
patch tree reduce : 1.29 us (0.6%)
gen split merge : 721.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 213.55 us (93.7%)
LB move op cnt : 0
LB apply : 2.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.2608369800813284e-20,3.2692548022116665e-21,-1.8412202310421e-20)
sum a = (-3.972050229638616e-19,-2.7959904185156283e-20,5.882816957895947e-20)
sum e = 7.856913998135298e-10
sum de = 8.106370003019671e-23
Info: cfl dt = 0.04011731759065334 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 | 4.6256e+04 | 2592 | 1 | 5.604e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.4384882630929 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 43 [SPH][rank=0]
Info: time since start : 137.065250502 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00030506 s
sph::RenderFieldGetter compute custom field took : 0.00027414400000000004 s
rho_t_ampl=0.000832658, rho_t_phi=3.14159 rad
eps_t_ampl=-5.54982e-05, eps_t_phi=6.28319 rad
vx_t_ampl=8.1087e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 1.81s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 1.4504548673460325, dt = 0.04011731759065334 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.05 us (3.9%)
patch tree reduce : 1.50 us (0.6%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.4%)
LB compute : 236.64 us (91.2%)
LB move op cnt : 0
LB apply : 3.66 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.127500776112184e-20,2.203774486527736e-21,-1.6032412037353674e-20)
sum a = (1.564316843152619e-21,-1.9324822834273809e-19,2.0100496525113142e-20)
sum e = 7.857646304500184e-10
sum de = 6.948317145445432e-23
Info: cfl dt = 0.040116757906437955 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 | 4.3812e+04 | 2592 | 1 | 5.916e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2441.12979925527 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4905721849366858, dt = 0.040116757906437955 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (1.9%)
patch tree reduce : 901.00 ns (0.5%)
gen split merge : 701.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.5%)
LB compute : 183.25 us (92.7%)
LB move op cnt : 0
LB apply : 2.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.057455473317031e-20,-8.865009841185272e-21,-1.600287046417986e-20)
sum a = (-1.4074907932466462e-19,-5.255794440887605e-21,-7.034908407081392e-20)
sum e = 7.857690658492976e-10
sum de = 3.556876633978019e-23
Info: cfl dt = 0.040116201237603594 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 | 4.3342e+04 | 2592 | 1 | 5.980e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2414.9156917289147 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5306889428431236, dt = 0.040116201237603594 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.86 us (2.2%)
patch tree reduce : 1.42 us (0.6%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 202.32 us (92.2%)
LB move op cnt : 0
LB apply : 2.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.203744790316262e-20,-5.303780722726041e-21,-2.063928044140011e-20)
sum a = (-2.2318463330290055e-19,-1.8153007588219592e-19,1.214485762985575e-19)
sum e = 7.857727537185162e-10
sum de = 3.226004388956808e-23
Info: cfl dt = 0.04011564782319537 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 | 4.3718e+04 | 2592 | 1 | 5.929e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2435.8540772452484 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5708051440807271, dt = 0.04011564782319537 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (2.6%)
patch tree reduce : 1.56 us (0.8%)
gen split merge : 941.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 186.11 us (91.4%)
LB move op cnt : 0
LB apply : 2.81 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.079236401694113e-20,-1.6122209654929904e-20,-1.1920195355837309e-20)
sum a = (-1.227660083882547e-19,-2.387600201485233e-19,-5.283508222616431e-20)
sum e = 7.857764144269488e-10
sum de = 4.4667753077863494e-23
Info: cfl dt = 0.0401150978604558 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 | 4.4166e+04 | 2592 | 1 | 5.869e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2460.73660027848 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6109207919039226, dt = 0.0401150978604558 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (2.4%)
patch tree reduce : 1.55 us (0.8%)
gen split merge : 902.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 185.84 us (91.3%)
LB move op cnt : 0
LB apply : 2.85 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.147593104083977e-20,-2.6847875378850046e-20,-1.753543078316254e-20)
sum a = (2.1244474371587792e-19,5.564714153611022e-20,1.2661869957975302e-20)
sum e = 7.857800449654099e-10
sum de = 1.819797347616661e-23
Info: cfl dt = 0.0401145515311865 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 | 4.4457e+04 | 2592 | 1 | 5.830e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2476.941984183259 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6510358897643784, dt = 0.0401145515311865 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.05 us (1.9%)
patch tree reduce : 1.38 us (0.7%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 195.09 us (92.6%)
LB move op cnt : 0
LB apply : 2.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.917172461066453e-20,-1.8710644641459486e-20,-1.5713797225039067e-20)
sum a = (1.693011480921225e-19,1.0403194828984674e-19,7.7247173877717e-20)
sum e = 7.85783640059725e-10
sum de = 1.075334796318936e-23
Info: cfl dt = 0.04011400900610176 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 | 4.4883e+04 | 2592 | 1 | 5.775e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2500.6416957265674 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.691150441295565, dt = 0.04011400900610176 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (2.1%)
patch tree reduce : 1.42 us (0.7%)
gen split merge : 982.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.4%)
LB compute : 198.88 us (92.7%)
LB move op cnt : 0
LB apply : 2.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.3939807773902e-20,-1.3567357363234284e-20,-1.1319698145290415e-20)
sum a = (-4.874358701184799e-19,-2.2318458195321422e-19,8.180524519162657e-20)
sum e = 7.857871945197009e-10
sum de = -4.3840572465310467e-23
Info: cfl dt = 0.04011347044771725 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 | 4.4647e+04 | 2592 | 1 | 5.805e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2487.47922737942 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7312644503016668, dt = 0.04011347044771725 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (2.0%)
patch tree reduce : 902.00 ns (0.5%)
gen split merge : 831.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 176.57 us (93.5%)
LB move op cnt : 0
LB apply : 1.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.604116685775658e-20,-2.908343532119158e-20,-7.94678460295909e-21)
sum a = (2.994155019872874e-19,8.173658204845015e-20,5.1727215602779747e-20)
sum e = 7.857907032909334e-10
sum de = 8.106370003019671e-23
Info: cfl dt = 0.04011293601226497 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 | 3.5457e+04 | 2592 | 1 | 7.310e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1975.3981856868234 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.771377920749384, dt = 0.04011293601226497 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.46 us (2.2%)
patch tree reduce : 1.47 us (0.7%)
gen split merge : 812.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 181.86 us (91.8%)
LB move op cnt : 0
LB apply : 2.70 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.888252317747666e-20,-1.9688496717488745e-20,-6.475121188910888e-21)
sum a = (-1.2397539619976764e-19,-1.4840413650778774e-19,1.8658034493374908e-19)
sum e = 7.857941614591754e-10
sum de = 7.444625512977249e-24
Info: cfl dt = 0.04011240585096028 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 | 4.4690e+04 | 2592 | 1 | 5.800e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2489.795529398844 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.811490856761649, dt = 0.0015777274208914616 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.23 us (2.1%)
patch tree reduce : 1.46 us (0.7%)
gen split merge : 861.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.6%)
LB compute : 181.36 us (92.0%)
LB move op cnt : 0
LB apply : 2.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.582335757398576e-20,-2.4538885385113156e-20,-3.4760707885570006e-21)
sum a = (-4.259148379676038e-20,1.8643191693548337e-19,1.352418592936097e-20)
sum e = 7.85697326857728e-10
sum de = -5.293955920339377e-23
Info: cfl dt = 0.040112385101120716 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 | 4.5982e+04 | 2592 | 1 | 5.637e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.75951353544612 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 53 [SPH][rank=0]
Info: time since start : 137.900474694 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000304138 s
sph::RenderFieldGetter compute custom field took : 0.000249257 s
rho_t_ampl=0.00100296, rho_t_phi=3.14159 rad
eps_t_ampl=-8.31389e-05, eps_t_phi=6.28319 rad
vx_t_ampl=7.16142e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 2.18s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 1.8130685841825405, dt = 0.040112385101120716 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.89 us (3.9%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 228.50 us (91.0%)
LB move op cnt : 0
LB apply : 3.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.010879699304251e-20,-1.6795352692511564e-20,-3.0701011580854493e-21)
sum a = (-1.7700442263067238e-19,1.9496962387625322e-21,2.2125812762801457e-19)
sum e = 7.8579634787726e-10
sum de = 3.639594695233322e-23
Info: cfl dt = 0.04011185954571043 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 | 4.3508e+04 | 2592 | 1 | 5.958e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2423.896618453267 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8531809692836612, dt = 0.04011185954571043 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (1.9%)
patch tree reduce : 1.28 us (0.6%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 185.26 us (92.8%)
LB move op cnt : 0
LB apply : 2.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.873225790991745e-20,-2.041684066783265e-20,9.97132571467249e-21)
sum a = (6.236234541105902e-20,3.7825359964338616e-20,1.274368528526914e-19)
sum e = 7.858003424509185e-10
sum de = -1.6543612251060553e-23
Info: cfl dt = 0.04011133855002091 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 | 4.5247e+04 | 2592 | 1 | 5.729e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2520.7671704299823 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8932928288293716, dt = 0.04011133855002091 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (1.9%)
patch tree reduce : 1.06 us (0.5%)
gen split merge : 691.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.6%)
LB compute : 182.12 us (92.7%)
LB move op cnt : 0
LB apply : 2.68 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.934635685100174e-20,-1.818153747392257e-20,1.3201315565099936e-20)
sum a = (-1.5581384488981506e-19,-1.4032965508704413e-19,-9.530495968582238e-20)
sum e = 7.858036230368953e-10
sum de = 2.2333876538931747e-23
Info: cfl dt = 0.04011082226537305 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 | 4.1030e+04 | 2592 | 1 | 6.317e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2285.7710259282408 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9334041673793925, dt = 0.04011082226537305 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (2.1%)
patch tree reduce : 981.00 ns (0.5%)
gen split merge : 701.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 651.00 ns (0.3%)
LB compute : 181.96 us (93.5%)
LB move op cnt : 0
LB apply : 2.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.291253317145134e-20,-2.738412015278134e-20,4.9113191401454e-21)
sum a = (-4.238115548171465e-20,-3.1341332377069463e-20,-1.7598417055703588e-21)
sum e = 7.858068298303279e-10
sum de = 4.0531850015098356e-23
Info: cfl dt = 0.04011031082849837 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 | 4.4239e+04 | 2592 | 1 | 5.859e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2464.5186574424783 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9735149896447655, dt = 0.04011031082849837 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (1.7%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.4%)
LB compute : 196.32 us (93.7%)
LB move op cnt : 0
LB apply : 2.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.991535468204968e-20,-2.6452534144099785e-20,6.716817142873685e-21)
sum a = (-1.6247862337282663e-19,-3.031531429529975e-20,-1.461180119927919e-19)
sum e = 7.858099634994723e-10
sum de = 9.098986738083304e-24
Info: cfl dt = 0.04010980437324444 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 | 3.3207e+04 | 2592 | 1 | 7.806e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1849.9264496409498 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.013625300473264, dt = 0.04010980437324444 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (1.9%)
patch tree reduce : 1.15 us (0.5%)
gen split merge : 641.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.4%)
LB compute : 207.90 us (93.4%)
LB move op cnt : 0
LB apply : 2.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.911721846530039e-20,-2.765006017807964e-20,-2.0390732739926227e-21)
sum a = (-8.389470666386567e-20,5.470261540648346e-20,-7.654649776768093e-20)
sum e = 7.858130200865449e-10
sum de = 3.88774887899923e-23
Info: cfl dt = 0.0401093030307213 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 | 3.2573e+04 | 2592 | 1 | 7.957e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1814.5996985640581 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0537351048465085, dt = 0.0401093030307213 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.22 us (1.9%)
patch tree reduce : 1.53 us (0.7%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.4%)
LB compute : 209.33 us (92.6%)
LB move op cnt : 0
LB apply : 2.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0101017330071196e-19,-2.3750616350868283e-20,-3.714050036136345e-21)
sum a = (7.155106367461937e-20,-9.289748771336825e-20,1.7223773480418645e-20)
sum e = 7.858159957681655e-10
sum de = 9.098986738083304e-24
Info: cfl dt = 0.04010880692932907 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 | 3.2822e+04 | 2592 | 1 | 7.897e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1828.4044689308187 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0938444078772296, dt = 0.04010880692932907 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (1.7%)
patch tree reduce : 1.56 us (0.7%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 13.43 us (5.9%)
LB compute : 200.60 us (87.7%)
LB move op cnt : 0
LB apply : 2.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.383271954977641e-20,-3.043747519898476e-20,-1.1426949186345719e-21)
sum a = (5.886563717342375e-20,-1.4331666633856028e-19,-2.1893121319635876e-20)
sum e = 7.858188868880836e-10
sum de = 9.926167350636332e-24
Info: cfl dt = 0.04010831619476918 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 | 3.5760e+04 | 2592 | 1 | 7.248e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1992.0613855260679 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1339532148065588, dt = 0.04010831619476918 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (2.0%)
patch tree reduce : 1.05 us (0.5%)
gen split merge : 761.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 196.13 us (87.1%)
LB move op cnt : 0
LB apply : 2.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.551534607014226e-20,-3.7196377656966754e-20,-2.805257141616063e-21)
sum a = (3.076708883528323e-19,2.1783512568453285e-19,-8.399894235236598e-20)
sum e = 7.858216899582526e-10
sum de = 8.437242248040882e-23
Info: cfl dt = 0.04010783095004559 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 | 4.4914e+04 | 2592 | 1 | 5.771e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2501.9902224136495 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.174061531001328, dt = 0.001620770017721096 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (2.0%)
patch tree reduce : 1.13 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.4%)
LB compute : 185.77 us (93.4%)
LB move op cnt : 0
LB apply : 2.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.620831812936869e-20,-2.9601450956489757e-20,-4.18688006266118e-21)
sum a = (4.207880852883641e-20,-1.826283429725763e-19,7.96818065120345e-20)
sum e = 7.857023975690774e-10
sum de = 6.203854594147708e-23
Info: cfl dt = 0.04010781145845809 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 | 4.6797e+04 | 2592 | 1 | 5.539e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.343647721196 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 63 [SPH][rank=0]
Info: time since start : 138.79522509400002 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000299782 s
sph::RenderFieldGetter compute custom field took : 0.00026042400000000004 s
rho_t_ampl=0.00115071, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000114323, eps_t_phi=6.28319 rad
vx_t_ampl=6.08922e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 2.54s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 2.175682301019049, dt = 0.04010781145845809 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.42 us (4.1%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.4%)
LB compute : 232.26 us (91.1%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.702334035017089e-20,-3.7250140778512867e-20,-8.583727652901825e-22)
sum a = (5.1030907437970305e-20,-9.047655540351815e-20,-4.6298781911905916e-20)
sum e = 7.858234456036515e-10
sum de = 3.143286327701505e-23
Info: cfl dt = 0.04010733205773812 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 | 4.4387e+04 | 2592 | 1 | 5.840e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2472.5973983061367 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.215790112477507, dt = 0.04010733205773812 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (2.1%)
patch tree reduce : 1.22 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.5%)
LB compute : 175.12 us (92.1%)
LB move op cnt : 0
LB apply : 2.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.434165433333784e-20,-3.9031820843733006e-20,-5.2416962292642064e-21)
sum a = (-2.722831493463882e-19,4.73556563411031e-20,1.4732339948070926e-19)
sum e = 7.858265613966346e-10
sum de = -1.4889251025954498e-23
Info: cfl dt = 0.04010685838530991 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 | 4.5112e+04 | 2592 | 1 | 5.746e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2512.9539913412787 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.255897444535245, dt = 0.04010685838530991 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 us (2.1%)
patch tree reduce : 1.11 us (0.5%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.4%)
LB compute : 197.90 us (93.6%)
LB move op cnt : 0
LB apply : 2.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0208810591532133e-19,-3.436901258012765e-20,4.549817051978527e-21)
sum a = (1.893743566592994e-19,-2.740121446334743e-19,2.8946044591985366e-19)
sum e = 7.85829084342573e-10
sum de = 8.271806125530277e-25
Info: cfl dt = 0.040106390559905086 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 | 4.4110e+04 | 2592 | 1 | 5.876e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2457.0900919557225 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.296004302920555, dt = 0.040106390559905086 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (2.0%)
patch tree reduce : 1.15 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.5%)
LB compute : 182.31 us (92.5%)
LB move op cnt : 0
LB apply : 2.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.576137045989652e-20,-5.1802179726053036e-20,1.900936594410526e-20)
sum a = (-6.301962139557693e-20,2.2641499071774716e-19,-1.0933964535385672e-20)
sum e = 7.858314996709122e-10
sum de = 1.9852334701272664e-23
Info: cfl dt = 0.04010592869370934 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 | 4.5027e+04 | 2592 | 1 | 5.757e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2508.150424808192 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.33611069348046, dt = 0.04010592869370934 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (2.1%)
patch tree reduce : 1.54 us (0.8%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 188.20 us (92.3%)
LB move op cnt : 0
LB apply : 2.80 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.191347367498412e-20,-3.268684820693842e-20,1.2546981368243465e-20)
sum a = (3.9778342583023735e-19,-6.194230497720305e-20,-2.081244351644729e-19)
sum e = 7.858338119942729e-10
sum de = -4.1359030627651384e-24
Info: cfl dt = 0.04010547289598558 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 | 4.1636e+04 | 2592 | 1 | 6.225e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2319.245815157661 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3762166221741694, dt = 0.04010547289598558 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 us (2.3%)
patch tree reduce : 1.22 us (0.6%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 470.00 ns (0.2%)
LB compute : 182.96 us (92.8%)
LB move op cnt : 0
LB apply : 2.68 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.672665794825793e-20,-4.095250450974143e-20,2.457989976977625e-22)
sum a = (-1.662908240830305e-20,-1.0605569077624012e-19,-2.871129025415329e-20)
sum e = 7.858360188841589e-10
sum de = -2.9778502051908996e-23
Info: cfl dt = 0.040105023273235146 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 | 4.5003e+04 | 2592 | 1 | 5.760e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2506.7794551715633 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.416322095070155, dt = 0.040105023273235146 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (2.0%)
patch tree reduce : 761.00 ns (0.4%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.5%)
LB compute : 184.70 us (93.2%)
LB move op cnt : 0
LB apply : 2.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.661208875540725e-20,-4.6089629825611777e-20,2.6920565440434e-21)
sum a = (4.2696647954283246e-20,7.749915458607497e-20,7.786326474354598e-20)
sum e = 7.858381180834879e-10
sum de = -3.970466940254533e-23
Info: cfl dt = 0.04010457992918393 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 | 4.4914e+04 | 2592 | 1 | 5.771e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2501.770067984945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.45642711834339, dt = 0.04010457992918393 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.41 us (2.2%)
patch tree reduce : 1.25 us (0.6%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 187.19 us (92.0%)
LB move op cnt : 0
LB apply : 3.05 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.421960417176207e-20,-3.9300790500522446e-20,7.95181757275782e-21)
sum a = (-3.044370905090042e-19,1.3980306405413544e-19,-2.1024520941465176e-20)
sum e = 7.858401075118753e-10
sum de = -4.218621124020441e-23
Info: cfl dt = 0.04010414296476994 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 | 4.4774e+04 | 2592 | 1 | 5.789e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2493.945371854473 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.496531698272574, dt = 0.04010414296476994 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (2.3%)
patch tree reduce : 1.44 us (0.7%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.5%)
LB compute : 180.48 us (91.8%)
LB move op cnt : 0
LB apply : 2.81 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (52.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.383271954977641e-20,-3.244550468137326e-20,5.125720626641312e-21)
sum a = (-6.227032677322651e-20,-2.5604899737534506e-19,3.237917881394462e-20)
sum e = 7.858419852668193e-10
sum de = 0
Info: cfl dt = 0.040103712478131714 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 | 4.4951e+04 | 2592 | 1 | 5.766e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2503.7811613533568 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.536635841237344, dt = 0.0016601766182127164 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.41 us (2.1%)
patch tree reduce : 1.28 us (0.6%)
gen split merge : 821.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.4%)
LB compute : 193.88 us (93.0%)
LB move op cnt : 0
LB apply : 2.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.875854894929817e-20,-4.0808417290010394e-20,6.250330587146467e-21)
sum a = (2.652765873514273e-20,-1.3606342045066e-19,-2.20350402437025e-20)
sum e = 7.85706101948513e-10
sum de = 4.1359030627651384e-24
Info: cfl dt = 0.040103694797961664 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 | 4.5332e+04 | 2592 | 1 | 5.718e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.52602213057193 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 73 [SPH][rank=0]
Info: time since start : 139.61292182900002 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00029063900000000003 s
sph::RenderFieldGetter compute custom field took : 0.000260824 s
rho_t_ampl=0.00127352, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000147995, eps_t_phi=6.28319 rad
vx_t_ampl=4.92732e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 2.90s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 2.538296017855557, dt = 0.040103694797961664 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.49 us (4.0%)
patch tree reduce : 1.59 us (0.6%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.4%)
LB compute : 239.20 us (91.2%)
LB move op cnt : 0
LB apply : 3.43 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.672099339729266e-20,-4.616573006069424e-20,5.321475451260002e-21)
sum a = (-3.022154976813337e-20,4.298009822260659e-20,7.93750598588624e-20)
sum e = 7.858431432126905e-10
sum de = -6.617444900424222e-24
Info: cfl dt = 0.04010327115614574 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 | 4.4102e+04 | 2592 | 1 | 5.877e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2456.4508676935143 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5783997126535185, dt = 0.04010327115614574 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (1.9%)
patch tree reduce : 781.00 ns (0.4%)
gen split merge : 501.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.2%)
LB compute : 184.65 us (94.0%)
LB move op cnt : 0
LB apply : 2.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.931066077629321e-20,-4.085021593465083e-20,1.0538134851789191e-20)
sum a = (1.696823681631429e-19,-4.201842129775883e-21,-3.1858573579867414e-21)
sum e = 7.858450890198375e-10
sum de = -1.613002194478404e-23
Info: cfl dt = 0.04010285418690318 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 | 4.5143e+04 | 2592 | 1 | 5.742e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2514.4083590348555 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6185029838096643, dt = 0.04010285418690318 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (1.7%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 198.62 us (93.6%)
LB move op cnt : 0
LB apply : 2.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.996419627644858e-20,-4.1964709525899007e-20,8.754891453675839e-21)
sum a = (-4.544931977744424e-19,1.6905482364698717e-19,-1.3463905838100033e-19)
sum e = 7.858466265938099e-10
sum de = -8.68539643180679e-24
Info: cfl dt = 0.04010244397636518 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 | 4.4341e+04 | 2592 | 1 | 5.846e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2469.7174094551256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6586058379965674, dt = 0.04010244397636518 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (2.1%)
patch tree reduce : 1.38 us (0.7%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 182.53 us (92.2%)
LB move op cnt : 0
LB apply : 2.67 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1048809299746018e-19,-3.171171766428256e-20,7.197118814096452e-22)
sum a = (3.273891678883695e-19,1.1493980270072545e-19,8.972827980165124e-20)
sum e = 7.858480372548853e-10
sum de = -4.5908523996693036e-23
Info: cfl dt = 0.040102040611497865 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 | 4.2736e+04 | 2592 | 1 | 6.065e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2380.307763065102 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6987082819729324, dt = 0.040102040611497865 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.93 us (2.1%)
patch tree reduce : 981.00 ns (0.5%)
gen split merge : 751.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 541.00 ns (0.3%)
LB compute : 178.89 us (93.6%)
LB move op cnt : 0
LB apply : 2.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.042428946561111e-20,-2.8185842804834315e-20,8.816838306811476e-21)
sum a = (3.4726519366019104e-19,1.2792773020385817e-19,-3.121018185580697e-20)
sum e = 7.858493293565786e-10
sum de = -2.5229008682867344e-23
Info: cfl dt = 0.04010164417618032 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 | 4.4777e+04 | 2592 | 1 | 5.789e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2493.9820577071155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7388103225844302, dt = 0.04010164417618032 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (1.6%)
patch tree reduce : 872.00 ns (0.4%)
gen split merge : 631.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 661.00 ns (0.3%)
LB compute : 203.56 us (94.2%)
LB move op cnt : 0
LB apply : 1.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.55435611761257e-20,-2.2792790652492302e-20,5.1403191489171885e-21)
sum a = (-2.9432818586711877e-20,8.876625140224174e-20,2.2083539320357347e-20)
sum e = 7.858505020379639e-10
sum de = 3.226004388956808e-23
Info: cfl dt = 0.04010125475144319 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 | 4.2146e+04 | 2592 | 1 | 6.150e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2347.4136611540175 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7789119667606106, dt = 0.04010125475144319 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (1.8%)
patch tree reduce : 1.26 us (0.6%)
gen split merge : 721.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 206.41 us (93.3%)
LB move op cnt : 0
LB apply : 2.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.456138768371138e-20,-2.0022166979004163e-20,7.09447970673141e-21)
sum a = (-2.392090218054471e-19,-1.237989586776736e-20,1.3832895491988858e-19)
sum e = 7.858515546288281e-10
sum de = 3.143286327701505e-23
Info: cfl dt = 0.04010087241546209 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 | 4.3499e+04 | 2592 | 1 | 5.959e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2422.7020469647055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8190132215120536, dt = 0.04010087241546209 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.64 us (2.1%)
patch tree reduce : 1.13 us (0.5%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 209.76 us (92.9%)
LB move op cnt : 0
LB apply : 2.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.910033246124749e-20,-2.25473391520239e-20,1.497238499166173e-20)
sum a = (2.356860225284311e-19,-1.2232383623960753e-19,9.93549772787934e-20)
sum e = 7.858524866285307e-10
sum de = 1.3648480107124957e-23
Info: cfl dt = 0.04010049724355388 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 | 3.4143e+04 | 2592 | 1 | 7.592e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1901.612061897147 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8591140939275155, dt = 0.04010049724355388 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.63 us (2.1%)
patch tree reduce : 1.26 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 207.72 us (93.1%)
LB move op cnt : 0
LB apply : 3.42 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (48.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.001303787084746e-20,-2.965567622521248e-20,1.81751237317092e-20)
sum a = (1.568917775044244e-19,-3.2243135567702547e-20,1.4501795319200746e-19)
sum e = 7.85853297703873e-10
sum de = 1.819797347616661e-23
Info: cfl dt = 0.04010012930817341 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 | 3.0205e+04 | 2592 | 1 | 8.581e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1682.2809647385761 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.899214591171069, dt = 0.0016951435209957566 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (1.8%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 251.77 us (93.0%)
LB move op cnt : 0
LB apply : 3.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.042054898124856e-20,-2.790701400827711e-20,1.933650399535916e-20)
sum a = (9.527872671571581e-20,1.7313568591586272e-19,7.493266508396797e-20)
sum e = 7.857081338568077e-10
sum de = 3.7223127564886245e-24
Info: cfl dt = 0.04010011391442888 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 | 3.1580e+04 | 2592 | 1 | 8.208e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.35074796203023 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 83 [SPH][rank=0]
Info: time since start : 140.505986893 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00027700800000000003 s
sph::RenderFieldGetter compute custom field took : 0.000214495 s
rho_t_ampl=0.00136978, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000183104, eps_t_phi=6.28319 rad
vx_t_ampl=3.71099e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 3.26s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 2.900909734692065, dt = 0.04010011391442888 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.80 us (3.9%)
patch tree reduce : 1.54 us (0.6%)
gen split merge : 631.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 226.48 us (91.0%)
LB move op cnt : 0
LB apply : 3.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.762055328720228e-20,-2.0788920494693335e-20,2.2281910090112894e-20)
sum a = (4.9177389161629807e-20,4.23658019255138e-20,-1.0321050179203248e-20)
sum e = 7.858537727836603e-10
sum de = 2.0679515313825692e-23
Info: cfl dt = 0.04009975358648867 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 | 2.8958e+04 | 2592 | 1 | 8.951e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1612.7977629403829 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9410098486064937, dt = 0.04009975358648867 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (1.8%)
patch tree reduce : 1.45 us (0.6%)
gen split merge : 801.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 226.32 us (93.1%)
LB move op cnt : 0
LB apply : 2.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.546468805798354e-20,-2.1713728344784545e-20,2.015869667433322e-20)
sum a = (4.284782143072236e-19,9.158771126515744e-20,-1.101204008924313e-19)
sum e = 7.858544139435875e-10
sum de = -1.406207041340147e-23
Info: cfl dt = 0.040099400644126426 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 | 2.9868e+04 | 2592 | 1 | 8.678e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1663.4963657907547 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9811096021929826, dt = 0.040099400644126426 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.23 us (1.8%)
patch tree reduce : 1.58 us (0.7%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 215.12 us (93.1%)
LB move op cnt : 0
LB apply : 2.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.086942071732346e-20,-1.7049430940276766e-20,1.37419699140085e-20)
sum a = (-2.1349638529110658e-19,5.3817500863894776e-20,-1.2474126062986103e-19)
sum e = 7.858548677209554e-10
sum de = -1.2821299494571929e-23
Info: cfl dt = 0.04009905514080914 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 | 2.9830e+04 | 2592 | 1 | 8.689e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1661.3581741494575 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.021209002837109, dt = 0.04009905514080914 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.8%)
patch tree reduce : 1.42 us (0.6%)
gen split merge : 741.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 220.36 us (88.4%)
LB move op cnt : 0
LB apply : 2.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.257267372610475e-20,-1.5654157264392346e-20,8.446819369492289e-21)
sum a = (-4.339336049787223e-20,9.361248074527663e-20,1.1663381810346277e-19)
sum e = 7.858551899088066e-10
sum de = -2.0265925007549178e-23
Info: cfl dt = 0.04009871713771011 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 | 2.9810e+04 | 2592 | 1 | 8.695e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1660.1906111514588 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.061308057977918, dt = 0.04009871713771011 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (1.8%)
patch tree reduce : 1.31 us (0.5%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 225.44 us (93.4%)
LB move op cnt : 0
LB apply : 2.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.091633824511963e-20,-1.1101185979762288e-20,1.7963142146187558e-20)
sum a = (7.736138337775767e-20,2.0031348302912897e-19,1.308315120288835e-19)
sum e = 7.858553920103234e-10
sum de = -3.7223127564886245e-24
Info: cfl dt = 0.04009838669283959 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0335e+04 | 2592 | 1 | 8.544e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1689.460048869703 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.101406775115628, dt = 0.04009838669283959 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (2.2%)
patch tree reduce : 1.55 us (0.6%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 222.04 us (92.7%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.552667517207279e-20,-9.259375431896015e-22,2.3493929363488073e-20)
sum a = (1.9790579893834183e-19,-2.0382687991480865e-19,7.298390167971385e-20)
sum e = 7.858554746138845e-10
sum de = 2.8537731133079455e-23
Info: cfl dt = 0.040098063861349946 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9978e+04 | 2592 | 1 | 8.646e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1669.5637557663338 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1415051618084675, dt = 0.040098063861349946 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (1.8%)
patch tree reduce : 1.23 us (0.5%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 235.97 us (93.4%)
LB move op cnt : 0
LB apply : 2.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.482622214412126e-20,-1.7202555704794924e-20,2.5260644589375314e-20)
sum a = (-1.180467668194161e-20,-2.5637871371101613e-21,2.4026614729324136e-20)
sum e = 7.858554385001477e-10
sum de = 4.1359030627651384e-25
Info: cfl dt = 0.04009774869553707 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9865e+04 | 2592 | 1 | 8.679e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1663.260615102919 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1816032256698175, dt = 0.04009774869553707 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.48 us (1.9%)
patch tree reduce : 1.31 us (0.6%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 220.58 us (93.0%)
LB move op cnt : 0
LB apply : 2.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.0176448658097025e-20,-1.326886163682783e-20,2.524251153948483e-20)
sum a = (-8.02402521899461e-20,-3.268818329878198e-20,8.653670399220392e-20)
sum e = 7.85855284596706e-10
sum de = 2.1093105620102206e-23
Info: cfl dt = 0.040097441244844996 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9828e+04 | 2592 | 1 | 8.690e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1661.1669964840619 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2217009743653544, dt = 0.040097441244844996 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.32 us (1.7%)
patch tree reduce : 1.44 us (0.6%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.4%)
LB compute : 235.94 us (93.3%)
LB move op cnt : 0
LB apply : 3.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.540836549485957e-20,-1.5183383340481397e-20,2.996566886843284e-20)
sum a = (2.1187948636919251e-19,-1.523186771427685e-19,-2.363116305992034e-20)
sum e = 7.858550139731547e-10
sum de = 1.6543612251060553e-24
Info: cfl dt = 0.04009714155587116 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9882e+04 | 2592 | 1 | 8.674e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1664.1329000913556 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2617984156101993, dt = 0.0017250359183735853 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (1.8%)
patch tree reduce : 1.32 us (0.5%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 240.40 us (93.3%)
LB move op cnt : 0
LB apply : 3.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.8651568374015484e-20,-1.784637807150473e-20,2.771617947526534e-20)
sum a = (-1.851283537993137e-19,2.909308906221418e-20,-3.2944846865320915e-20)
sum e = 7.857083955293061e-10
sum de = 1.8611563782443123e-23
Info: cfl dt = 0.04009712883685551 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0769e+04 | 2592 | 1 | 8.424e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.7187249763812 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 93 [SPH][rank=0]
Info: time since start : 141.606278723 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000323586 s
sph::RenderFieldGetter compute custom field took : 0.00026373900000000003 s
rho_t_ampl=0.00143866, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000218629, eps_t_phi=6.28319 rad
vx_t_ampl=2.47464e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 3.63s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 3.263523451528573, dt = 0.04009712883685551 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.06 us (3.9%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 235.93 us (91.3%)
LB move op cnt : 0
LB apply : 3.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.625625151488767e-20,-1.6525972238231803e-20,2.6387152486452037e-20)
sum a = (7.47454249593764e-20,1.9645208931945885e-20,-1.2400118330722204e-20)
sum e = 7.858548011394779e-10
sum de = 1.819797347616661e-23
Info: cfl dt = 0.04009683727512656 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4978e+04 | 2592 | 1 | 5.763e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2504.851089903069 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3036205803654286, dt = 0.04009683727512656 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (2.0%)
patch tree reduce : 982.00 ns (0.5%)
gen split merge : 901.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.4%)
LB compute : 181.76 us (92.7%)
LB move op cnt : 0
LB apply : 2.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.857926801571851e-20,-1.5924359313652756e-20,2.630183927304001e-20)
sum a = (4.52863153332838e-20,1.635199950107972e-20,8.209840198702016e-20)
sum e = 7.858541528583278e-10
sum de = -1.0960143116327617e-23
Info: cfl dt = 0.04009655357755376 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4967e+04 | 2592 | 1 | 5.764e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2504.1997001498808 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3437174176405553, dt = 0.04009655357755376 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (1.9%)
patch tree reduce : 1.55 us (0.8%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 186.06 us (92.3%)
LB move op cnt : 0
LB apply : 3.06 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.654828522355818e-20,-1.5342259269864085e-20,3.148824814289634e-20)
sum a = (9.669844284227449e-20,-2.3946823502184134e-20,4.536572887712197e-20)
sum e = 7.858535469772105e-10
sum de = 2.0679515313825692e-24
Info: cfl dt = 0.040096277765711556 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5393e+04 | 2592 | 1 | 5.710e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2527.9294520126987 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.383813971218109, dt = 0.040096277765711556 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (1.8%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 421.00 ns (0.2%)
LB compute : 190.78 us (93.6%)
LB move op cnt : 0
LB apply : 2.69 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.221683648558517e-20,-1.7107456085784987e-20,3.2570818211300516e-20)
sum a = (-4.1421532544318504e-20,8.875793275306268e-22,-8.103087647285853e-21)
sum e = 7.858528181000647e-10
sum de = -1.2407709188295415e-24
Info: cfl dt = 0.04009600987510469 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5173e+04 | 2592 | 1 | 5.738e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2515.673660146732 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4239102489838205, dt = 0.04009600987510469 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (2.0%)
patch tree reduce : 882.00 ns (0.5%)
gen split merge : 641.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.4%)
LB compute : 177.87 us (92.7%)
LB move op cnt : 0
LB apply : 2.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.6778331818139446e-20,-1.657567873456097e-20,3.117396646939582e-20)
sum a = (3.0806525394354305e-19,-8.047815528652981e-20,1.06803794377763e-19)
sum e = 7.858519800120621e-10
sum de = 1.468245587281624e-23
Info: cfl dt = 0.04009574993808539 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5556e+04 | 2592 | 1 | 5.690e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2536.9904399122734 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4640062588589253, dt = 0.04009574993808539 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 us (1.7%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 201.01 us (93.2%)
LB move op cnt : 0
LB apply : 2.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7053479522757056e-20,-2.143253746265798e-20,3.775999843940613e-20)
sum a = (2.0204663764080463e-20,-6.373749000991758e-20,1.0970219678512721e-19)
sum e = 7.85851034505265e-10
sum de = 4.549493369041652e-24
Info: cfl dt = 0.040095497984213066 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5060e+04 | 2592 | 1 | 5.752e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2509.318933615332 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5041020087970107, dt = 0.040095497984213066 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (1.9%)
patch tree reduce : 781.00 ns (0.4%)
gen split merge : 681.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.4%)
LB compute : 178.36 us (93.6%)
LB move op cnt : 0
LB apply : 2.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1812157650666703e-20,-2.365248710036721e-20,4.221666945853708e-20)
sum a = (4.58515726799692e-20,-3.6550398603432745e-20,3.52485794569298e-20)
sum e = 7.858499835525211e-10
sum de = 6.4106497472859645e-24
Info: cfl dt = 0.04009525404026271 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6079e+04 | 2592 | 1 | 5.625e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2566.0354145388847 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5441975067812237, dt = 0.04009525404026271 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.56 us (1.8%)
patch tree reduce : 981.00 ns (0.5%)
gen split merge : 511.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 661.00 ns (0.3%)
LB compute : 182.94 us (93.6%)
LB move op cnt : 0
LB apply : 1.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.978117485850637e-20,-2.4573700472418088e-20,4.2137342774672406e-20)
sum a = (3.1471688690686428e-19,4.3240235733354067e-20,1.4610188603643712e-19)
sum e = 7.858488292375472e-10
sum de = -9.512577044359818e-24
Info: cfl dt = 0.040095018130236984 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5897e+04 | 2592 | 1 | 5.647e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2555.916078913382 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5842927608214863, dt = 0.040095018130236984 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (1.7%)
patch tree reduce : 1.34 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.4%)
LB compute : 214.65 us (93.8%)
LB move op cnt : 0
LB apply : 2.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2080732595439132e-20,-2.1242954420873596e-20,5.0217646288421884e-20)
sum a = (-2.861385271000257e-19,4.8894246991424204e-20,-8.23155840689655e-20)
sum e = 7.858475737516462e-10
sum de = -5.790264287871194e-24
Info: cfl dt = 0.040094790275381154 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.0906e+04 | 2592 | 1 | 6.336e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2277.9687366734565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.624387778951723, dt = 0.0017493894133577825 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.7%)
patch tree reduce : 1.25 us (0.6%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 196.96 us (93.2%)
LB move op cnt : 0
LB apply : 2.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4286347627936666e-20,-2.10367340807311e-20,4.549444297452516e-20)
sum a = (-1.1782329298468001e-19,-1.0305866633589734e-19,5.040541624975206e-20)
sum e = 7.857069812065953e-10
sum de = -8.68539643180679e-24
Info: cfl dt = 0.04009478051648153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.1204e+04 | 2592 | 1 | 6.291e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.11351411202261 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 103 [SPH][rank=0]
Info: time since start : 142.42349965300002 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00031331100000000004 s
sph::RenderFieldGetter compute custom field took : 0.000243829 s
rho_t_ampl=0.00148009, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000253604, eps_t_phi=6.28319 rad
vx_t_ampl=1.251e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 3.99s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 3.626137168365081, dt = 0.04009478051648153 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.39 us (4.0%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 235.48 us (91.1%)
LB move op cnt : 0
LB apply : 3.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.8831411060877995e-20,-2.5303482213978127e-20,4.763152743234042e-20)
sum a = (-3.0163709481495793e-19,-2.444992205361493e-19,2.6505683320018186e-20)
sum e = 7.858467387438902e-10
sum de = -6.72084247699335e-24
Info: cfl dt = 0.04009456106776843 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5369e+04 | 2592 | 1 | 7.329e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1969.580455443221 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6662319488815625, dt = 0.04009456106776843 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.22 us (1.9%)
patch tree reduce : 1.58 us (0.7%)
gen split merge : 772.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 205.43 us (92.9%)
LB move op cnt : 0
LB apply : 2.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.4619180208998124e-20,-3.79406400100607e-20,4.821513389775119e-20)
sum a = (-9.868341631551857e-20,1.5078424581703694e-19,4.41405401862635e-20)
sum e = 7.85844945665291e-10
sum de = 1.2407709188295415e-23
Info: cfl dt = 0.04009434973046227 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5753e+04 | 2592 | 1 | 7.250e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1990.948230599444 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.706326509949331, dt = 0.04009434973046227 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.28 us (1.9%)
patch tree reduce : 1.35 us (0.6%)
gen split merge : 832.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 207.08 us (92.9%)
LB move op cnt : 0
LB apply : 2.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.414922788006782e-20,-2.3977017117722925e-20,5.0338451076042056e-20)
sum a = (-1.106064026746734e-19,7.340411980378325e-20,8.128573537170187e-20)
sum e = 7.85843408993988e-10
sum de = -9.305781891221561e-25
Info: cfl dt = 0.040094146495770824 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7423e+04 | 2592 | 1 | 6.926e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2083.950861230233 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.746420859679793, dt = 0.040094146495770824 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (1.9%)
patch tree reduce : 1.39 us (0.6%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 205.60 us (92.9%)
LB move op cnt : 0
LB apply : 2.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.905250672457141e-20,-2.2574554485757843e-20,5.434218948134038e-20)
sum a = (-2.1849168277344267e-19,2.1268526564646245e-21,-1.3077563444144455e-22)
sum e = 7.85841768717359e-10
sum de = 3.2053248736429822e-24
Info: cfl dt = 0.040093951374305895 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.8559e+04 | 2592 | 1 | 6.722e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2147.2130218172533 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.786515006175564, dt = 0.040093951374305895 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (1.9%)
patch tree reduce : 1.19 us (0.5%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 712.00 ns (0.3%)
LB compute : 204.64 us (93.5%)
LB move op cnt : 0
LB apply : 2.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.024263036098877e-20,-2.392607822892279e-20,5.2704783409687963e-20)
sum a = (2.554174475836587e-19,1.0255369352091695e-19,8.678368642216827e-20)
sum e = 7.858400398774692e-10
sum de = 2.0679515313825692e-24
Info: cfl dt = 0.04009376437361685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6765e+04 | 2592 | 1 | 5.543e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2604.156723801033 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.82660895754987, dt = 0.04009376437361685 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.70 us (1.9%)
patch tree reduce : 1.10 us (0.6%)
gen split merge : 812.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 611.00 ns (0.3%)
LB compute : 179.47 us (93.3%)
LB move op cnt : 0
LB apply : 2.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.0320595270251007e-20,-1.779615807831266e-20,5.792664019227749e-20)
sum a = (-1.9108327421904594e-19,-1.3962390499866803e-19,-4.0104257581895395e-20)
sum e = 7.858382251400998e-10
sum de = 1.34416849539867e-24
Info: cfl dt = 0.04009358549859187 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6986e+04 | 2592 | 1 | 5.517e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2616.431912422486 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.866702721923487, dt = 0.04009358549859187 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (1.8%)
patch tree reduce : 932.00 ns (0.4%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.5%)
LB compute : 195.80 us (93.3%)
LB move op cnt : 0
LB apply : 2.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.683629757122472e-20,-2.8253418991992557e-20,5.377500904768526e-20)
sum a = (-4.250603791877305e-19,-8.322644184648159e-20,5.85616656695787e-20)
sum e = 7.85836327326168e-10
sum de = -2.3264454728053903e-25
Info: cfl dt = 0.040093414751473065 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6768e+04 | 2592 | 1 | 5.542e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2604.305166995683 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.906796307422079, dt = 0.040093414751473065 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (1.9%)
patch tree reduce : 1.11 us (0.6%)
gen split merge : 802.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 510.00 ns (0.3%)
LB compute : 179.46 us (93.5%)
LB move op cnt : 0
LB apply : 2.65 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.854694493483184e-20,-3.0456936730088844e-20,5.810088151275539e-20)
sum a = (3.4675251839226705e-19,-1.300937626709624e-19,6.657153421556808e-20)
sum e = 7.858343493142757e-10
sum de = 5.428372769879244e-25
Info: cfl dt = 0.04009325213187539 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6809e+04 | 2592 | 1 | 5.537e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2606.550651872966 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9468897221735517, dt = 0.04009325213187539 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (2.1%)
patch tree reduce : 1.03 us (0.5%)
gen split merge : 601.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.4%)
LB compute : 174.84 us (92.9%)
LB move op cnt : 0
LB apply : 2.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.9092354081132804e-20,-3.661396951506034e-20,6.093052230972734e-20)
sum a = (1.9613115378014348e-20,1.363536488775737e-19,4.8279139763292163e-20)
sum e = 7.85832294067611e-10
sum de = 2.1325750167382745e-25
Info: cfl dt = 0.04009309763680629 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6901e+04 | 2592 | 1 | 5.526e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2611.70463298499 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9869829743054273, dt = 0.001767910896161684 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (2.0%)
patch tree reduce : 1.43 us (0.7%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 193.17 us (92.8%)
LB move op cnt : 0
LB apply : 2.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.56708650911764e-20,-3.1029177634109743e-20,6.064917473553394e-20)
sum a = (-2.5713951066309563e-19,1.681373588020355e-20,-5.737063037633584e-20)
sum e = 7.857041439677647e-10
sum de = 1.3247814497919584e-25
Info: cfl dt = 0.04009309101014363 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.7254e+04 | 2592 | 1 | 5.485e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.02982730472256 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 113 [SPH][rank=0]
Info: time since start : 143.269701268 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00030280600000000003 s
sph::RenderFieldGetter compute custom field took : 0.000254024 s
rho_t_ampl=0.0014947, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000287139, eps_t_phi=6.28319 rad
vx_t_ampl=7.03885e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 4.35s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 3.988750885201589, dt = 0.04009309101014363 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.88 us (3.7%)
patch tree reduce : 1.62 us (0.6%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 246.21 us (91.4%)
LB move op cnt : 0
LB apply : 3.77 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.626800255031153e-20,-3.045899071754046e-20,5.825561914064083e-20)
sum a = (3.417835119493117e-19,3.244033890293243e-19,-5.3608142382344806e-20)
sum e = 7.858309582057155e-10
sum de = 3.4896682092080855e-25
Info: cfl dt = 0.04009294496737868 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3663e+04 | 2592 | 1 | 7.700e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1874.5110737813202 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.028843976211733, dt = 0.04009294496737868 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (1.8%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 205.11 us (93.0%)
LB move op cnt : 0
LB apply : 2.83 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.0623763818109897e-20,-1.1288509635349892e-20,5.618173572508564e-20)
sum a = (-1.495828685565853e-19,-5.638246904378962e-21,-3.606762369579939e-20)
sum e = 7.858282637031316e-10
sum de = 1.550963648536927e-25
Info: cfl dt = 0.04009280706072271 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4469e+04 | 2592 | 1 | 7.520e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1919.4074051837354 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.0689369211791115, dt = 0.04009280706072271 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.08 us (1.9%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 202.48 us (93.0%)
LB move op cnt : 0
LB apply : 2.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.63400542029137e-20,-1.812685005802323e-20,5.508730897231239e-20)
sum a = (-2.6557893430430554e-19,1.808873318588982e-19,-6.580170505152631e-20)
sum e = 7.858260038242972e-10
sum de = -4.1359030627651384e-24
Info: cfl dt = 0.040092677253247916 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5306e+04 | 2592 | 1 | 7.342e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1965.9729418907152 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.109029728239834, dt = 0.040092677253247916 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.19 us (1.9%)
patch tree reduce : 1.40 us (0.6%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 200.76 us (92.7%)
LB move op cnt : 0
LB apply : 2.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.922266349946468e-20,-7.136579400648338e-21,5.185308105550816e-20)
sum a = (-2.0257245842841896e-20,-1.4707027705670671e-19,-3.5792240888090364e-20)
sum e = 7.85823667290942e-10
sum de = 1.550963648536927e-25
Info: cfl dt = 0.04009255553202985 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7342e+04 | 2592 | 1 | 6.941e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2079.3540946992684 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.149122405493082, dt = 0.04009255553202985 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.58 us (2.1%)
patch tree reduce : 1.32 us (0.6%)
gen split merge : 852.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 203.32 us (92.7%)
LB move op cnt : 0
LB apply : 2.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.514426601553106e-20,-1.9614142371740156e-20,5.101965853070808e-20)
sum a = (-8.874540342960781e-20,8.460189454345789e-20,3.0652795851004915e-20)
sum e = 7.858212693554657e-10
sum de = 4.549493369041652e-24
Info: cfl dt = 0.04009244188124205 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5923e+04 | 2592 | 1 | 7.216e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2000.3161507029895 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.189214961025112, dt = 0.04009244188124205 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.34 us (2.1%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.4%)
LB compute : 196.16 us (92.9%)
LB move op cnt : 0
LB apply : 2.74 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.019378876658989e-20,-1.1575246283595829e-20,5.3580579629509564e-20)
sum a = (2.3784188775764987e-19,-6.375356246172649e-20,-8.139229206760599e-20)
sum e = 7.858188131816121e-10
sum de = -5.790264287871194e-24
Info: cfl dt = 0.0400923362825868 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5736e+04 | 2592 | 1 | 7.253e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1989.9424818401974 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.229307402906354, dt = 0.0400923362825868 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (2.1%)
patch tree reduce : 1.37 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.5%)
LB compute : 197.26 us (93.2%)
LB move op cnt : 0
LB apply : 2.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.4044517826984906e-20,-1.7105196699588208e-20,4.807129189739529e-20)
sum a = (5.685437266079896e-20,-8.592158148112275e-20,2.1821802793469435e-19)
sum e = 7.85816302056374e-10
sum de = -2.274746684520826e-24
Info: cfl dt = 0.040092238715315684 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7756e+04 | 2592 | 1 | 6.865e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2102.422838595056 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.269399739188941, dt = 0.040092238715315684 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (1.7%)
patch tree reduce : 931.00 ns (0.4%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 751.00 ns (0.3%)
LB compute : 206.56 us (94.0%)
LB move op cnt : 0
LB apply : 2.01 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.557925725083422e-20,-2.0992573350521306e-20,6.282618001697439e-20)
sum a = (-3.806942502327718e-20,9.88016746430455e-20,-7.798844567023243e-20)
sum e = 7.858137392948097e-10
sum de = 5.169878828456423e-25
Info: cfl dt = 0.040092149156254524 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5255e+04 | 2592 | 1 | 7.352e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1963.1196034211744 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.309491977904257, dt = 0.040092149156254524 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (1.9%)
patch tree reduce : 801.00 ns (0.4%)
gen split merge : 682.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.4%)
LB compute : 197.18 us (92.9%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.886563717342375e-20,-1.3333459542181231e-20,5.376166529630554e-20)
sum a = (-2.717178919997028e-20,-1.5616630913651277e-19,-7.226066253405419e-20)
sum e = 7.858111282335301e-10
sum de = -6.203854594147708e-25
Info: cfl dt = 0.04009206757982878 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5280e+04 | 2592 | 1 | 7.347e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1964.5420951879391 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.349584127060512, dt = 0.001780474977586266 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.28 us (2.0%)
patch tree reduce : 1.58 us (0.7%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 202.68 us (92.7%)
LB move op cnt : 0
LB apply : 2.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.859944039969401e-20,-1.8717576849108698e-20,5.37478265627123e-20)
sum a = (7.857077118927062e-20,-1.0422240427629806e-20,-1.3230195170261508e-19)
sum e = 7.857002507113821e-10
sum de = -3.9291079096268815e-24
Info: cfl dt = 0.04009206414051734 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7142e+04 | 2592 | 1 | 6.979e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.84665847896021 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 123 [SPH][rank=0]
Info: time since start : 144.400000852 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000282636 s
sph::RenderFieldGetter compute custom field took : 0.000218091 s
rho_t_ampl=0.00148375, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000318435, eps_t_phi=7.01661e-14 rad
vx_t_ampl=-1.03988e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 4.71s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 4.351364602038098, dt = 0.04009206414051734 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.34 us (4.2%)
patch tree reduce : 1.58 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 225.73 us (91.1%)
LB move op cnt : 0
LB apply : 2.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.547737947323394e-20,-1.9002259509903016e-20,4.839011722263735e-20)
sum a = (2.928558876617987e-19,1.1986762669527588e-20,1.7447929433982748e-19)
sum e = 7.858094494399876e-10
sum de = 9.719372197498075e-24
Info: cfl dt = 0.04009199084344533 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5242e+04 | 2592 | 1 | 7.355e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1962.3789178916932 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.391456666178615, dt = 0.04009199084344533 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.33 us (2.0%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.4%)
LB compute : 201.68 us (93.3%)
LB move op cnt : 0
LB apply : 2.71 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (57.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9232803515873875e-20,-1.8078581352910195e-20,6.153508619039937e-20)
sum a = (1.451528284209346e-19,-2.5323051579423424e-19,6.35032485054844e-20)
sum e = 7.858061598520689e-10
sum de = 3.5155176033503676e-24
Info: cfl dt = 0.04009192549854111 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5379e+04 | 2592 | 1 | 7.326e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1970.047293124672 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.43154865702206, dt = 0.04009192549854111 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (1.7%)
patch tree reduce : 1.26 us (0.6%)
gen split merge : 550.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.4%)
LB compute : 215.48 us (94.3%)
LB move op cnt : 0
LB apply : 2.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.5893841514522903e-20,-3.353791790751653e-20,6.185642839168759e-20)
sum a = (3.654454473919563e-20,1.6050160910095757e-19,1.0644093690274285e-19)
sum e = 7.858034333399934e-10
sum de = 1.1580528575742387e-23
Info: cfl dt = 0.040091868043512 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7774e+04 | 2592 | 1 | 6.862e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2103.359858426098 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.471640582520601, dt = 0.040091868043512 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.21 us (1.9%)
patch tree reduce : 791.00 ns (0.4%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.4%)
LB compute : 202.20 us (93.4%)
LB move op cnt : 0
LB apply : 2.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.739243075922373e-20,-1.8810622480667016e-20,6.698457169056664e-20)
sum a = (6.366375186040447e-20,7.410822670219806e-20,4.041933266914368e-20)
sum e = 7.858006611842189e-10
sum de = 5.583469134732937e-24
Info: cfl dt = 0.040091818443731754 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5378e+04 | 2592 | 1 | 5.712e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2526.7898242194906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.511732450564113, dt = 0.040091818443731754 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (1.8%)
patch tree reduce : 931.00 ns (0.4%)
gen split merge : 722.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 200.98 us (93.5%)
LB move op cnt : 0
LB apply : 2.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.448727090765458e-20,-1.7579873199657233e-20,6.728159151507791e-20)
sum a = (-3.3928586320814366e-20,-1.515698446675947e-19,1.3657687247797062e-19)
sum e = 7.857978578420461e-10
sum de = -5.583469134732937e-24
Info: cfl dt = 0.0400917766619299 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5697e+04 | 2592 | 1 | 5.672e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2544.5673366418687 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.551824269007845, dt = 0.0400917766619299 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (1.8%)
patch tree reduce : 1.05 us (0.5%)
gen split merge : 931.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.4%)
LB compute : 184.29 us (93.0%)
LB move op cnt : 0
LB apply : 2.55 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.723468452293944e-20,-2.817968084247946e-20,7.468476629765891e-20)
sum a = (-3.3924642664907255e-19,-4.010328339786978e-20,2.889256235781774e-20)
sum e = 7.857950266007249e-10
sum de = 3.1019272970738538e-24
Info: cfl dt = 0.04009174265859809 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5027e+04 | 2592 | 1 | 5.757e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2507.2150806279915 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.591916045669775, dt = 0.04009174265859809 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (1.8%)
patch tree reduce : 861.00 ns (0.4%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 721.00 ns (0.3%)
LB compute : 199.99 us (94.4%)
LB move op cnt : 0
LB apply : 1.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.779427731865957e-20,-2.755136608102937e-20,7.368449181678438e-20)
sum a = (-2.3103250855804433e-19,6.857611959938148e-20,6.476526612524583e-20)
sum e = 7.857921708333089e-10
sum de = -1.4268865566539727e-23
Info: cfl dt = 0.040091716392022296 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4941e+04 | 2592 | 1 | 5.768e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2502.446370688139 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.632007788328373, dt = 0.040091716392022296 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (1.8%)
patch tree reduce : 1.21 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.5%)
LB compute : 186.89 us (93.1%)
LB move op cnt : 0
LB apply : 2.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.447220132136151e-20,-2.261994760843861e-20,7.700014210228787e-20)
sum a = (-2.6958831780986476e-19,-2.4145100045857496e-19,5.084821140976895e-20)
sum e = 7.857892938981645e-10
sum de = 9.512577044359818e-24
Info: cfl dt = 0.040091697818312594 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5710e+04 | 2592 | 1 | 5.670e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2545.2902385812095 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.6720995047203955, dt = 0.040091697818312594 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (2.2%)
patch tree reduce : 1.16 us (0.6%)
gen split merge : 911.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 751.00 ns (0.4%)
LB compute : 182.05 us (92.5%)
LB move op cnt : 0
LB apply : 2.32 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (55.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.610598624732846e-20,-3.851924827518162e-20,7.87597539233972e-20)
sum a = (3.820088022018076e-20,9.313092338724468e-20,5.3440162546101386e-20)
sum e = 7.857863991371589e-10
sum de = 1.1994118882018901e-23
Info: cfl dt = 0.0400916868914347 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5461e+04 | 2592 | 1 | 5.702e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2531.413090514396 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.712191202538708, dt = 0.0017871163358966768 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (1.9%)
patch tree reduce : 1.27 us (0.7%)
gen split merge : 580.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 501.00 ns (0.3%)
LB compute : 177.71 us (93.9%)
LB move op cnt : 0
LB apply : 2.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.973698195734994e-20,-3.164373067963399e-20,7.890721557174303e-20)
sum a = (-3.0488403817847636e-19,3.744455069080855e-20,-2.6395752761054563e-20)
sum e = 7.856957327785192e-10
sum de = 7.651420666115506e-24
Info: cfl dt = 0.0400916865803467 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6593e+04 | 2592 | 1 | 5.563e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115.64970790297663 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 133 [SPH][rank=0]
Info: time since start : 145.24617337400002 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000282585 s
sph::RenderFieldGetter compute custom field took : 0.000277708 s
rho_t_ampl=0.00144907, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000346805, eps_t_phi=3.02425e-13 rad
vx_t_ampl=-2.05603e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 5.08s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 4.713978318874605, dt = 0.0400916865803467 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.76 us (3.9%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 230.48 us (91.1%)
LB move op cnt : 0
LB apply : 3.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.227780774195161e-20,-3.0194847931262327e-20,7.77776272907702e-20)
sum a = (5.482470442060766e-19,-1.5294118938966776e-19,9.344009239352239e-22)
sum e = 7.857845521984444e-10
sum de = -1.0339757656912846e-23
Info: cfl dt = 0.04009168355931969 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4764e+04 | 2592 | 1 | 5.790e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2492.6028758894063 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.754070005454952, dt = 0.04009168355931969 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.98 us (2.1%)
patch tree reduce : 882.00 ns (0.5%)
gen split merge : 520.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.3%)
LB compute : 180.97 us (93.5%)
LB move op cnt : 0
LB apply : 2.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.270322071412842e-20,-4.01435415519215e-20,7.836294497479679e-20)
sum a = (-8.097640129260616e-20,8.09056414248979e-20,3.934734169648575e-20)
sum e = 7.85780998620891e-10
sum de = 3.9291079096268815e-24
Info: cfl dt = 0.040091688116102905 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5518e+04 | 2592 | 1 | 5.694e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2534.5918753615433 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.794161689014271, dt = 0.040091688116102905 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 16.62 us (7.9%)
patch tree reduce : 842.00 ns (0.4%)
gen split merge : 460.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 183.89 us (87.7%)
LB move op cnt : 0
LB apply : 1.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.930601208305075e-20,-3.22030314627097e-20,8.071046605931094e-20)
sum a = (1.3616129295272962e-19,-2.783685493189845e-19,-2.1119225668905652e-19)
sum e = 7.857780794106538e-10
sum de = 1.0339757656912846e-23
Info: cfl dt = 0.04009170016625866 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5371e+04 | 2592 | 1 | 5.713e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2526.395855158116 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.834253377130374, dt = 0.04009170016625866 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.70 us (1.9%)
patch tree reduce : 1.22 us (0.6%)
gen split merge : 631.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.5%)
LB compute : 182.62 us (92.7%)
LB move op cnt : 0
LB apply : 2.66 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.854640421649262e-20,-5.056711707139486e-20,6.722113170709585e-20)
sum a = (2.1031516952603991e-19,-1.1603329427028083e-19,1.7492670938428591e-19)
sum e = 7.857751460696092e-10
sum de = 1.613002194478404e-23
Info: cfl dt = 0.040091719655803854 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5164e+04 | 2592 | 1 | 5.739e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2514.8773365993866 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.874345077296633, dt = 0.040091719655803854 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 us (1.7%)
patch tree reduce : 1.12 us (0.5%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 561.00 ns (0.3%)
LB compute : 200.64 us (94.1%)
LB move op cnt : 0
LB apply : 2.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.895017484253117e-20,-5.1967114918418e-20,8.197432720820193e-20)
sum a = (8.64580830034855e-20,-3.8611420962073e-20,-1.0129080067177565e-19)
sum e = 7.857722114518343e-10
sum de = 4.1359030627651384e-25
Info: cfl dt = 0.040091746528354566 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4705e+04 | 2592 | 1 | 5.798e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2489.2828994940874 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.914436796952437, dt = 0.040091746528354566 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.9%)
patch tree reduce : 1.03 us (0.5%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 176.82 us (93.2%)
LB move op cnt : 0
LB apply : 2.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9383976992312994e-20,-5.196197994978895e-20,7.237638461340771e-20)
sum a = (6.258581924579511e-20,-3.458817304121534e-20,1.516729835932463e-19)
sum e = 7.857692786259197e-10
sum de = 1.075334796318936e-23
Info: cfl dt = 0.040091780725578285 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5549e+04 | 2592 | 1 | 5.691e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2536.307361778271 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.954528543480791, dt = 0.040091780725578285 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.59 us (1.8%)
patch tree reduce : 1.18 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 181.75 us (92.7%)
LB move op cnt : 0
LB apply : 2.32 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.688632825114495e-20,-5.327180774768604e-20,8.352810457341906e-20)
sum a = (-6.152694763473677e-19,-3.007961923522653e-20,-5.905365302838898e-20)
sum e = 7.857663507068153e-10
sum de = -1.6543612251060553e-23
Info: cfl dt = 0.04009182218722254 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5333e+04 | 2592 | 1 | 5.718e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2524.265234829224 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.99462032420637, dt = 0.04009182218722254 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (2.1%)
patch tree reduce : 892.00 ns (0.5%)
gen split merge : 721.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.4%)
LB compute : 177.02 us (93.0%)
LB move op cnt : 0
LB apply : 2.39 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.481115255782818e-20,-5.43799339778342e-20,7.693633296247123e-20)
sum a = (-2.0664756953243e-19,-3.960497577216988e-19,-2.6118372009243362e-20)
sum e = 7.857634307622567e-10
sum de = 1.4889251025954498e-23
Info: cfl dt = 0.04009187085114867 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4840e+04 | 2592 | 1 | 5.781e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2496.8273803384795 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.034712146393592, dt = 0.04009187085114867 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (1.9%)
patch tree reduce : 891.00 ns (0.5%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 631.00 ns (0.3%)
LB compute : 181.50 us (93.8%)
LB move op cnt : 0
LB apply : 1.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.527124574699072e-20,-7.760108371336154e-20,7.654941628018992e-20)
sum a = (-4.909062873167344e-19,-1.1803356995003947e-19,-7.152862063687374e-20)
sum e = 7.857605218095089e-10
sum de = 4.1359030627651384e-25
Info: cfl dt = 0.04009192665336564 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5017e+04 | 2592 | 1 | 5.758e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2506.700349408511 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.074804017244741, dt = 0.001788018466372776 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (2.1%)
patch tree reduce : 1.27 us (0.7%)
gen split merge : 661.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 173.34 us (92.4%)
LB move op cnt : 0
LB apply : 2.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (50.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.151536759991083e-20,-7.22469546232277e-20,7.55112308739623e-20)
sum a = (-2.067658792096432e-19,7.540901695530803e-20,-4.0564929372231224e-20)
sum e = 7.856910346800491e-10
sum de = -2.0679515313825692e-24
Info: cfl dt = 0.04009192930596986 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5278e+04 | 2592 | 1 | 5.725e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.44177700860507 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 143 [SPH][rank=0]
Info: time since start : 146.054494068 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000300904 s
sph::RenderFieldGetter compute custom field took : 0.000284109 s
rho_t_ampl=0.00139301, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000371677, eps_t_phi=6.28319 rad
vx_t_ampl=-2.95819e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 5.44s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 5.076592035711114, dt = 0.04009192930596986 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.69 us (3.8%)
patch tree reduce : 1.60 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.4%)
LB compute : 230.83 us (91.1%)
LB move op cnt : 0
LB apply : 3.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.978389948514611e-20,-6.904499358489968e-20,7.391258641916039e-20)
sum a = (-1.0012942348145796e-19,1.0794150800525733e-19,3.8688000923619547e-20)
sum e = 7.85758678568039e-10
sum de = 4.1359030627651384e-23
Info: cfl dt = 0.040091992462581036 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4616e+04 | 2592 | 1 | 5.810e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2484.336296022084 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.116683965017084, dt = 0.040091992462581036 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (2.0%)
patch tree reduce : 671.00 ns (0.3%)
gen split merge : 441.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 189.57 us (93.4%)
LB move op cnt : 0
LB apply : 2.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.083554106037476e-20,-6.406243082476362e-20,7.705236689993034e-20)
sum a = (-1.801724928760487e-19,-6.125324353687134e-20,1.465968530901686e-19)
sum e = 7.85755181158408e-10
sum de = -1.613002194478404e-23
Info: cfl dt = 0.04009206265418083 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5164e+04 | 2592 | 1 | 5.739e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2514.8618864564282 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.156775957479665, dt = 0.04009206265418083 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (1.9%)
patch tree reduce : 1.57 us (0.8%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 175.98 us (92.3%)
LB move op cnt : 0
LB apply : 2.61 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0073411738721443e-19,-6.990972230203105e-20,8.509287756278472e-20)
sum a = (-7.420645865207171e-20,-1.2648870659525426e-19,7.328635625187203e-21)
sum e = 7.857523314670792e-10
sum de = -1.943874439499615e-23
Info: cfl dt = 0.04009213977779211 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5475e+04 | 2592 | 1 | 5.700e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2532.189179612336 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.196868020133846, dt = 0.04009213977779211 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (1.9%)
patch tree reduce : 811.00 ns (0.4%)
gen split merge : 721.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 581.00 ns (0.3%)
LB compute : 203.39 us (94.3%)
LB move op cnt : 0
LB apply : 1.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0055008011154942e-19,-7.629392609915155e-20,8.259492319647658e-20)
sum a = (-9.926839194173951e-20,-3.0142009104069444e-19,8.327615761975882e-21)
sum e = 7.857494965399805e-10
sum de = -1.5716431638507526e-23
Info: cfl dt = 0.040092223762683885 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4499e+04 | 2592 | 1 | 5.825e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2477.874729966716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.236960159911638, dt = 0.040092223762683885 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (1.8%)
patch tree reduce : 1.10 us (0.6%)
gen split merge : 451.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.5%)
LB compute : 179.42 us (93.5%)
LB move op cnt : 0
LB apply : 1.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0483551953060617e-19,-9.187793969207112e-20,8.294882145665723e-20)
sum a = (1.701161703129247e-19,2.029064881377384e-19,3.5222683625367415e-20)
sum e = 7.857466870346131e-10
sum de = 2.2333876538931747e-23
Info: cfl dt = 0.040092314536045275 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4685e+04 | 2592 | 1 | 5.801e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2488.211810748994 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.277052383674322, dt = 0.040092314536045275 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (1.4%)
patch tree reduce : 1.18 us (0.5%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 721.00 ns (0.3%)
LB compute : 210.22 us (94.2%)
LB move op cnt : 0
LB apply : 2.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.316229804556815e-20,-7.362846658318627e-20,8.490012190681374e-20)
sum a = (2.0559592795720133e-20,-2.6446320832058638e-20,-9.414462411174494e-20)
sum e = 7.857439055227416e-10
sum de = -9.512577044359818e-24
Info: cfl dt = 0.040092412023429475 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6070e+04 | 2592 | 1 | 7.186e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2008.5275573900094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.317144698210368, dt = 0.040092412023429475 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (2.1%)
patch tree reduce : 1.32 us (0.7%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 184.43 us (92.6%)
LB move op cnt : 0
LB apply : 2.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.56599467867362e-20,-7.928987219608223e-20,7.853231945089896e-20)
sum a = (-4.4050636482390135e-20,1.451699792161556e-19,-6.299754837434986e-20)
sum e = 7.857411545878945e-10
sum de = -2.7296960214249913e-23
Info: cfl dt = 0.0400925161487851 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4674e+04 | 2592 | 1 | 5.802e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2487.6252430331087 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.357237110233797, dt = 0.0400925161487851 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (1.6%)
patch tree reduce : 1.19 us (0.6%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 681.00 ns (0.4%)
LB compute : 178.28 us (94.2%)
LB move op cnt : 0
LB apply : 1.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.860454319737642e-20,-7.00241294030862e-20,7.66309699222581e-20)
sum a = (-5.652573466854001e-22,5.645071277686965e-20,2.6096104395568522e-21)
sum e = 7.85738436740329e-10
sum de = -3.143286327701505e-23
Info: cfl dt = 0.0400926268344926 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7952e+04 | 2592 | 1 | 6.830e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2113.310272861718 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.397329626382582, dt = 0.0400926268344926 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 us (1.8%)
patch tree reduce : 1.12 us (0.5%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.3%)
LB compute : 209.61 us (93.6%)
LB move op cnt : 0
LB apply : 2.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.727684570865025e-20,-6.9542880143172e-20,7.805077409691023e-20)
sum a = (-9.520642635741884e-20,1.7221811837153847e-20,4.64990883138188e-20)
sum e = 7.857357544160027e-10
sum de = -2.0679515313825692e-23
Info: cfl dt = 0.04009274400140067 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7858e+04 | 2592 | 1 | 6.847e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2108.103072016313 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.437422253217075, dt = 0.0017834993305463342 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.9%)
patch tree reduce : 1.38 us (0.7%)
gen split merge : 891.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 178.25 us (92.2%)
LB move op cnt : 0
LB apply : 2.65 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.931440126065576e-20,-7.02997745190934e-20,7.90135274189741e-20)
sum a = (1.3331528793976708e-19,-7.404881511515999e-21,-1.504309534372496e-20)
sum e = 7.856865686227032e-10
sum de = 2.0265925007549178e-23
Info: cfl dt = 0.04009274936152184 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.1482e+04 | 2592 | 1 | 6.249e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.75363867208249 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 153 [SPH][rank=0]
Info: time since start : 146.907300791 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000309687 s
sph::RenderFieldGetter compute custom field took : 0.000865925 s
rho_t_ampl=0.00131827, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000392606, eps_t_phi=6.28319 rad
vx_t_ampl=-3.73063e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 5.80s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 5.439205752547621, dt = 0.04009274936152184 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.88 us (3.9%)
patch tree reduce : 1.48 us (0.6%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 231.65 us (91.1%)
LB move op cnt : 0
LB apply : 3.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.435854033739074e-20,-7.062759091637171e-20,7.835552814606328e-20)
sum a = (-5.170790170202375e-20,-1.7791439042142565e-19,1.2510746294734617e-19)
sum e = 7.857340671484612e-10
sum de = 1.737079286361358e-23
Info: cfl dt = 0.04009287317923053 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2907e+04 | 2592 | 1 | 7.877e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1832.3884259640815 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.479298501909143, dt = 0.04009287317923053 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.60 us (2.1%)
patch tree reduce : 1.19 us (0.5%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 201.85 us (92.8%)
LB move op cnt : 0
LB apply : 2.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.994538620579295e-20,-8.117769206286476e-20,8.618095639500392e-20)
sum a = (6.658862999150917e-20,-2.48340382469421e-19,-5.542165468109537e-21)
sum e = 7.857309049964051e-10
sum de = 1.9025154088719637e-23
Info: cfl dt = 0.04009300334542184 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6868e+04 | 2592 | 1 | 7.030e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2053.0041389159924 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.519391375088373, dt = 0.04009300334542184 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (1.8%)
patch tree reduce : 1.05 us (0.5%)
gen split merge : 350.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.3%)
LB compute : 210.31 us (93.9%)
LB move op cnt : 0
LB apply : 2.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.43716858570811e-20,-9.254363702514067e-20,8.333969484486264e-20)
sum a = (-1.4415376892446737e-19,2.020210141473457e-19,1.4735069610564515e-19)
sum e = 7.857283509852082e-10
sum de = -4.1359030627651384e-24
Info: cfl dt = 0.040093139742406296 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3988e+04 | 2592 | 1 | 5.892e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2449.4698006126882 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.559484378433795, dt = 0.040093139742406296 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (1.9%)
patch tree reduce : 1.31 us (0.7%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.4%)
LB compute : 184.65 us (92.7%)
LB move op cnt : 0
LB apply : 2.57 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (53.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0425711666423042e-19,-7.541954364099757e-20,9.231241390025127e-20)
sum a = (-2.4331042394883884e-19,-2.9030437309971193e-19,1.4815933212612661e-19)
sum e = 7.857258355258563e-10
sum de = 1.4889251025954498e-23
Info: cfl dt = 0.04009328228559129 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3703e+04 | 2592 | 1 | 5.931e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2433.5819589374337 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.5995775181762015, dt = 0.04009328228559129 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (1.9%)
patch tree reduce : 1.30 us (0.7%)
gen split merge : 691.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.4%)
LB compute : 179.26 us (92.8%)
LB move op cnt : 0
LB apply : 2.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.172974721970657e-19,-9.693341900673964e-20,9.826881820491899e-20)
sum a = (-3.658398129826671e-20,5.83275951604723e-20,5.040336222974925e-21)
sum e = 7.85723366743371e-10
sum de = -9.098986738083304e-24
Info: cfl dt = 0.04009343088865763 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4868e+04 | 2592 | 1 | 5.777e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2498.481786928591 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.639670800461793, dt = 0.04009343088865763 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (1.5%)
patch tree reduce : 561.00 ns (0.3%)
gen split merge : 450.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 611.00 ns (0.3%)
LB compute : 190.83 us (94.8%)
LB move op cnt : 0
LB apply : 2.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1362987220345578e-19,-8.760256481152731e-20,9.560184742534055e-20)
sum a = (1.612955266006944e-20,-1.1481907958825658e-19,6.98896473523156e-20)
sum e = 7.857209465184165e-10
sum de = -1.4889251025954498e-23
Info: cfl dt = 0.04009358546398326 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4784e+04 | 2592 | 1 | 5.788e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2493.791732184937 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.67976423135045, dt = 0.04009358546398326 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (1.8%)
patch tree reduce : 681.00 ns (0.4%)
gen split merge : 681.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 180.91 us (93.4%)
LB move op cnt : 0
LB apply : 2.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1328808869150647e-19,-9.56739139014072e-20,9.970398966148393e-20)
sum a = (1.1641014961796653e-19,8.988223413439234e-20,1.346468498225421e-20)
sum e = 7.857185767134383e-10
sum de = 1.3234889800848443e-23
Info: cfl dt = 0.040093745922676644 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4361e+04 | 2592 | 1 | 5.843e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2470.2765939057535 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.719857816814434, dt = 0.040093745922676644 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (1.4%)
patch tree reduce : 1.21 us (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 255.16 us (92.8%)
LB move op cnt : 0
LB apply : 2.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0593974318459626e-19,-8.797063936285733e-20,9.911269979455544e-20)
sum a = (-7.85444801498899e-21,1.6434472232230829e-19,1.6334213241797839e-19)
sum e = 7.857162591029816e-10
sum de = 1.1994118882018901e-23
Info: cfl dt = 0.0400939121746145 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4389e+04 | 2592 | 1 | 5.839e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2471.854978493013 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.75995156273711, dt = 0.0400939121746145 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.48 us (1.8%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 561.00 ns (0.3%)
LB compute : 180.67 us (93.7%)
LB move op cnt : 0
LB apply : 2.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0875288439833291e-19,-7.989148512066128e-20,1.0866629905464154e-19)
sum a = (-2.292249996006201e-19,1.189997656472808e-19,1.3682537144680018e-19)
sum e = 7.857139953732373e-10
sum de = -7.031035206700735e-24
Info: cfl dt = 0.04009408412847969 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4483e+04 | 2592 | 1 | 5.827e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2477.091598235468 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.800045474911725, dt = 0.001773994472404894 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.98 us (2.0%)
patch tree reduce : 1.16 us (0.6%)
gen split merge : 560.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.5%)
LB compute : 187.68 us (93.2%)
LB move op cnt : 0
LB apply : 2.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1386649155788223e-19,-8.059189484166317e-20,1.0837744616449934e-19)
sum a = (-1.8633774161082666e-20,-3.383122731560765e-21,1.206849254582789e-19)
sum e = 7.856826777424165e-10
sum de = -2.8537731133079455e-23
Info: cfl dt = 0.040094091865785116 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6138e+04 | 2592 | 1 | 5.618e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.67958783327029 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 163 [SPH][rank=0]
Info: time since start : 147.754290015 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000273753 s
sph::RenderFieldGetter compute custom field took : 0.000240995 s
rho_t_ampl=0.00122788, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000409275, eps_t_phi=6.28319 rad
vx_t_ampl=-4.36195e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 6.16s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 5.80181946938413, dt = 0.040094091865785116 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.33 us (3.9%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 239.09 us (91.1%)
LB move op cnt : 0
LB apply : 3.49 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1443174890456761e-19,-8.083549775342512e-20,1.1320188212166547e-19)
sum a = (1.4246456964425637e-19,-1.909973148441957e-19,2.1310613877452355e-19)
sum e = 7.857125840669467e-10
sum de = 6.2038545941477076e-24
Info: cfl dt = 0.04009426964279373 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4038e+04 | 2592 | 1 | 7.615e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1895.4338331745962 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.841913561249915, dt = 0.04009426964279373 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.19 us (1.8%)
patch tree reduce : 1.41 us (0.6%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 213.74 us (93.1%)
LB move op cnt : 0
LB apply : 2.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0415195250670755e-19,-9.225607878191408e-20,1.2359898942075458e-19)
sum a = (-8.341489519516759e-20,-5.941620850983009e-21,-8.614783911251485e-20)
sum e = 7.857099727602335e-10
sum de = 5.37667398159468e-24
Info: cfl dt = 0.04009445296489078 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3554e+04 | 2592 | 1 | 7.725e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1868.5190006978228 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.882007830892709, dt = 0.04009445296489078 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (1.9%)
patch tree reduce : 1.52 us (0.7%)
gen split merge : 802.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 203.33 us (93.2%)
LB move op cnt : 0
LB apply : 2.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1281484998265357e-19,-8.87782672288337e-20,1.1414575409687873e-19)
sum a = (4.54111977703422e-20,2.0289873433510856e-19,4.680714264887064e-20)
sum e = 7.857078867016061e-10
sum de = 1.1580528575742387e-23
Info: cfl dt = 0.04009464170361463 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3850e+04 | 2592 | 1 | 7.657e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1885.0228589154697 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.922102283857599, dt = 0.04009464170361463 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (2.0%)
patch tree reduce : 1.10 us (0.5%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 196.68 us (92.9%)
LB move op cnt : 0
LB apply : 2.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0884490303616542e-19,-7.64551641141036e-20,1.1868784834190018e-19)
sum a = (-1.801067652775969e-19,6.516316270008596e-20,8.817507988457643e-22)
sum e = 7.857058561876849e-10
sum de = -1.1994118882018901e-23
Info: cfl dt = 0.04009483576355522 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.8081e+04 | 2592 | 1 | 6.807e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2120.6179041300993 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.962196925561214, dt = 0.04009483576355522 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (2.0%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 772.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 179.04 us (92.6%)
LB move op cnt : 0
LB apply : 2.64 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2046554244244202e-19,-7.659647845077495e-20,1.1780252092970095e-19)
sum a = (1.9146449429006632e-20,-2.9420823299994427e-19,1.9139582876891692e-19)
sum e = 7.857038867367309e-10
sum de = 7.031035206700735e-24
Info: cfl dt = 0.04009503504794944 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4171e+04 | 2592 | 1 | 5.868e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2459.772340336171 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.002291761324769, dt = 0.04009503504794944 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.89 us (2.0%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 721.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.7%)
LB compute : 176.99 us (92.3%)
LB move op cnt : 0
LB apply : 2.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.143791668258062e-19,-9.561106188538768e-20,1.2929585872565363e-19)
sum a = (-2.3410856016558814e-19,5.673801427166478e-20,1.793621974996522e-19)
sum e = 7.85701979434908e-10
sum de = 1.4475660719677984e-23
Info: cfl dt = 0.04009523945907478 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4633e+04 | 2592 | 1 | 5.807e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2485.5082517024416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.0423867963727185, dt = 0.04009523945907478 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (1.8%)
patch tree reduce : 791.00 ns (0.4%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.4%)
LB compute : 189.20 us (93.9%)
LB move op cnt : 0
LB apply : 2.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2861576465046406e-19,-8.63019799571625e-20,1.3624618455055879e-19)
sum a = (-2.5659397159594577e-19,8.943354057558629e-20,7.925405724365384e-20)
sum e = 7.857001353282812e-10
sum de = 1.819797347616661e-23
Info: cfl dt = 0.040095448898283405 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4622e+04 | 2592 | 1 | 5.809e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2484.884528026583 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.082482035831793, dt = 0.040095448898283405 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (2.0%)
patch tree reduce : 871.00 ns (0.4%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 691.00 ns (0.3%)
LB compute : 189.16 us (93.8%)
LB move op cnt : 0
LB apply : 1.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4141950082887288e-19,-8.205063672980261e-20,1.3741698162507203e-19)
sum a = (-1.9277904625910214e-19,6.182173591379305e-20,1.8909814167574673e-19)
sum e = 7.856983553705238e-10
sum de = 7.444625512977249e-24
Info: cfl dt = 0.04009566326604042 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4538e+04 | 2592 | 1 | 5.820e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2480.2575147620983 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.122577484730076, dt = 0.04009566326604042 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.97 us (1.9%)
patch tree reduce : 1.31 us (0.6%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 199.26 us (93.1%)
LB move op cnt : 0
LB apply : 2.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.474138578076762e-19,-8.013056926002967e-20,1.4720112097499622e-19)
sum a = (-2.477864734034058e-19,-4.669940735031101e-20,1.6835740395820321e-19)
sum e = 7.856966404227945e-10
sum de = 1.6543612251060553e-23
Info: cfl dt = 0.040095882461962024 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4241e+04 | 2592 | 1 | 5.859e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2463.7364391765595 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.1626731479961165, dt = 0.0017600382245213098 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (1.9%)
patch tree reduce : 1.28 us (0.6%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 193.94 us (92.7%)
LB move op cnt : 0
LB apply : 2.84 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4770305924086408e-19,-8.238297189947448e-20,1.4708162962363863e-19)
sum a = (-2.3568273614850853e-19,1.1438147756168926e-19,-2.1847767653600233e-20)
sum e = 7.856796106641821e-10
sum de = 8.271806125530277e-25
Info: cfl dt = 0.04009589219166568 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6411e+04 | 2592 | 1 | 5.585e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.45151399201754 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 173 [SPH][rank=0]
Info: time since start : 148.633753772 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000270558 s
sph::RenderFieldGetter compute custom field took : 0.00021716000000000001 s
rho_t_ampl=0.00112507, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000421496, eps_t_phi=6.28319 rad
vx_t_ampl=-4.84505e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 6.53s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 6.164433186220638, dt = 0.04009589219166568 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.86 us (4.0%)
patch tree reduce : 1.49 us (0.6%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 223.78 us (91.0%)
LB move op cnt : 0
LB apply : 3.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5766736316615555e-19,-7.767030309048108e-20,1.4603823970090143e-19)
sum a = (1.1206226898038057e-19,-1.181001191434719e-19,-5.894405200745922e-20)
sum e = 7.856955848231128e-10
sum de = -6.617444900424222e-24
Info: cfl dt = 0.040096116288397154 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3938e+04 | 2592 | 1 | 5.899e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2446.8247076298617 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.204529078412303, dt = 0.040096116288397154 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (1.9%)
patch tree reduce : 1.38 us (0.7%)
gen split merge : 711.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 184.74 us (92.6%)
LB move op cnt : 0
LB apply : 2.70 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.477293502802448e-19,-8.705784733935809e-20,1.4293110782801726e-19)
sum a = (-3.659909864591062e-19,4.857115476528462e-20,1.9168485887054703e-20)
sum e = 7.856936629756597e-10
sum de = 1.9025154088719637e-23
Info: cfl dt = 0.04009634503788362 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4704e+04 | 2592 | 1 | 5.798e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2489.510329014546 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.2446251947007, dt = 0.04009634503788362 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.93 us (2.0%)
patch tree reduce : 791.00 ns (0.4%)
gen split merge : 621.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 511.00 ns (0.3%)
LB compute : 180.60 us (93.7%)
LB move op cnt : 0
LB apply : 2.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7236405417997596e-19,-8.176348928406635e-20,1.4526569875350598e-19)
sum a = (5.296987159229813e-20,-2.029048962974634e-19,-7.152759842415304e-20)
sum e = 7.856921528754126e-10
sum de = -2.481541837659083e-24
Info: cfl dt = 0.04009657830483036 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4719e+04 | 2592 | 1 | 5.796e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2490.354683027347 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.284721539738584, dt = 0.04009657830483036 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 us (1.8%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.5%)
LB compute : 178.43 us (93.4%)
LB move op cnt : 0
LB apply : 2.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.614795638763594e-19,-9.495173191341815e-20,1.4057939605727075e-19)
sum a = (-2.6520428699313034e-19,-2.6844547919178424e-19,1.2461971235805648e-19)
sum e = 7.856907076999645e-10
sum de = -3.308722450212111e-24
Info: cfl dt = 0.0400968159861195 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4890e+04 | 2592 | 1 | 5.774e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2499.936212889107 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.324818118043414, dt = 0.0400968159861195 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (1.7%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 691.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 181.08 us (93.0%)
LB move op cnt : 0
LB apply : 2.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7662320255965198e-19,-1.0702178377410887e-19,1.4950866773495915e-19)
sum a = (-4.3061436125690684e-20,4.196209069189819e-20,4.739700786889978e-20)
sum e = 7.856893305239374e-10
sum de = -8.271806125530277e-25
Info: cfl dt = 0.04009705797766207 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4900e+04 | 2592 | 1 | 5.773e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2500.461945754136 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.3649149340295335, dt = 0.04009705797766207 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (1.7%)
patch tree reduce : 1.22 us (0.6%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.3%)
LB compute : 195.60 us (94.1%)
LB move op cnt : 0
LB apply : 2.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7520348643309332e-19,-9.912214803518427e-20,1.4986095602151872e-19)
sum a = (-1.3969743774943596e-19,6.124980310788989e-20,6.415534015994876e-20)
sum e = 7.85688021625619e-10
sum de = 3.308722450212111e-24
Info: cfl dt = 0.040097304174753635 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.2062e+04 | 2592 | 1 | 6.162e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2342.442641678943 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.4050119920071955, dt = 0.040097304174753635 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 us (1.9%)
patch tree reduce : 661.00 ns (0.3%)
gen split merge : 531.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.4%)
LB compute : 194.68 us (94.1%)
LB move op cnt : 0
LB apply : 1.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.817762462782724e-19,-9.627285664229915e-20,1.5276939212109785e-19)
sum a = (6.834520006013327e-19,1.488355252223139e-19,1.4858838951453304e-19)
sum e = 7.856867812309915e-10
sum de = -3.143286327701505e-23
Info: cfl dt = 0.040097554472108214 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7018e+04 | 2592 | 1 | 7.002e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2061.5730709994186 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.445109296181949, dt = 0.040097554472108214 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (1.8%)
patch tree reduce : 1.47 us (0.6%)
gen split merge : 852.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.4%)
LB compute : 214.60 us (93.5%)
LB move op cnt : 0
LB apply : 2.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3863265065451696e-19,-8.854780983676212e-20,1.604201919947602e-19)
sum a = (-1.1696226144496157e-20,2.3762560287899443e-19,1.1929042309442033e-19)
sum e = 7.856856094780258e-10
sum de = 3.556876633978019e-23
Info: cfl dt = 0.040097808763895855 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9676e+04 | 2592 | 1 | 8.734e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1652.687550513625 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.485206850654057, dt = 0.040097808763895855 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.23 us (1.9%)
patch tree reduce : 1.53 us (0.7%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 204.55 us (92.5%)
LB move op cnt : 0
LB apply : 2.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (57.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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5346079686524094e-19,-7.723773333317024e-20,1.6461608816513287e-19)
sum a = (-6.145530455242431e-21,-2.7889950507522784e-19,8.76430159218778e-21)
sum e = 7.856845064186265e-10
sum de = -3.226004388956808e-23
Info: cfl dt = 0.04009806694378022 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0085e+04 | 2592 | 1 | 8.616e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1675.4926157706975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.525304659417953, dt = 0.001742243639192509 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.32 us (2.0%)
patch tree reduce : 1.36 us (0.6%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 197.67 us (92.5%)
LB move op cnt : 0
LB apply : 2.75 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.530664312745302e-19,-8.808073309026408e-20,1.624154300721261e-19)
sum a = (-1.4218851373075885e-19,1.4124100931932724e-19,5.880421457495459e-20)
sum e = 7.856775085140963e-10
sum de = -4.632211430296955e-23
Info: cfl dt = 0.040098078247090656 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0874e+04 | 2592 | 1 | 8.395e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.70829611128006 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 183 [SPH][rank=0]
Info: time since start : 149.545059493 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00030466900000000003 s
sph::RenderFieldGetter compute custom field took : 0.000231701 s
rho_t_ampl=0.00101319, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000429208, eps_t_phi=6.28319 rad
vx_t_ampl=-5.17705e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 6.89s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 6.527046903057146, dt = 0.040098078247090656 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.21 us (3.5%)
patch tree reduce : 1.41 us (0.5%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 266.98 us (92.1%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5821947499315058e-19,-8.205145832478326e-20,1.6481695692946368e-19)
sum a = (-2.322616146490928e-19,1.2123147436315054e-20,-1.1010835073592317e-20)
sum e = 7.856838430499167e-10
sum de = 1.6543612251060553e-24
Info: cfl dt = 0.040098340340555726 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3034e+04 | 2592 | 1 | 6.023e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2396.657443833807 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.567144981304237, dt = 0.040098340340555726 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.32 us (1.9%)
patch tree reduce : 1.25 us (0.6%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 209.09 us (92.8%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (57.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6920912945428999e-19,-8.414899031037602e-20,1.6297571605543472e-19)
sum a = (-4.4398992754184626e-20,6.5233100972813564e-21,-6.502085129569377e-20)
sum e = 7.856826680020158e-10
sum de = -4.3840572465310467e-23
Info: cfl dt = 0.040098606133774466 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7953e+04 | 2592 | 1 | 6.830e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2113.6789817772074 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.607243321644793, dt = 0.040098606133774466 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (1.8%)
patch tree reduce : 1.27 us (0.6%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 691.00 ns (0.3%)
LB compute : 213.23 us (93.9%)
LB move op cnt : 0
LB apply : 2.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.677368312489699e-19,-8.400603278374338e-20,1.592856145427017e-19)
sum a = (-2.780589620603393e-19,4.557130609219586e-21,2.6545254607206738e-20)
sum e = 7.856817747731028e-10
sum de = 5.1285197978287716e-23
Info: cfl dt = 0.04009887548845515 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.9710e+04 | 2592 | 1 | 6.527e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2211.533586575519 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.647341927778568, dt = 0.04009887548845515 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (1.8%)
patch tree reduce : 1.09 us (0.5%)
gen split merge : 551.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 219.37 us (93.8%)
LB move op cnt : 0
LB apply : 2.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.843790591769633e-19,-8.385362691483329e-20,1.621858860099095e-19)
sum a = (6.325788393996468e-20,5.2026629204828646e-20,2.2035338769593563e-19)
sum e = 7.856809482590927e-10
sum de = 3.556876633978019e-23
Info: cfl dt = 0.04009914829686155 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3282e+04 | 2592 | 1 | 5.989e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2410.5235723277715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.687440803267023, dt = 0.04009914829686155 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.6%)
patch tree reduce : 1.01 us (0.4%)
gen split merge : 591.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 212.78 us (94.0%)
LB move op cnt : 0
LB apply : 2.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7312649432201673e-19,-8.083056818354124e-20,1.7490761327953378e-19)
sum a = (1.806720226242823e-19,-1.2021680456205101e-20,9.010768965510537e-20)
sum e = 7.856801894490452e-10
sum de = 2.3988237764037803e-23
Info: cfl dt = 0.04009942445066572 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3518e+04 | 2592 | 1 | 5.956e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2423.6366383926265 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.727539951563885, dt = 0.04009942445066572 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (1.8%)
patch tree reduce : 1.30 us (0.6%)
gen split merge : 782.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 218.75 us (93.2%)
LB move op cnt : 0
LB apply : 3.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.626100785697302e-19,-8.25965865944428e-20,1.7590950899290192e-19)
sum a = (8.546230988694086e-21,-9.247647163547275e-20,-3.8294213771195585e-20)
sum e = 7.856794978814248e-10
sum de = -2.481541837659083e-23
Info: cfl dt = 0.040099703841259875 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3773e+04 | 2592 | 1 | 5.921e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2437.9017771622875 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.76763937601455, dt = 0.040099703841259875 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (1.6%)
patch tree reduce : 1.25 us (0.6%)
gen split merge : 541.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 561.00 ns (0.3%)
LB compute : 210.48 us (94.6%)
LB move op cnt : 0
LB apply : 2.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.660016226498426e-19,-8.791189532174104e-20,1.7179950114895665e-19)
sum a = (-1.5130328844606092e-19,1.0480404217291012e-19,1.4559011437429742e-19)
sum e = 7.856788730377217e-10
sum de = -4.1359030627651384e-24
Info: cfl dt = 0.040099986359789376 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7682e+04 | 2592 | 1 | 6.879e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2098.66233752871 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.80773907985581, dt = 0.040099986359789376 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (1.9%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 193.25 us (92.8%)
LB move op cnt : 0
LB apply : 2.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.774645158198349e-19,-7.975017078398994e-20,1.8132451629933112e-19)
sum a = (-3.14955149451252e-19,-1.4329140229290537e-19,3.862333215782074e-20)
sum e = 7.85678314325481e-10
sum de = 2.3988237764037803e-23
Info: cfl dt = 0.040100271897189024 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2757e+04 | 2592 | 1 | 7.913e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1824.391709610954 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.847839066215599, dt = 0.040100271897189024 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.21 us (2.0%)
patch tree reduce : 1.38 us (0.7%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 192.84 us (92.0%)
LB move op cnt : 0
LB apply : 3.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (58.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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9155651292789884e-19,-9.046787730653505e-20,1.8072863916651977e-19)
sum a = (7.173510095028438e-20,4.976631871369511e-20,-4.593948429076958e-20)
sum e = 7.856778210785218e-10
sum de = -1.737079286361358e-23
Info: cfl dt = 0.040100560344218744 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1699e+04 | 2592 | 1 | 8.177e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1765.4817159275099 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.887939338112788, dt = 0.0017212817808660574 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.28 us (1.9%)
patch tree reduce : 1.62 us (0.7%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 214.41 us (92.8%)
LB move op cnt : 0
LB apply : 2.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8435276813758258e-19,-8.652134581699534e-20,1.789540684032016e-19)
sum a = (4.8141357891033455e-20,-8.75234349449537e-20,-1.7821810581182778e-19)
sum e = 7.856764041171819e-10
sum de = 1.5716431638507526e-23
Info: cfl dt = 0.04010057278817113 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7960e+04 | 2592 | 1 | 9.271e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.842019440187 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 193 [SPH][rank=0]
Info: time since start : 150.474913614 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.0002923 s
sph::RenderFieldGetter compute custom field took : 0.00023737900000000002 s
rho_t_ampl=0.000895586, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000432466, eps_t_phi=6.28319 rad
vx_t_ampl=-5.3591e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 7.25s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 6.889660619893654, dt = 0.04010057278817113 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.04 us (3.9%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 234.32 us (91.2%)
LB move op cnt : 0
LB apply : 3.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8332741760173464e-19,-9.014129330172771e-20,1.7169357588831733e-19)
sum a = (-1.3588441544425146e-19,1.6291083368233345e-19,-1.837079400504326e-19)
sum e = 7.856775449153115e-10
sum de = -1.6543612251060553e-23
Info: cfl dt = 0.040100864125992425 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2565e+04 | 2592 | 1 | 7.959e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1813.7248974613797 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.929761192681825, dt = 0.040100864125992425 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (1.8%)
patch tree reduce : 1.56 us (0.7%)
gen split merge : 741.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.4%)
LB compute : 200.50 us (93.0%)
LB move op cnt : 0
LB apply : 2.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.93764960235879e-19,-7.859213265876744e-20,1.6421665599674008e-19)
sum a = (5.962972050542583e-20,-4.4568138620825404e-20,1.298908485116091e-19)
sum e = 7.856770969017934e-10
sum de = 3.308722450212111e-24
Info: cfl dt = 0.040101158177737996 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6945e+04 | 2592 | 1 | 7.016e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2057.687277664315 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.969862056807818, dt = 0.040101158177737996 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.69 us (2.1%)
patch tree reduce : 1.47 us (0.7%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.4%)
LB compute : 206.20 us (92.4%)
LB move op cnt : 0
LB apply : 2.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8587764842166412e-19,-8.453801553371256e-20,1.757132206638419e-19)
sum a = (-8.220797216859658e-20,-2.4449734627259973e-19,2.340563030105621e-19)
sum e = 7.856767984375347e-10
sum de = 9.926167350636332e-24
Info: cfl dt = 0.04010145480576763 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4281e+04 | 2592 | 1 | 5.854e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2466.263333211643 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.009963214985556, dt = 0.04010145480576763 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (1.6%)
patch tree reduce : 1.14 us (0.5%)
gen split merge : 751.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.2%)
LB compute : 207.42 us (94.6%)
LB move op cnt : 0
LB apply : 2.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9339688568454899e-19,-9.835190274082735e-20,1.8718779660479375e-19)
sum a = (1.8851578990452286e-19,-6.832679119759814e-20,6.453095779108226e-20)
sum e = 7.856765616498125e-10
sum de = -1.3234889800848443e-23
Info: cfl dt = 0.04010175390072045 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4570e+04 | 2592 | 1 | 5.816e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2482.3655408021013 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.050064669791324, dt = 0.04010175390072045 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (1.9%)
patch tree reduce : 1.22 us (0.6%)
gen split merge : 580.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.4%)
LB compute : 181.61 us (93.0%)
LB move op cnt : 0
LB apply : 2.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7883164986763215e-19,-9.755331241963809e-20,1.8637649470822898e-19)
sum a = (2.3636671396989746e-19,-1.336468528641446e-19,1.0092551688153023e-20)
sum e = 7.856763859359484e-10
sum de = 3.308722450212111e-24
Info: cfl dt = 0.04010205535301146 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4425e+04 | 2592 | 1 | 5.835e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2474.3088142144024 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.090166423692044, dt = 0.04010205535301146 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (1.9%)
patch tree reduce : 1.08 us (0.5%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.6%)
LB compute : 184.86 us (92.6%)
LB move op cnt : 0
LB apply : 2.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6920912945428999e-19,-1.0422877163739808e-19,1.8568968899253586e-19)
sum a = (-2.5998551567605815e-20,1.758285148146208e-20,1.7234453177975554e-20)
sum e = 7.856762702261372e-10
sum de = 0
Info: cfl dt = 0.04010235905309608 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4450e+04 | 2592 | 1 | 5.831e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2475.744644090183 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.130268479045055, dt = 0.04010235905309608 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (1.8%)
patch tree reduce : 1.20 us (0.6%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 183.25 us (92.9%)
LB move op cnt : 0
LB apply : 2.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7538752370875833e-19,-1.0049790883027832e-19,1.8652403368640208e-19)
sum a = (-3.5319148662981634e-20,-6.656321189679539e-20,1.070048545273636e-19)
sum e = 7.856762133983464e-10
sum de = -6.617444900424221e-23
Info: cfl dt = 0.040102664891501404 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4731e+04 | 2592 | 1 | 5.795e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2491.3980566744854 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.170370838098151, dt = 0.040102664891501404 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (1.6%)
patch tree reduce : 581.00 ns (0.3%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.3%)
LB compute : 216.74 us (94.9%)
LB move op cnt : 0
LB apply : 2.03 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7709644126850488e-19,-1.0484743265782556e-19,1.9261521594290137e-19)
sum a = (1.6399446611212104e-20,-1.717320679159561e-19,8.3606782984483e-20)
sum e = 7.856762142738916e-10
sum de = -1.2407709188295415e-23
Info: cfl dt = 0.04010297275886008 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4228e+04 | 2592 | 1 | 5.860e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2463.437777952821 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.210473502989652, dt = 0.04010297275886008 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (1.5%)
patch tree reduce : 1.24 us (0.5%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 213.12 us (93.9%)
LB move op cnt : 0
LB apply : 2.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7386264342467678e-19,-1.1384964886077895e-19,1.95498933972288e-19)
sum a = (2.1473617211690348e-19,4.952923721209205e-20,1.4151620881407064e-20)
sum e = 7.856762716207581e-10
sum de = 3.88774887899923e-23
Info: cfl dt = 0.04010328254594406 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4122e+04 | 2592 | 1 | 5.875e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2457.557872625827 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.250576475748512, dt = 0.0016978609816495904 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.76 us (1.8%)
patch tree reduce : 1.11 us (0.5%)
gen split merge : 641.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 196.05 us (93.0%)
LB move op cnt : 0
LB apply : 2.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7005044271447291e-19,-1.0933457364463126e-19,1.941302822203183e-19)
sum a = (2.961007770378655e-19,-1.820387458745892e-20,1.1976082593116219e-19)
sum e = 7.856762319437489e-10
sum de = -9.926167350636332e-24
Info: cfl dt = 0.040103295701485075 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6154e+04 | 2592 | 1 | 5.616e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.83742070835525 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 203 [SPH][rank=0]
Info: time since start : 151.32509447500001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000306272 s
sph::RenderFieldGetter compute custom field took : 0.000262006 s
rho_t_ampl=0.000775557, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000431436, eps_t_phi=6.28319 rad
vx_t_ampl=-5.39608e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 7.61s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 7.252274336730162, dt = 0.040103295701485075 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.88 us (3.7%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 244.21 us (91.2%)
LB move op cnt : 0
LB apply : 3.60 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5814060187500845e-19,-1.101089269138914e-19,1.9902274091036991e-19)
sum a = (1.6486617838658793e-19,-6.22335347229994e-20,-6.254050094436903e-20)
sum e = 7.85676341657727e-10
sum de = -2.3161057151484775e-23
Info: cfl dt = 0.04010360734918379 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8376e+04 | 2592 | 1 | 9.134e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1580.5419237392105 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.292377632431647, dt = 0.04010360734918379 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.45 us (2.0%)
patch tree reduce : 1.44 us (0.6%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 205.56 us (92.6%)
LB move op cnt : 0
LB apply : 2.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5506455026746464e-19,-1.1348444989188119e-19,1.928591992078474e-19)
sum a = (-9.164316892635114e-20,-7.420620190364025e-21,2.9541902978822004e-20)
sum e = 7.856765350009951e-10
sum de = -4.714929491552258e-23
Info: cfl dt = 0.040103920718911695 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9636e+04 | 2592 | 1 | 8.746e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1650.6866512858253 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.33248123978083, dt = 0.040103920718911695 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.48 us (2.0%)
patch tree reduce : 1.35 us (0.6%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 209.03 us (92.5%)
LB move op cnt : 0
LB apply : 2.85 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.611377803644101e-19,-1.1268462717822097e-19,1.9589036362814741e-19)
sum a = (-2.512092380927828e-19,-6.082141835001171e-20,8.227074600323847e-20)
sum e = 7.856767559115988e-10
sum de = -4.963083675318166e-24
Info: cfl dt = 0.04010423567707247 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9414e+04 | 2592 | 1 | 8.812e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1638.329375934608 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.372585160499742, dt = 0.04010423567707247 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.8%)
patch tree reduce : 1.20 us (0.5%)
gen split merge : 741.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 221.86 us (93.2%)
LB move op cnt : 0
LB apply : 2.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7541381474813903e-19,-1.161981781129595e-19,2.00247085685309e-19)
sum a = (1.3913300199773123e-19,-1.0962896139613447e-19,1.4467378406777067e-19)
sum e = 7.856770279640497e-10
sum de = -2.5642598989143858e-23
Info: cfl dt = 0.040104552115515356 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9022e+04 | 2592 | 1 | 8.931e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1616.5584798074908 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.412689396176815, dt = 0.040104552115515356 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.78 us (2.1%)
patch tree reduce : 1.48 us (0.7%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 208.34 us (92.5%)
LB move op cnt : 0
LB apply : 2.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6363542910557814e-19,-1.2156771210898047e-19,2.0730047607094677e-19)
sum a = (2.368214667916858e-19,-1.811995379515442e-19,1.2685350719772706e-19)
sum e = 7.856773495332623e-10
sum de = -3.3914405114674135e-23
Info: cfl dt = 0.040104869926214155 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9349e+04 | 2592 | 1 | 8.832e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1634.7576841461707 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.452793948292331, dt = 0.040104869926214155 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.56 us (2.1%)
patch tree reduce : 1.27 us (0.6%)
gen split merge : 992.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 202.86 us (92.6%)
LB move op cnt : 0
LB apply : 2.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5054249149398145e-19,-1.302827808661976e-19,2.12030582365586e-19)
sum a = (2.320463567641632e-19,-1.8672116971835754e-19,-8.483484634302721e-20)
sum e = 7.856777191164682e-10
sum de = 4.963083675318166e-24
Info: cfl dt = 0.04010518900148175 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9424e+04 | 2592 | 1 | 8.809e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1638.9733191897774 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.492898818218545, dt = 0.04010518900148175 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.36 us (1.9%)
patch tree reduce : 1.33 us (0.6%)
gen split merge : 902.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 213.41 us (93.1%)
LB move op cnt : 0
LB apply : 2.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4202419473462936e-19,-1.378755508798504e-19,2.043833978772526e-19)
sum a = (-1.5984130348494853e-19,-1.0681867008998695e-19,7.354310899618498e-20)
sum e = 7.856781351693077e-10
sum de = 2.3988237764037803e-23
Info: cfl dt = 0.04010550923399897 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0428e+04 | 2592 | 1 | 8.518e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1694.9060108074232 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.533004007220026, dt = 0.04010550923399897 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.45 us (1.9%)
patch tree reduce : 1.25 us (0.5%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 213.22 us (92.7%)
LB move op cnt : 0
LB apply : 2.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5580069937012469e-19,-1.405510749343286e-19,2.1050877063047119e-19)
sum a = (-2.714385497062827e-20,-1.0337223319523004e-19,2.1605390785041725e-19)
sum e = 7.856785961130446e-10
sum de = 2.5642598989143858e-23
Info: cfl dt = 0.04010583051684571 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9631e+04 | 2592 | 1 | 8.748e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1650.523400944964 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.573109516454025, dt = 0.04010583051684571 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (2.1%)
patch tree reduce : 1.41 us (0.6%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 206.49 us (92.8%)
LB move op cnt : 0
LB apply : 2.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5493309507056106e-19,-1.446311156082235e-19,2.2203152612091534e-19)
sum a = (1.3527889994351433e-19,-6.252224833416752e-20,-8.887169644349351e-20)
sum e = 7.8567910033683e-10
sum de = -2.150669592637872e-23
Info: cfl dt = 0.04010615274353181 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9367e+04 | 2592 | 1 | 8.826e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1635.791769742514 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.613215346970871, dt = 0.0016727065957997667 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (2.0%)
patch tree reduce : 1.50 us (0.7%)
gen split merge : 831.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.4%)
LB compute : 202.88 us (92.7%)
LB move op cnt : 0
LB apply : 2.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (61.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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5070023773026574e-19,-1.4391427398760868e-19,2.1576822254507233e-19)
sum a = (-2.108163424642348e-19,-8.092749071641449e-20,2.4971321795833317e-19)
sum e = 7.856768464856771e-10
sum de = -6.534726839168919e-23
Info: cfl dt = 0.04010616620102275 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9676e+04 | 2592 | 1 | 8.734e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.94415800629969 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 213 [SPH][rank=0]
Info: time since start : 152.61609868000002 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000299421 s
sph::RenderFieldGetter compute custom field took : 0.000253133 s
rho_t_ampl=0.000656246, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000426383, eps_t_phi=6.28319 rad
vx_t_ampl=-5.29627e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 7.98s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 7.614888053566671, dt = 0.04010616620102275 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.77 us (3.9%)
patch tree reduce : 1.59 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 225.66 us (90.9%)
LB move op cnt : 0
LB apply : 3.58 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (63.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6005984774980073e-19,-1.4717888164321104e-19,2.260664389768834e-19)
sum a = (-2.2003956771698236e-19,6.126274322883508e-20,-3.5120903138205696e-20)
sum e = 7.856794480168011e-10
sum de = -5.2112378590840744e-23
Info: cfl dt = 0.04010648927717783 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4665e+04 | 2592 | 1 | 5.803e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2487.9869749141376 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.654994219767693, dt = 0.04010648927717783 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (1.9%)
patch tree reduce : 891.00 ns (0.5%)
gen split merge : 541.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.4%)
LB compute : 184.80 us (93.4%)
LB move op cnt : 0
LB apply : 2.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7005044271447291e-19,-1.4186809168830636e-19,2.1894606055156026e-19)
sum a = (-2.6874700454968183e-19,-1.2162345219344878e-19,7.870767815005079e-20)
sum e = 7.856801473992007e-10
sum de = 1.819797347616661e-23
Info: cfl dt = 0.04010681310255286 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4227e+04 | 2592 | 1 | 5.861e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2463.5998525464565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.695100709044871, dt = 0.04010681310255286 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (1.8%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 751.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.6%)
LB compute : 189.19 us (92.9%)
LB move op cnt : 0
LB apply : 2.57 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8227577602650599e-19,-1.5041309028452947e-19,2.2438540707628754e-19)
sum a = (1.1832282273291363e-19,7.546211253093236e-20,3.4493605143066257e-19)
sum e = 7.856807727676113e-10
sum de = 3.88774887899923e-23
Info: cfl dt = 0.04010713755067685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5221e+04 | 2592 | 1 | 5.732e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2519.006574756753 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.735207522147424, dt = 0.04010713755067685 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 us (1.8%)
patch tree reduce : 1.05 us (0.5%)
gen split merge : 841.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 190.14 us (93.0%)
LB move op cnt : 0
LB apply : 2.58 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6784199540649275e-19,-1.4342994374651705e-19,2.435585905420927e-19)
sum a = (3.0127887940339567e-19,1.1723110272753529e-19,2.5020624687514694e-19)
sum e = 7.856814349540772e-10
sum de = 7.444625512977249e-24
Info: cfl dt = 0.04010746251723383 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4394e+04 | 2592 | 1 | 5.839e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2472.95672401269 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.7753146596981, dt = 0.04010746251723383 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.59 us (1.7%)
patch tree reduce : 892.00 ns (0.4%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 611.00 ns (0.3%)
LB compute : 192.72 us (94.1%)
LB move op cnt : 0
LB apply : 2.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5248802840815444e-19,-1.3789075038699238e-19,2.5169405755948653e-19)
sum a = (-2.6672916727721187e-19,-2.006191163619298e-20,6.618363556633164e-20)
sum e = 7.856821318902506e-10
sum de = -3.639594695233322e-23
Info: cfl dt = 0.040107787898356326 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.0409e+04 | 2592 | 1 | 6.414e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2250.993852934428 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.815422122215335, dt = 0.040107787898356326 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (1.9%)
patch tree reduce : 1.17 us (0.6%)
gen split merge : 751.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.6%)
LB compute : 185.10 us (92.8%)
LB move op cnt : 0
LB apply : 2.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (62.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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7536123266937761e-19,-1.414441486782923e-19,2.506581967844074e-19)
sum a = (1.260918248699153e-19,-2.4858434482898697e-20,5.4156234719467876e-20)
sum e = 7.856828618365268e-10
sum de = 2.812414082680294e-23
Info: cfl dt = 0.040108113590787885 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2703e+04 | 2592 | 1 | 7.926e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1821.7478958592878 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.855529910113691, dt = 0.040108113590787885 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.36 us (2.1%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 932.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.33 us (0.6%)
LB compute : 189.53 us (92.1%)
LB move op cnt : 0
LB apply : 2.91 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6061195957679577e-19,-1.4254467515486947e-19,2.525891049771316e-19)
sum a = (-2.6657799380077273e-19,2.3619571951455024e-20,3.1814308856260413e-20)
sum e = 7.856836230274132e-10
sum de = -1.3234889800848443e-23
Info: cfl dt = 0.040108439491909044 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6231e+04 | 2592 | 1 | 7.154e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2018.299219689242 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.895638023704478, dt = 0.040108439491909044 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (2.2%)
patch tree reduce : 1.28 us (0.7%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.5%)
LB compute : 177.12 us (92.1%)
LB move op cnt : 0
LB apply : 2.53 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8169737316013023e-19,-1.4062296449513525e-19,2.534170810086915e-19)
sum a = (-2.5751087159434824e-19,-1.675684813024666e-19,1.8043108329902891e-19)
sum e = 7.856844136853503e-10
sum de = 2.2333876538931747e-23
Info: cfl dt = 0.040108765499765275 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4390e+04 | 2592 | 1 | 5.839e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2472.7795400318987 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.935746463196387, dt = 0.040108765499765275 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (1.7%)
patch tree reduce : 1.02 us (0.5%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 196.69 us (93.4%)
LB move op cnt : 0
LB apply : 2.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (60.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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9061003551019306e-19,-1.5117553042657026e-19,2.6363434247022844e-19)
sum a = (-1.2643032200194202e-19,3.359417148884773e-20,-2.9072092991816915e-20)
sum e = 7.856852320231483e-10
sum de = -1.1580528575742387e-23
Info: cfl dt = 0.0401090915130945 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4149e+04 | 2592 | 1 | 5.871e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2459.3786326355566 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.975855228696152, dt = 0.0016465417070259392 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (2.1%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 451.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 721.00 ns (0.4%)
LB compute : 176.91 us (93.5%)
LB move op cnt : 0
LB apply : 2.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (63.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: 2.272762345679012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.876128570207914e-19,-1.470913817777721e-19,2.593850171719354e-19)
sum a = (-1.450608097831021e-20,-1.2772469354426568e-19,3.399186118239432e-19)
sum e = 7.856780462041287e-10
sum de = 4.301339185275744e-23
Info: cfl dt = 0.04010910489471725 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6461e+04 | 2592 | 1 | 5.579e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.25012617341548 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 223 [SPH][rank=0]
Info: time since start : 153.476304226 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00028041300000000003 s
sph::RenderFieldGetter compute custom field took : 0.00026369800000000004 s
rho_t_ampl=0.000540581, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000417658, eps_t_phi=6.28319 rad
vx_t_ampl=-5.07088e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 8.34s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 7.977501770403178, dt = 0.04010910489471725 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.67 us (3.6%)
patch tree reduce : 1.61 us (0.6%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 248.05 us (91.8%)
LB move op cnt : 0
LB apply : 3.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8834900612345145e-19,-1.5233685493171533e-19,2.733226277217429e-19)
sum a = (-1.1050123851715053e-19,8.67121612512507e-20,8.190383156403242e-20)
sum e = 7.85685771321914e-10
sum de = -1.6543612251060553e-24
Info: cfl dt = 0.04010943078959255 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.8538e+04 | 2592 | 1 | 6.726e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2146.8538048781024 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.017610875297896, dt = 0.04010943078959255 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (1.8%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 631.00 ns (0.3%)
LB compute : 203.05 us (93.8%)
LB move op cnt : 0
LB apply : 2.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9479031077172695e-19,-1.4456086923737816e-19,2.7143337284235236e-19)
sum a = (-1.8734008748721648e-19,6.08347821058688e-20,-7.665692680765084e-20)
sum e = 7.856868109232262e-10
sum de = -7.444625512977249e-24
Info: cfl dt = 0.040109756503068444 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3709e+04 | 2592 | 1 | 7.689e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1877.854991951912 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.057720306087488, dt = 0.040109756503068444 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.10 us (1.8%)
patch tree reduce : 1.39 us (0.6%)
gen split merge : 560.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.4%)
LB compute : 207.76 us (93.4%)
LB move op cnt : 0
LB apply : 2.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.042287939094041e-19,-1.4264614213497944e-19,2.6517879129190153e-19)
sum a = (-1.4148522842732467e-19,-3.8575360644875523e-19,2.0057771531791714e-19)
sum e = 7.856877022461447e-10
sum de = -4.1359030627651384e-24
Info: cfl dt = 0.04011008191852051 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3772e+04 | 2592 | 1 | 7.675e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1881.3484826659137 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.097830062590557, dt = 0.04011008191852051 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (1.8%)
patch tree reduce : 1.29 us (0.6%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.4%)
LB compute : 198.57 us (87.8%)
LB move op cnt : 0
LB apply : 2.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0888230787979086e-19,-1.6707873366947133e-19,2.7878388687925587e-19)
sum a = (1.3841903595954864e-19,2.860619133680803e-20,-3.998698656370855e-20)
sum e = 7.856886141423665e-10
sum de = -2.481541837659083e-23
Info: cfl dt = 0.04011040693783717 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.9809e+04 | 2592 | 1 | 6.511e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2217.710669591854 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.137940144509077, dt = 0.04011040693783717 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (1.8%)
patch tree reduce : 1.18 us (0.6%)
gen split merge : 731.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.4%)
LB compute : 198.70 us (93.3%)
LB move op cnt : 0
LB apply : 2.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (53.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9755086990670215e-19,-1.5761601347986508e-19,2.7235545762638333e-19)
sum a = (1.1129325607849462e-19,-7.712977061774454e-20,3.605661087580422e-20)
sum e = 7.856895446329581e-10
sum de = 1.4889251025954498e-23
Info: cfl dt = 0.04011073146364924 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3664e+04 | 2592 | 1 | 7.700e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1875.3724183073148 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.178050551446914, dt = 0.04011073146364924 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (2.0%)
patch tree reduce : 1.48 us (0.7%)
gen split merge : 772.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 199.36 us (92.8%)
LB move op cnt : 0
LB apply : 2.80 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.931076842513611e-19,-1.628351955944276e-19,2.7532678448187325e-19)
sum a = (-1.7974526348611206e-19,-2.30877406830604e-19,2.2840213836998623e-19)
sum e = 7.856904919376053e-10
sum de = -5.624828165360588e-23
Info: cfl dt = 0.04011105539943927 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3649e+04 | 2592 | 1 | 7.703e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1874.5647196692037 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.218161282910563, dt = 0.04011105539943927 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (1.9%)
patch tree reduce : 1.02 us (0.5%)
gen split merge : 841.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 211.16 us (93.1%)
LB move op cnt : 0
LB apply : 2.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0621376738264816e-19,-1.7517801698869325e-19,2.883457952081559e-19)
sum a = (-7.826513785646978e-20,8.764861264270827e-20,1.5313669490863578e-19)
sum e = 7.856914542676372e-10
sum de = 0
Info: cfl dt = 0.04011137864956424 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3556e+04 | 2592 | 1 | 7.724e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1869.4253688881277 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.258272338310002, dt = 0.04011137864956424 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (2.0%)
patch tree reduce : 1.21 us (0.6%)
gen split merge : 821.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 203.20 us (92.4%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0879028924195835e-19,-1.652782082693826e-19,2.929788309766138e-19)
sum a = (2.558841135326664e-19,9.551132795719003e-20,1.9704436588437118e-20)
sum e = 7.856924298435384e-10
sum de = 3.143286327701505e-23
Info: cfl dt = 0.04011170111927964 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6575e+04 | 2592 | 1 | 7.087e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2037.605151167369 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.298383716959567, dt = 0.04011170111927964 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (1.8%)
patch tree reduce : 1.56 us (0.7%)
gen split merge : 751.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.4%)
LB compute : 204.69 us (93.2%)
LB move op cnt : 0
LB apply : 2.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.905311623920509e-19,-1.6128279187849437e-19,2.910931335289851e-19)
sum a = (2.0131048853814457e-19,-1.6967022396233519e-19,3.3534383068286655e-20)
sum e = 7.856934168966074e-10
sum de = -4.6735704609246064e-23
Info: cfl dt = 0.04011202271476324 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4810e+04 | 2592 | 1 | 5.784e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2496.3709200889143 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.338495418078846, dt = 0.0016200691608396767 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 us (1.9%)
patch tree reduce : 921.00 ns (0.5%)
gen split merge : 631.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 511.00 ns (0.3%)
LB compute : 182.16 us (94.2%)
LB move op cnt : 0
LB apply : 1.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9041285271483768e-19,-1.668873020389805e-19,2.914248328886839e-19)
sum a = (-7.913274215603342e-20,-2.1095737437763156e-19,9.274161845169151e-20)
sum e = 7.856795999980695e-10
sum de = -9.926167350636332e-24
Info: cfl dt = 0.0401120356836169 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6688e+04 | 2592 | 1 | 5.552e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.05310483378264 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 233 [SPH][rank=0]
Info: time since start : 154.41032083800002 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00030148400000000003 s
sph::RenderFieldGetter compute custom field took : 0.000264089 s
rho_t_ampl=0.000431209, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000405683, eps_t_phi=6.28319 rad
vx_t_ampl=-4.73361e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 8.70s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 8.340115487239686, dt = 0.0401120356836169 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.79 us (3.9%)
patch tree reduce : 1.46 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 228.74 us (91.0%)
LB move op cnt : 0
LB apply : 3.71 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.95526459874387e-19,-1.7537437818906796e-19,2.951928479054337e-19)
sum a = (-2.3931418596296995e-20,-1.8986279487529426e-19,8.461756732307452e-20)
sum e = 7.856940548635055e-10
sum de = 3.350081480839762e-23
Info: cfl dt = 0.040112356257505755 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2844e+04 | 2592 | 1 | 7.892e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1829.7677375138157 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.380227522923303, dt = 0.040112356257505755 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (2.0%)
patch tree reduce : 1.46 us (0.7%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 201.75 us (93.1%)
LB move op cnt : 0
LB apply : 2.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9461941901575228e-19,-1.825637450672229e-19,2.984241217971791e-19)
sum a = (1.066496012478756e-19,1.7143991387580653e-21,1.8059786577137237e-19)
sum e = 7.856952581514986e-10
sum de = -1.6543612251060553e-23
Info: cfl dt = 0.04011267578223224 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3328e+04 | 2592 | 1 | 7.777e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1856.7431181389518 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.420339879180808, dt = 0.04011267578223224 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (1.8%)
patch tree reduce : 1.11 us (0.5%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.4%)
LB compute : 198.09 us (93.0%)
LB move op cnt : 0
LB apply : 2.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8779689429645642e-19,-1.7865623933926395e-19,3.0759338339632898e-19)
sum a = (-2.0110016022309884e-19,-4.523811081527863e-20,1.472786481569009e-19)
sum e = 7.856962696468535e-10
sum de = -4.342698215903395e-23
Info: cfl dt = 0.04011299415333657 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7430e+04 | 2592 | 1 | 6.925e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2085.282997836604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.460452554963041, dt = 0.04011299415333657 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (2.1%)
patch tree reduce : 1.27 us (0.6%)
gen split merge : 942.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 184.80 us (92.7%)
LB move op cnt : 0
LB apply : 2.65 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0157339893195175e-19,-1.8141638767674883e-19,3.1283290946200915e-19)
sum a = (-6.67989583065549e-20,-1.3856191004294106e-19,1.2809820553775243e-19)
sum e = 7.85697285377309e-10
sum de = -2.274746684520826e-23
Info: cfl dt = 0.04011331128098736 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.0130e+04 | 2592 | 1 | 6.459e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2235.7425841006416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.500565549116377, dt = 0.04011331128098736 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (1.9%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 511.00 ns (0.2%)
LB compute : 203.20 us (94.0%)
LB move op cnt : 0
LB apply : 2.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0107386918371812e-19,-1.88837033541956e-19,3.175866601639799e-19)
sum a = (-2.768775084781684e-20,9.439230275612672e-20,4.5381769659006606e-20)
sum e = 7.856983038951316e-10
sum de = -3.680953725860973e-23
Info: cfl dt = 0.0401136270763545 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7768e+04 | 2592 | 1 | 6.863e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2104.1547960361772 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.540678860397364, dt = 0.0401136270763545 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.18 us (2.0%)
patch tree reduce : 1.31 us (0.6%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 198.43 us (92.9%)
LB move op cnt : 0
LB apply : 2.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0386071935807405e-19,-1.803807672036428e-19,3.1774807247790946e-19)
sum a = (-5.613136907782927e-20,-6.081095585143003e-20,2.22311581819021e-20)
sum e = 7.856993235554501e-10
sum de = -8.271806125530277e-24
Info: cfl dt = 0.040113941451664914 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3496e+04 | 2592 | 1 | 5.959e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2423.3025033557224 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.580792487473719, dt = 0.040113941451664914 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.08 us (1.9%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 751.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.4%)
LB compute : 197.63 us (93.1%)
LB move op cnt : 0
LB apply : 2.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0584569283131814e-19,-1.8594460841258687e-19,3.1817552435792736e-19)
sum a = (-1.3401857324320126e-19,7.86774758373822e-21,8.019340232373714e-20)
sum e = 7.857003427231235e-10
sum de = -3.350081480839762e-23
Info: cfl dt = 0.040114254320221726 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.8714e+04 | 2592 | 1 | 6.695e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2156.8985358081086 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.620906428925384, dt = 0.040114254320221726 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (2.1%)
patch tree reduce : 1.02 us (0.5%)
gen split merge : 741.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.5%)
LB compute : 186.42 us (92.8%)
LB move op cnt : 0
LB apply : 2.55 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1306258314132477e-19,-1.8423938803025324e-19,3.225549699275276e-19)
sum a = (-7.70656091847246e-20,6.691572107446862e-20,2.6442107376575065e-19)
sum e = 7.857013597893421e-10
sum de = 2.481541837659083e-24
Info: cfl dt = 0.04011456559642439 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3072e+04 | 2592 | 1 | 7.837e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1842.5976308551792 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.661020683245605, dt = 0.04011456559642439 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.21 us (2.1%)
patch tree reduce : 1.48 us (0.7%)
gen split merge : 1.16 us (0.6%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.4%)
LB compute : 185.63 us (92.7%)
LB move op cnt : 0
LB apply : 2.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1406164263779199e-19,-1.8036392450653953e-19,3.368571842687073e-19)
sum a = (-3.616069556423718e-19,1.5930031528374616e-19,-1.823829769180898e-19)
sum e = 7.857023731733661e-10
sum de = 1.3648480107124957e-23
Info: cfl dt = 0.040114875195788026 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4014e+04 | 2592 | 1 | 7.620e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1895.0858009817875 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.701135248842029, dt = 0.0015939552341670549 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (1.9%)
patch tree reduce : 1.29 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.3%)
LB compute : 206.85 us (93.2%)
LB move op cnt : 0
LB apply : 3.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.220409730898394e-19,-1.7827378687577258e-19,3.276047987680351e-19)
sum a = (-1.3048242844649492e-19,1.8207757907484638e-19,5.503668576310696e-20)
sum e = 7.856812732953746e-10
sum de = -4.549493369041652e-24
Info: cfl dt = 0.04011488746172827 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5138e+04 | 2592 | 1 | 7.377e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.78889778480861 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 243 [SPH][rank=0]
Info: time since start : 155.357364498 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00030060300000000004 s
sph::RenderFieldGetter compute custom field took : 0.00022097500000000002 s
rho_t_ampl=0.00033045, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000390935, eps_t_phi=6.28319 rad
vx_t_ampl=-4.30014e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 9.07s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 8.702729204076196, dt = 0.04011488746172827 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.57 us (4.2%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 227.80 us (90.7%)
LB move op cnt : 0
LB apply : 2.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2497242398078923e-19,-1.709480352308302e-19,3.300018073807283e-19)
sum a = (-1.7312649432201673e-20,2.0759298144414523e-20,-2.2122446787858136e-21)
sum e = 7.85703019830535e-10
sum de = -2.5229008682867344e-23
Info: cfl dt = 0.040115195219726334 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3918e+04 | 2592 | 1 | 5.902e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2446.9038780287456 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.742844091537924, dt = 0.040115195219726334 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.36 us (2.2%)
patch tree reduce : 1.26 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.5%)
LB compute : 181.01 us (92.5%)
LB move op cnt : 0
LB apply : 2.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2407852864184487e-19,-1.733409306119657e-19,3.28764795552557e-19)
sum a = (1.195585015838073e-19,1.0490904907201873e-19,-2.280132611012816e-20)
sum e = 7.857042179923724e-10
sum de = -1.943874439499615e-23
Info: cfl dt = 0.04011550114154496 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4590e+04 | 2592 | 1 | 5.813e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2484.3673303142536 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.78295928675765, dt = 0.04011550114154496 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.21 us (2.0%)
patch tree reduce : 1.07 us (0.5%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 581.00 ns (0.3%)
LB compute : 201.27 us (93.8%)
LB move op cnt : 0
LB apply : 2.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (56.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.178212612692344e-19,-1.674595429430014e-19,3.274371414184648e-19)
sum a = (1.2966740622569271e-19,-2.295919605056287e-19,4.820159090965844e-20)
sum e = 7.857052116342479e-10
sum de = -2.0679515313825692e-24
Info: cfl dt = 0.0401158051367676 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4723e+04 | 2592 | 1 | 5.796e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2491.8114235353382 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.823074787899195, dt = 0.0401158051367676 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (1.9%)
patch tree reduce : 991.00 ns (0.5%)
gen split merge : 440.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.5%)
LB compute : 182.43 us (93.2%)
LB move op cnt : 0
LB apply : 2.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1177432221166966e-19,-1.8337917808551544e-19,3.3079494584606404e-19)
sum a = (3.5183326175259048e-19,-1.2974375358114045e-19,7.97563970950346e-20)
sum e = 7.857061946932979e-10
sum de = 6.617444900424222e-24
Info: cfl dt = 0.04011610712559128 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.8324e+04 | 2592 | 1 | 6.763e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2135.2979771980904 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.863190593035963, dt = 0.04011610712559128 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (1.8%)
patch tree reduce : 1.14 us (0.5%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 200.36 us (93.4%)
LB move op cnt : 0
LB apply : 2.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9297622905445752e-19,-1.8657641495270471e-19,3.3462738524390635e-19)
sum a = (-4.940743575621108e-20,1.666397419920188e-19,-2.486173379415389e-20)
sum e = 7.857071665726768e-10
sum de = -8.271806125530277e-24
Info: cfl dt = 0.04011640702943305 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6787e+04 | 2592 | 1 | 7.046e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2049.663369846414 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.903306700161554, dt = 0.04011640702943305 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (2.0%)
patch tree reduce : 1.27 us (0.6%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 199.42 us (92.4%)
LB move op cnt : 0
LB apply : 2.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0276964122377432e-19,-1.7395096488509637e-19,3.315315857385378e-19)
sum a = (4.0030736561078613e-19,6.234929135799737e-20,-1.0341301083798397e-19)
sum e = 7.857081259046064e-10
sum de = -4.549493369041652e-23
Info: cfl dt = 0.040116704770933966 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3963e+04 | 2592 | 1 | 5.896e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2449.499984751314 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.943423107190988, dt = 0.040116704770933966 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (2.1%)
patch tree reduce : 1.06 us (0.5%)
gen split merge : 841.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 187.08 us (93.3%)
LB move op cnt : 0
LB apply : 2.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.779377545286878e-19,-1.7353852420481138e-19,3.258073990119929e-19)
sum a = (-3.108060947989827e-19,2.413438946410392e-20,-1.7993621212616998e-20)
sum e = 7.857090713471652e-10
sum de = 1.1580528575742387e-23
Info: cfl dt = 0.040117000273974246 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4108e+04 | 2592 | 1 | 5.876e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2457.5958285398565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.983539811961922, dt = 0.040117000273974246 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (1.9%)
patch tree reduce : 861.00 ns (0.4%)
gen split merge : 611.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 561.00 ns (0.3%)
LB compute : 194.22 us (93.7%)
LB move op cnt : 0
LB apply : 1.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0401846559435836e-19,-1.7333805502953343e-19,3.267989211225357e-19)
sum a = (1.5938942624559248e-20,-1.6812619586163925e-19,8.322936569032802e-20)
sum e = 7.857100015978871e-10
sum de = 0
Info: cfl dt = 0.04011729346368892 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.2779e+04 | 2592 | 1 | 6.059e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2383.55259050513 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.023656812235897, dt = 0.04011729346368892 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (1.6%)
patch tree reduce : 1.26 us (0.5%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 215.74 us (93.9%)
LB move op cnt : 0
LB apply : 2.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9815556381245863e-19,-1.8393786267235565e-19,3.321682393073612e-19)
sum a = (1.7810207352481727e-19,-1.0520064709134644e-19,7.086705225952804e-20)
sum e = 7.857109153942514e-10
sum de = -1.5716431638507526e-23
Info: cfl dt = 0.04011758426648279 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6476e+04 | 2592 | 1 | 7.106e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2032.3852113522364 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.063774105699586, dt = 0.001568815213115471 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (1.7%)
patch tree reduce : 1.31 us (0.6%)
gen split merge : 872.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.4%)
LB compute : 215.83 us (93.4%)
LB move op cnt : 0
LB apply : 2.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9368608711773685e-19,-1.8283446061334622e-19,3.3203144533918243e-19)
sum a = (-3.2508870194255684e-20,9.231829133387153e-21,-8.512403576169746e-20)
sum e = 7.856828512566848e-10
sum de = 1.4475660719677984e-23
Info: cfl dt = 0.04011759558897413 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6191e+04 | 2592 | 1 | 5.612e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.64498443343328 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 253 [SPH][rank=0]
Info: time since start : 156.207753606 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000280103 s
sph::RenderFieldGetter compute custom field took : 0.00021060000000000002 s
rho_t_ampl=0.000240259, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000373932, eps_t_phi=6.28319 rad
vx_t_ampl=-3.78758e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 9.43s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 9.065342920912702, dt = 0.04011759558897413 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.63 us (2.9%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 304.09 us (93.0%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9414618030689938e-19,-1.8237601061414498e-19,3.2849411310159965e-19)
sum a = (4.422810099820997e-20,4.9280421906002194e-20,9.363696371153527e-20)
sum e = 7.857114921028303e-10
sum de = 4.1359030627651384e-25
Info: cfl dt = 0.04011788382934069 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2088e+04 | 2592 | 1 | 8.078e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1787.8940724687534 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.105460516501676, dt = 0.04011788382934069 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.19 us (1.9%)
patch tree reduce : 1.59 us (0.7%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 202.73 us (92.6%)
LB move op cnt : 0
LB apply : 2.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9170111364449279e-19,-1.7960148436449876e-19,3.358363606758693e-19)
sum a = (-2.2325036090135234e-19,5.489123082761682e-20,5.0992941226285695e-20)
sum e = 7.857125394787705e-10
sum de = 2.5229008682867344e-23
Info: cfl dt = 0.04011816954207772 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7776e+04 | 2592 | 1 | 6.861e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2104.863039041831 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.145578400331017, dt = 0.04011816954207772 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.19 us (1.9%)
patch tree reduce : 1.05 us (0.5%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 200.67 us (93.1%)
LB move op cnt : 0
LB apply : 2.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0593771146915064e-19,-1.772788353542086e-19,3.370267101674045e-19)
sum a = (1.3471528578679024e-19,6.585560198696895e-20,-7.015011047537959e-20)
sum e = 7.857133974447973e-10
sum de = -2.357464745776129e-23
Info: cfl dt = 0.04011845265222544 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4582e+04 | 2592 | 1 | 5.814e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2484.067063711728 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.185696569873095, dt = 0.04011845265222544 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.10 us (2.1%)
patch tree reduce : 1.35 us (0.7%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 185.15 us (92.7%)
LB move op cnt : 0
LB apply : 2.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9513209428367625e-19,-1.744176308341041e-19,3.317823775382596e-19)
sum a = (6.148816835165021e-20,1.1503424119252439e-20,-8.244405445912605e-20)
sum e = 7.8571423279815e-10
sum de = -1.5302841332231012e-23
Info: cfl dt = 0.04011873309140288 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4226e+04 | 2592 | 1 | 5.861e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2464.3001568248815 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.22581502252532, dt = 0.04011873309140288 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (1.7%)
patch tree reduce : 951.00 ns (0.5%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 681.00 ns (0.3%)
LB compute : 183.88 us (94.3%)
LB move op cnt : 0
LB apply : 2.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9263444554250822e-19,-1.7504491860182836e-19,3.2822821951763245e-19)
sum a = (2.234738347360884e-21,-7.593269068416434e-20,1.798620417381598e-19)
sum e = 7.857150459749607e-10
sum de = -1.0339757656912846e-23
Info: cfl dt = 0.0401190107926242 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4683e+04 | 2592 | 1 | 5.801e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2489.781880673366 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.265933755616722, dt = 0.0401190107926242 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.9%)
patch tree reduce : 1.10 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.4%)
LB compute : 181.35 us (93.4%)
LB move op cnt : 0
LB apply : 1.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9371237815711757e-19,-1.7985823279595106e-19,3.4070580084208845e-19)
sum a = (2.4547943469774794e-19,7.953939636854456e-20,3.2447537177543755e-20)
sum e = 7.85715835981878e-10
sum de = 8.271806125530277e-24
Info: cfl dt = 0.04011928569025343 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4815e+04 | 2592 | 1 | 5.784e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2497.1465923789733 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.306052766409346, dt = 0.04011928569025343 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (2.1%)
patch tree reduce : 1.22 us (0.6%)
gen split merge : 742.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 176.97 us (92.3%)
LB move op cnt : 0
LB apply : 2.73 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7894995954484537e-19,-1.7355331291446304e-19,3.390505108063317e-19)
sum a = (-1.0237073458866403e-19,-2.65410802593969e-21,-1.5582448872827857e-19)
sum e = 7.857166018647804e-10
sum de = -7.444625512977249e-24
Info: cfl dt = 0.04011955772001587 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.2549e+04 | 2592 | 1 | 6.092e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2370.8792900176204 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.346172052099599, dt = 0.04011955772001587 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (2.2%)
patch tree reduce : 1.17 us (0.6%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 701.00 ns (0.3%)
LB compute : 195.88 us (93.3%)
LB move op cnt : 0
LB apply : 2.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9020252439979195e-19,-1.753037210207323e-19,3.290222316391942e-19)
sum a = (6.587219916838464e-20,2.449861439363986e-21,3.107212073082327e-20)
sum e = 7.857173427160686e-10
sum de = -7.444625512977249e-24
Info: cfl dt = 0.040119826819009 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2743e+04 | 2592 | 1 | 7.916e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1824.4693376334394 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.386291609819615, dt = 0.040119826819009 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (2.1%)
patch tree reduce : 1.30 us (0.6%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.4%)
LB compute : 191.44 us (92.9%)
LB move op cnt : 0
LB apply : 2.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.843396226178922e-19,-1.7510243025047368e-19,3.340179443972539e-19)
sum a = (3.4263797072918496e-20,4.3553369329708694e-20,1.2061255367123316e-19)
sum e = 7.857180576752101e-10
sum de = 2.771055052052643e-23
Info: cfl dt = 0.040120092925712926 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4047e+04 | 2592 | 1 | 5.885e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2454.363081151033 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.426411436638624, dt = 0.0015452011105860919 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (1.7%)
patch tree reduce : 1.11 us (0.5%)
gen split merge : 621.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 202.95 us (93.7%)
LB move op cnt : 0
LB apply : 2.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8533868211435943e-19,-1.7421182129145192e-19,3.360004883805646e-19)
sum a = (5.0741706004782427e-20,1.2097151657630507e-20,3.436853090073216e-20)
sum e = 7.856841571836219e-10
sum de = -1.9025154088719637e-23
Info: cfl dt = 0.04012010311412675 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4856e+04 | 2592 | 1 | 5.778e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.26664845147042 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 263 [SPH][rank=0]
Info: time since start : 157.08045280800002 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00030070300000000004 s
sph::RenderFieldGetter compute custom field took : 0.00024353900000000003 s
rho_t_ampl=0.000162198, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000355218, eps_t_phi=6.28319 rad
vx_t_ampl=-3.21398e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 9.79s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 9.42795663774921, dt = 0.04012010311412675 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.62 us (4.0%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.4%)
LB compute : 238.36 us (90.8%)
LB move op cnt : 0
LB apply : 3.54 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8430018605882114e-19,-1.7375090650730875e-19,3.373127252043215e-19)
sum a = (-1.9987762689189555e-19,-5.927946429523859e-20,1.4829561177679333e-19)
sum e = 7.857185033428297e-10
sum de = 2.895132143935597e-23
Info: cfl dt = 0.04012036604794531 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3452e+04 | 2592 | 1 | 5.965e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2421.2331572513954 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.468076740863337, dt = 0.04012036604794531 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (1.7%)
patch tree reduce : 882.00 ns (0.4%)
gen split merge : 430.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 752.00 ns (0.4%)
LB compute : 200.66 us (94.1%)
LB move op cnt : 0
LB apply : 1.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.964992283314735e-19,-1.775442105329577e-19,3.4554778254822064e-19)
sum a = (2.2956021035272423e-19,8.260606061156338e-20,-4.1461679816353285e-20)
sum e = 7.857192887177063e-10
sum de = -4.1359030627651384e-24
Info: cfl dt = 0.040120625869786715 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3792e+04 | 2592 | 1 | 5.919e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2440.1976140035154 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.508197106911283, dt = 0.040120625869786715 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (1.8%)
patch tree reduce : 1.19 us (0.6%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.5%)
LB compute : 193.55 us (93.2%)
LB move op cnt : 0
LB apply : 2.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7851615739506356e-19,-1.7140278805261851e-19,3.4007774800489056e-19)
sum a = (5.482076076470056e-19,-1.6152095172350953e-20,-1.38179747711376e-19)
sum e = 7.857199223448656e-10
sum de = 2.812414082680294e-23
Info: cfl dt = 0.04012088252108592 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4047e+04 | 2592 | 1 | 5.885e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2454.419888376416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.548317732781069, dt = 0.04012088252108592 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (2.1%)
patch tree reduce : 1.14 us (0.6%)
gen split merge : 882.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.4%)
LB compute : 182.76 us (92.5%)
LB move op cnt : 0
LB apply : 2.55 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4858380906011808e-19,-1.7402901640825788e-19,3.3259365987172323e-19)
sum a = (3.2660043670694803e-20,3.772897660317142e-20,1.1625995878232659e-19)
sum e = 7.857205249576276e-10
sum de = 7.858215819253763e-24
Info: cfl dt = 0.04012113594590625 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5159e+04 | 2592 | 1 | 5.740e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2516.38956349043 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.588438615302154, dt = 0.04012113594590625 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (1.8%)
patch tree reduce : 1.10 us (0.6%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 661.00 ns (0.3%)
LB compute : 181.38 us (94.0%)
LB move op cnt : 0
LB apply : 2.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (52.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5785140044182056e-19,-1.71438938231767e-19,3.423623142695696e-19)
sum a = (-2.1004568637238757e-19,-1.5622139451248087e-19,-1.0636270614827862e-20)
sum e = 7.857210980694631e-10
sum de = 1.4475660719677984e-23
Info: cfl dt = 0.04012138608983475 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4713e+04 | 2592 | 1 | 5.797e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2491.565542924701 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.62855975124806, dt = 0.04012138608983475 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.48 us (1.7%)
patch tree reduce : 1.05 us (0.5%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 191.29 us (93.5%)
LB move op cnt : 0
LB apply : 2.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7141757676227016e-19,-1.816012465473945e-19,3.3938996191434946e-19)
sum a = (-1.0007026864285136e-19,1.4565699889706672e-19,9.302121322329476e-20)
sum e = 7.857216411104538e-10
sum de = 4.1359030627651384e-24
Info: cfl dt = 0.04012163289989279 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4060e+04 | 2592 | 1 | 5.883e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2455.218524499952 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.668681137337895, dt = 0.04012163289989279 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.04 us (2.0%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 184.63 us (92.7%)
LB move op cnt : 0
LB apply : 2.64 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7246921833749881e-19,-1.6968524374557515e-19,3.4520156584826075e-19)
sum a = (1.182702406541522e-19,8.164254151671995e-20,-4.060664103991065e-20)
sum e = 7.857221535591365e-10
sum de = -2.5229008682867344e-23
Info: cfl dt = 0.04012187632454322 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5307e+04 | 2592 | 1 | 5.721e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2524.7102997390098 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.708802770237789, dt = 0.04012187632454322 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 17.05 us (8.1%)
patch tree reduce : 962.00 ns (0.5%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.2%)
LB compute : 184.41 us (87.7%)
LB move op cnt : 0
LB apply : 2.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6408237677505032e-19,-1.6770150266480206e-19,3.4089166736154336e-19)
sum a = (-1.1926272739077424e-19,1.7949024168786126e-19,4.2730854235757966e-20)
sum e = 7.857226349423775e-10
sum de = 9.926167350636332e-24
Info: cfl dt = 0.040122116313696735 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5279e+04 | 2592 | 1 | 5.724e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2523.174833387718 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.748924646562331, dt = 0.040122116313696735 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (2.0%)
patch tree reduce : 991.00 ns (0.5%)
gen split merge : 521.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.5%)
LB compute : 175.60 us (92.9%)
LB move op cnt : 0
LB apply : 2.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7392837102312856e-19,-1.5853455666822887e-19,3.4427794800469007e-19)
sum a = (-2.7134981744837274e-19,1.214939611220458e-19,-7.942863834666435e-20)
sum e = 7.857230848354664e-10
sum de = 1.3234889800848443e-23
Info: cfl dt = 0.04012235281871769 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5212e+04 | 2592 | 1 | 5.733e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2519.467599878747 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.789046762876028, dt = 0.0015235917096898532 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.42 us (2.3%)
patch tree reduce : 1.35 us (0.7%)
gen split merge : 681.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 177.83 us (92.1%)
LB move op cnt : 0
LB apply : 2.62 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7764855309549992e-19,-1.5951102230272828e-19,3.417062825046886e-19)
sum a = (1.9488890216940463e-19,3.177863272422982e-20,-3.7870390895744444e-20)
sum e = 7.85685064929406e-10
sum de = 2.895132143935597e-24
Info: cfl dt = 0.04012236173061429 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6166e+04 | 2592 | 1 | 5.615e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.69146787268699 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 273 [SPH][rank=0]
Info: time since start : 157.88936663200002 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000284509 s
sph::RenderFieldGetter compute custom field took : 0.00026042400000000004 s
rho_t_ampl=9.74198e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000335344, eps_t_phi=6.28319 rad
vx_t_ampl=-2.59779e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 10.15s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 9.790570354585718, dt = 0.04012236173061429 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.95 us (4.0%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 741.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 228.22 us (91.0%)
LB move op cnt : 0
LB apply : 3.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (10.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.690513832180057e-19,-1.5830245608619598e-19,3.402184918829047e-19)
sum a = (2.4463154867771984e-19,-5.666159951975378e-20,1.0301918602796689e-19)
sum e = 7.857233596322621e-10
sum de = 1.6957202557337067e-23
Info: cfl dt = 0.040122594571253556 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4857e+04 | 2592 | 1 | 5.778e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2499.678191437743 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.830692716316332, dt = 0.040122594571253556 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.8%)
patch tree reduce : 1.18 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 184.57 us (92.7%)
LB move op cnt : 0
LB apply : 2.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5811431083562773e-19,-1.623442925934908e-19,3.471783002017142e-19)
sum a = (-2.1834050929700353e-19,-1.49317108255189e-19,-1.0195687395603496e-19)
sum e = 7.857238127831313e-10
sum de = -2.895132143935597e-24
Info: cfl dt = 0.04012282383080549 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5147e+04 | 2592 | 1 | 5.741e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2515.847268874271 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.870815310887584, dt = 0.04012282383080549 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (2.0%)
patch tree reduce : 1.04 us (0.5%)
gen split merge : 751.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 179.91 us (92.6%)
LB move op cnt : 0
LB apply : 2.44 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.773396333827765e-19,-1.702012053934217e-19,3.3897541683385827e-19)
sum a = (-2.7349253715790114e-20,-5.483653538832899e-20,5.451269921760618e-20)
sum e = 7.85724167581005e-10
sum de = 9.926167350636332e-24
Info: cfl dt = 0.04012304946756728 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5253e+04 | 2592 | 1 | 5.728e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2521.781654814606 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.91093813471839, dt = 0.04012304946756728 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (1.9%)
patch tree reduce : 661.00 ns (0.3%)
gen split merge : 591.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.4%)
LB compute : 186.55 us (93.8%)
LB move op cnt : 0
LB apply : 2.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.737311882277732e-19,-1.70501087561358e-19,3.443016331208354e-19)
sum a = (7.312195327761717e-20,-9.824192455021475e-20,5.0411693641361495e-20)
sum e = 7.857244869727877e-10
sum de = -1.2821299494571929e-23
Info: cfl dt = 0.040123271438692515 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5250e+04 | 2592 | 1 | 5.728e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2521.6190346406856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.951061184185956, dt = 0.040123271438692515 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (1.7%)
patch tree reduce : 1.16 us (0.5%)
gen split merge : 912.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 203.08 us (93.4%)
LB move op cnt : 0
LB apply : 2.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6884105490295996e-19,-1.7532549328771946e-19,3.462420427636788e-19)
sum a = (-1.2160262989565798e-19,7.57407872784307e-23,1.50630782060488e-19)
sum e = 7.857247734692356e-10
sum de = 4.1359030627651384e-25
Info: cfl dt = 0.04012348970294047 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3912e+04 | 2592 | 1 | 5.903e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2447.046971134208 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.99118445562465, dt = 0.04012348970294047 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (1.8%)
patch tree reduce : 1.18 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 196.41 us (93.2%)
LB move op cnt : 0
LB apply : 2.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7821381044218533e-19,-1.7335736251157865e-19,3.542964342405883e-19)
sum a = (-5.0695696685866174e-20,1.0764317916533131e-19,2.943466586785747e-20)
sum e = 7.857250269256965e-10
sum de = -5.997059441009451e-24
Info: cfl dt = 0.040123704220547916 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5364e+04 | 2592 | 1 | 5.714e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2527.983271779171 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.03130794532759, dt = 0.040123704220547916 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (1.8%)
patch tree reduce : 791.00 ns (0.4%)
gen split merge : 491.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 701.00 ns (0.4%)
LB compute : 175.06 us (93.9%)
LB move op cnt : 0
LB apply : 2.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7764198033565474e-19,-1.6686963774689657e-19,3.5304605650769486e-19)
sum a = (5.494827230569703e-21,-1.431828233812442e-20,7.71503766341672e-20)
sum e = 7.857252472503935e-10
sum de = -9.305781891221561e-24
Info: cfl dt = 0.04012391495323207 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5457e+04 | 2592 | 1 | 5.702e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2533.1808779892563 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.071431649548138, dt = 0.04012391495323207 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (1.6%)
patch tree reduce : 661.00 ns (0.3%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.4%)
LB compute : 196.82 us (94.0%)
LB move op cnt : 0
LB apply : 2.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7695184055191094e-19,-1.6988406973089183e-19,3.570988971911183e-19)
sum a = (-2.450127687487402e-19,7.46085395331476e-20,9.276679917904391e-21)
sum e = 7.857254343967958e-10
sum de = 1.3234889800848443e-23
Info: cfl dt = 0.040124121864192605 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3312e+04 | 2592 | 1 | 5.985e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2413.665533401848 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.111555564501371, dt = 0.040124121864192605 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (1.6%)
patch tree reduce : 1.22 us (0.5%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 213.81 us (93.9%)
LB move op cnt : 0
LB apply : 2.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9202975163675174e-19,-1.6511840804564667e-19,3.5610943660934324e-19)
sum a = (-1.5626079255928724e-19,-2.51056883573559e-19,-1.6305113845909215e-20)
sum e = 7.857255883632441e-10
sum de = -1.7163997710475324e-23
Info: cfl dt = 0.04012432491811295 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4972e+04 | 2592 | 1 | 5.764e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2506.1968128302697 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.151679686365563, dt = 0.0015043850566645034 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.63 us (1.9%)
patch tree reduce : 941.00 ns (0.5%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 611.00 ns (0.3%)
LB compute : 174.43 us (93.7%)
LB move op cnt : 0
LB apply : 2.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8953867565542886e-19,-1.7202761103540086e-19,3.5557168393444487e-19)
sum a = (2.0276964122377432e-20,1.3241511510167373e-19,-1.2226827347585207e-19)
sum e = 7.856855048446883e-10
sum de = 4.342698215903395e-24
Info: cfl dt = 0.0401243324560931 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6161e+04 | 2592 | 1 | 5.615e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.45062821369203 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 283 [SPH][rank=0]
Info: time since start : 158.69897249500002 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00029301100000000003 s
sph::RenderFieldGetter compute custom field took : 0.00021576800000000003 s
rho_t_ampl=4.66691e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000314858, eps_t_phi=6.28319 rad
vx_t_ampl=-1.95736e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 10.52s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 10.153184071422228, dt = 0.0401243324560931 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.92 us (3.9%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 812.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.4%)
LB compute : 235.01 us (91.5%)
LB move op cnt : 0
LB apply : 2.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8976872225001014e-19,-1.6642392246989536e-19,3.505860463837247e-19)
sum a = (4.9821519626457355e-20,2.1295016584061337e-19,1.0026797279316534e-19)
sum e = 7.857256748991779e-10
sum de = 1.8404768629304866e-23
Info: cfl dt = 0.04012453147794078 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2703e+04 | 2592 | 1 | 7.926e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1822.4875980707066 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.193308403878321, dt = 0.04012453147794078 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.62 us (2.1%)
patch tree reduce : 1.28 us (0.6%)
gen split merge : 902.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 202.28 us (92.6%)
LB move op cnt : 0
LB apply : 2.85 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8633774161082665e-19,-1.562620249517582e-19,3.590738109786874e-19)
sum a = (1.9028797027777928e-19,-1.629998226886748e-20,-1.4185484794084114e-19)
sum e = 7.857257683359129e-10
sum de = 1.1166938269465874e-23
Info: cfl dt = 0.04012472656956083 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3973e+04 | 2592 | 1 | 7.630e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1893.260803064248 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.233432935356262, dt = 0.04012472656956083 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (1.7%)
patch tree reduce : 1.35 us (0.6%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 211.13 us (93.2%)
LB move op cnt : 0
LB apply : 2.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.76182827650025e-19,-1.6151324927056595e-19,3.485243916214919e-19)
sum a = (2.814455765705678e-20,-1.7091585181494764e-19,-2.783809399589404e-20)
sum e = 7.857258250466679e-10
sum de = 1.1166938269465874e-23
Info: cfl dt = 0.040124917706129 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4120e+04 | 2592 | 1 | 7.597e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1901.446252249816 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.273557661925823, dt = 0.040124917706129 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.54 us (2.1%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 205.13 us (92.9%)
LB move op cnt : 0
LB apply : 2.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7819409216264978e-19,-1.7147467761342515e-19,3.4969483592903733e-19)
sum a = (3.587412323498737e-20,2.121254256916807e-20,2.9436437855447864e-19)
sum e = 7.857258459133205e-10
sum de = -6.617444900424222e-24
Info: cfl dt = 0.04012510485816686 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7832e+04 | 2592 | 1 | 6.851e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2108.328085861051 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.313682579631951, dt = 0.04012510485816686 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.98 us (1.7%)
patch tree reduce : 1.31 us (0.6%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 501.00 ns (0.2%)
LB compute : 214.97 us (94.1%)
LB move op cnt : 0
LB apply : 2.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7695841331175613e-19,-1.6677268953918018e-19,3.6797041133287886e-19)
sum a = (-4.942715403574661e-20,-7.377509561238868e-20,-2.788853097424206e-20)
sum e = 7.857258342615864e-10
sum de = 3.7223127564886245e-24
Info: cfl dt = 0.04012528799783827 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4932e+04 | 2592 | 1 | 5.769e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2504.01360504264 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.353807684490118, dt = 0.04012528799783827 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.59 us (1.6%)
patch tree reduce : 961.00 ns (0.4%)
gen split merge : 560.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 752.00 ns (0.3%)
LB compute : 206.84 us (94.2%)
LB move op cnt : 0
LB apply : 2.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8025793875403603e-19,-1.716316022547288e-19,3.603861601028285e-19)
sum a = (-2.347592633902609e-19,2.1514260488389247e-20,-4.5663775296778207e-20)
sum e = 7.857257903322845e-10
sum de = 7.237830359838992e-24
Info: cfl dt = 0.04012546709878812 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7319e+04 | 2592 | 1 | 6.946e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2079.7542194802904 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.393932972487956, dt = 0.04012546709878812 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.08 us (2.1%)
patch tree reduce : 1.35 us (0.7%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 180.95 us (92.5%)
LB move op cnt : 0
LB apply : 2.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9356120468067845e-19,-1.6885748680257292e-19,3.581972613907558e-19)
sum a = (3.9738906023952663e-19,9.046116333505258e-20,1.1117919312231953e-19)
sum e = 7.857257144187576e-10
sum de = 2.0679515313825692e-24
Info: cfl dt = 0.04012564213614186 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4710e+04 | 2592 | 1 | 5.797e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2491.676122919761 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.434058439586744, dt = 0.04012564213614186 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.04 us (1.9%)
patch tree reduce : 1.27 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.4%)
LB compute : 198.02 us (93.0%)
LB move op cnt : 0
LB apply : 2.77 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.650288541927561e-19,-1.6385109778799808e-19,3.658050965914696e-19)
sum a = (2.4107568560147795e-19,1.128314744435901e-19,4.347988351612234e-20)
sum e = 7.857256068524217e-10
sum de = -5.583469134732937e-24
Info: cfl dt = 0.040125813086501996 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5088e+04 | 2592 | 1 | 5.749e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2512.7322198836455 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.474184081722886, dt = 0.040125813086501996 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (1.9%)
patch tree reduce : 1.46 us (0.8%)
gen split merge : 621.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 631.00 ns (0.3%)
LB compute : 181.57 us (93.7%)
LB move op cnt : 0
LB apply : 1.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.583706484695897e-19,-1.5886935662284268e-19,3.6619152313540634e-19)
sum a = (-6.642431099537969e-20,2.0275249042855332e-19,2.1854139718125555e-19)
sum e = 7.857254680020784e-10
sum de = -9.512577044359818e-24
Info: cfl dt = 0.040125979927946684 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5512e+04 | 2592 | 1 | 5.695e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2536.4074128284933 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.514309894809388, dt = 0.0014878934493456342 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 16.27 us (7.8%)
patch tree reduce : 1.25 us (0.6%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 182.77 us (87.2%)
LB move op cnt : 0
LB apply : 2.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6411524057427622e-19,-1.5677428942219185e-19,3.7002893223661636e-19)
sum a = (2.3237992432630603e-19,2.8930772703850037e-20,9.629047155530476e-20)
sum e = 7.856854634817878e-10
sum de = 9.512577044359818e-24
Info: cfl dt = 0.04012598603564518 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4841e+04 | 2592 | 1 | 5.780e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.66521723268613 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 293 [SPH][rank=0]
Info: time since start : 159.589856242 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00029024700000000004 s
sph::RenderFieldGetter compute custom field took : 0.000229568 s
rho_t_ampl=1.02855e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000294286, eps_t_phi=6.28319 rad
vx_t_ampl=-1.3105e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 10.88s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 10.515797788258734, dt = 0.04012598603564518 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.92 us (3.8%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 236.62 us (91.1%)
LB move op cnt : 0
LB apply : 3.46 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5484107643272856e-19,-1.5571977226453093e-19,3.7380173417793638e-19)
sum a = (1.5833121191051864e-19,-9.564926605198778e-20,2.7877708813073137e-19)
sum e = 7.857253701732515e-10
sum de = 3.1019272970738538e-24
Info: cfl dt = 0.040126148602597896 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3926e+04 | 2592 | 1 | 5.901e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2448.0286249506507 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.55592377429438, dt = 0.040126148602597896 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (2.0%)
patch tree reduce : 832.00 ns (0.4%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.4%)
LB compute : 183.31 us (93.0%)
LB move op cnt : 0
LB apply : 2.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4988521550946353e-19,-1.620723446548965e-19,3.886492127574692e-19)
sum a = (1.8045512154939139e-19,-1.2540746192587916e-19,1.0196365703048557e-19)
sum e = 7.857251164887564e-10
sum de = -2.68833699079734e-24
Info: cfl dt = 0.040126307011574616 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5491e+04 | 2592 | 1 | 5.698e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2535.246329809072 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.596049922896977, dt = 0.040126307011574616 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 us (1.9%)
patch tree reduce : 1.33 us (0.7%)
gen split merge : 881.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 177.55 us (86.7%)
LB move op cnt : 0
LB apply : 2.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4226738684890098e-19,-1.6770273505727303e-19,3.8919321675784267e-19)
sum a = (2.346212354335121e-19,1.7111080089894938e-19,-5.717406784952838e-20)
sum e = 7.857248885711244e-10
sum de = 1.6543612251060553e-24
Info: cfl dt = 0.04012646125424094 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6110e+04 | 2592 | 1 | 5.621e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2569.7297833769426 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.636176229908552, dt = 0.04012646125424094 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (2.2%)
patch tree reduce : 1.03 us (0.5%)
gen split merge : 831.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 571.00 ns (0.3%)
LB compute : 183.32 us (93.3%)
LB move op cnt : 0
LB apply : 2.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.318101259352211e-19,-1.5488215618176092e-19,3.8370621913672897e-19)
sum a = (2.331686555077275e-19,1.0779193920651478e-19,-5.631337942986419e-20)
sum e = 7.857246278820906e-10
sum de = -7.651420666115506e-24
Info: cfl dt = 0.04012661131440951 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5933e+04 | 2592 | 1 | 5.643e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2559.9097731610436 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.676302691162793, dt = 0.04012661131440951 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.76 us (1.9%)
patch tree reduce : 901.00 ns (0.5%)
gen split merge : 570.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.4%)
LB compute : 180.77 us (93.3%)
LB move op cnt : 0
LB apply : 2.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2266741699057699e-19,-1.5182541205626233e-19,3.8146382223881e-19)
sum a = (-4.0757683799955417e-19,-1.4158470560709088e-19,1.8723728245501974e-20)
sum e = 7.857243383160329e-10
sum de = 1.2407709188295415e-24
Info: cfl dt = 0.04012675717752829 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5989e+04 | 2592 | 1 | 5.636e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2563.04156129918 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.716429302477202, dt = 0.04012675717752829 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.93 us (1.9%)
patch tree reduce : 1.60 us (0.8%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 192.60 us (93.2%)
LB move op cnt : 0
LB apply : 2.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.520345079788371e-19,-1.625024496272654e-19,3.8372063716250228e-19)
sum a = (-2.4930478092764217e-20,6.263071170903454e-20,7.190867370558095e-21)
sum e = 7.857240204259607e-10
sum de = 7.444625512977249e-24
Info: cfl dt = 0.04012689883049289 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5376e+04 | 2592 | 1 | 5.712e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2528.8553628993063 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.75655605965473, dt = 0.04012689883049289 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (1.8%)
patch tree reduce : 1.11 us (0.5%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.3%)
LB compute : 198.21 us (94.1%)
LB move op cnt : 0
LB apply : 2.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4530728827729632e-19,-1.5589723678035077e-19,3.837777962160488e-19)
sum a = (-1.2179323993116818e-20,-1.4399645916051656e-19,4.937713746436568e-20)
sum e = 7.857236748134972e-10
sum de = -1.8611563782443123e-24
Info: cfl dt = 0.04012703626164138 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5938e+04 | 2592 | 1 | 5.642e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2560.201241077459 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.796682958485224, dt = 0.04012703626164138 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (1.8%)
patch tree reduce : 1.02 us (0.5%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 711.00 ns (0.3%)
LB compute : 193.72 us (93.8%)
LB move op cnt : 0
LB apply : 2.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4529414275760594e-19,-1.6581101261433242e-19,3.866055564975877e-19)
sum a = (-3.0746056003778658e-19,-1.9741705262422922e-19,-2.1476592845226428e-19)
sum e = 7.857233021083028e-10
sum de = -3.1019272970738538e-24
Info: cfl dt = 0.04012716946074784 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6126e+04 | 2592 | 1 | 5.619e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2570.6905914706545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.836809994746865, dt = 0.04012716946074784 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.16 us (2.2%)
patch tree reduce : 561.00 ns (0.3%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 174.07 us (92.9%)
LB move op cnt : 0
LB apply : 2.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.636518610051911e-19,-1.7481774758967937e-19,3.7268796850004987e-19)
sum a = (5.553982069176315e-21,-5.13948740143971e-21,2.0641667803022586e-20)
sum e = 7.857229029672077e-10
sum de = -3.101927297073854e-25
Info: cfl dt = 0.04012729841901566 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6101e+04 | 2592 | 1 | 5.622e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2569.3258968906775 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.876937164207613, dt = 0.0014743408876292108 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (2.0%)
patch tree reduce : 1.13 us (0.6%)
gen split merge : 751.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 711.00 ns (0.3%)
LB compute : 191.43 us (93.4%)
LB move op cnt : 0
LB apply : 2.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.575884900480134e-19,-1.7095584038314633e-19,3.774415216085408e-19)
sum a = (5.749850312562651e-20,-1.107207841008854e-19,9.587755127229955e-21)
sum e = 7.856849778492459e-10
sum de = -2.3781442610899546e-24
Info: cfl dt = 0.0401273030767437 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6015e+04 | 2592 | 1 | 5.633e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.22523645645049 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 303 [SPH][rank=0]
Info: time since start : 160.55332243400002 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000301093 s
sph::RenderFieldGetter compute custom field took : 0.00026433 s
rho_t_ampl=-1.17776e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000274125, eps_t_phi=9.81437e-14 rad
vx_t_ampl=-6.74057e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 11.24s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 10.878411505095242, dt = 0.0401273030767437 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.86 us (3.9%)
patch tree reduce : 1.64 us (0.7%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 227.25 us (90.7%)
LB move op cnt : 0
LB apply : 3.59 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5520915098405858e-19,-1.7548857989137795e-19,3.7781810374662003e-19)
sum a = (2.80058724243235e-19,-1.8825565239377538e-21,-8.178216027439577e-20)
sum e = 7.857226428744179e-10
sum de = -4.1359030627651384e-24
Info: cfl dt = 0.04012742764159417 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4992e+04 | 2592 | 1 | 5.761e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2507.531424426747 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.918538808171986, dt = 0.04012742764159417 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.18 us (2.0%)
patch tree reduce : 1.29 us (0.6%)
gen split merge : 881.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 194.30 us (92.6%)
LB move op cnt : 0
LB apply : 2.75 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3914532592244093e-19,-1.733791347785658e-19,3.7270318188410714e-19)
sum a = (1.9908889571047406e-19,5.131326652545998e-20,1.1362221087060104e-19)
sum e = 7.857220884944175e-10
sum de = -6.72084247699335e-25
Info: cfl dt = 0.04012754794045717 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.1985e+04 | 2592 | 1 | 6.174e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2339.905700454907 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.958666235813581, dt = 0.04012754794045717 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (2.0%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 702.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 620.00 ns (0.3%)
LB compute : 180.44 us (93.4%)
LB move op cnt : 0
LB apply : 1.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3286176751044973e-19,-1.70245982319867e-19,3.811830999799111e-19)
sum a = (3.1568965536395077e-19,6.677338616278225e-20,-1.6727032401745836e-19)
sum e = 7.857216167149335e-10
sum de = -2.5332406259436473e-24
Info: cfl dt = 0.04012766398065238 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5083e+04 | 2592 | 1 | 5.749e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2512.578882456149 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.998793783754039, dt = 0.04012766398065238 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (1.8%)
patch tree reduce : 942.00 ns (0.4%)
gen split merge : 991.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.4%)
LB compute : 198.83 us (93.2%)
LB move op cnt : 0
LB apply : 2.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1796460732135137e-19,-1.6724921462795567e-19,3.688351682938966e-19)
sum a = (4.617363791238297e-20,-1.2931702164128973e-19,1.502603073808077e-19)
sum e = 7.857211180231851e-10
sum de = -2.6366382025127757e-24
Info: cfl dt = 0.040127775758878485 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5704e+04 | 2592 | 1 | 5.671e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2547.19595495722 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.03892144773469, dt = 0.040127775758878485 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (1.9%)
patch tree reduce : 1.32 us (0.6%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 197.28 us (92.6%)
LB move op cnt : 0
LB apply : 2.70 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2148267702848346e-19,-1.7638329682530294e-19,3.812356614541286e-19)
sum a = (1.2356788508936653e-20,-7.128915459969486e-21,-1.230417615599504e-19)
sum e = 7.857205965941931e-10
sum de = 2.274746684520826e-24
Info: cfl dt = 0.040127883273423176 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.9414e+04 | 2592 | 1 | 6.576e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2196.6352814915804 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.079049223493568, dt = 0.040127883273423176 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (2.1%)
patch tree reduce : 1.21 us (0.6%)
gen split merge : 782.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 721.00 ns (0.4%)
LB compute : 185.70 us (93.0%)
LB move op cnt : 0
LB apply : 2.54 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2169382693850984e-19,-1.742167508613358e-19,3.708147539400328e-19)
sum a = (2.0076494947099471e-19,2.8446070177532796e-20,1.4526490127040586e-19)
sum e = 7.857200531990028e-10
sum de = -1.1890721305449773e-24
Info: cfl dt = 0.04012798652395266 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5760e+04 | 2592 | 1 | 5.664e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2550.375968218286 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.11917710676699, dt = 0.04012798652395266 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (1.8%)
patch tree reduce : 791.00 ns (0.4%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 641.00 ns (0.3%)
LB compute : 182.02 us (93.7%)
LB move op cnt : 0
LB apply : 1.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.098645024071488e-19,-1.7236241099001467e-19,3.8202723116438257e-19)
sum a = (7.279331528535821e-20,-1.315229913269064e-19,-1.4538026597511058e-19)
sum e = 7.857194886500323e-10
sum de = 2.455692443516801e-24
Info: cfl dt = 0.0401280855115039 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5571e+04 | 2592 | 1 | 5.688e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2539.8037621711997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.159305093290943, dt = 0.0401280855115039 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 us (2.0%)
patch tree reduce : 992.00 ns (0.5%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 184.06 us (93.1%)
LB move op cnt : 0
LB apply : 2.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0952929165504467e-19,-1.8086304345728283e-19,3.7036189674241926e-19)
sum a = (-6.154732319025682e-20,-5.648157393833021e-20,-2.713932836952841e-20)
sum e = 7.857189037760223e-10
sum de = 4.3943970041879595e-25
Info: cfl dt = 0.04012818023847463 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5765e+04 | 2592 | 1 | 5.664e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2550.6616174350147 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.199433178802447, dt = 0.04012818023847463 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (2.0%)
patch tree reduce : 1.21 us (0.6%)
gen split merge : 751.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 681.00 ns (0.3%)
LB compute : 184.25 us (93.5%)
LB move op cnt : 0
LB apply : 2.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1467699500629086e-19,-1.816102840921816e-19,3.716452361096099e-19)
sum a = (3.8465762441941474e-19,2.20273837823261e-19,5.636986687889777e-20)
sum e = 7.857182994239614e-10
sum de = -8.594923552308803e-25
Info: cfl dt = 0.04012827070861327 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5852e+04 | 2592 | 1 | 5.653e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2555.473732484362 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.239561359040922, dt = 0.0014638628908301143 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (1.9%)
patch tree reduce : 751.00 ns (0.4%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.4%)
LB compute : 179.26 us (93.6%)
LB move op cnt : 0
LB apply : 1.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0514895801572315e-19,-1.757321828031399e-19,3.7340328988516417e-19)
sum a = (2.1615178026855893e-19,-1.3234103034177818e-19,-3.3014261364157116e-19)
sum e = 7.856841254688553e-10
sum de = -8.788794008375919e-25
Info: cfl dt = 0.04012827392901781 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5799e+04 | 2592 | 1 | 5.660e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.11552219305493 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 313 [SPH][rank=0]
Info: time since start : 161.36869127600002 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000289256 s
sph::RenderFieldGetter compute custom field took : 0.000246684 s
rho_t_ampl=-1.99273e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-0.00025483, eps_t_phi=6.28319 rad
vx_t_ampl=-6.3523e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 11.60s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 11.241025221931752, dt = 0.04012827392901781 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.32 us (4.1%)
patch tree reduce : 1.56 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 226.32 us (90.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.662085025693421e-20,-1.8131122351922595e-19,3.5987233601077713e-19)
sum a = (6.700271386175545e-20,-1.3740019399643802e-19,2.805330536419772e-20)
sum e = 7.857179129141936e-10
sum de = 8.199104704505108e-25
Info: cfl dt = 0.04012836000563624 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4750e+04 | 2592 | 1 | 7.459e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1936.7742610316052 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.281153495860769, dt = 0.04012836000563624 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.28 us (2.0%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 711.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 651.00 ns (0.3%)
LB compute : 201.53 us (93.5%)
LB move op cnt : 0
LB apply : 2.74 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.691863029708799e-20,-1.869190200596347e-19,3.68184961126839e-19)
sum a = (3.112793335078356e-19,1.4586109464393894e-20,-1.8653525659781379e-19)
sum e = 7.857171293154507e-10
sum de = 6.526972020926234e-25
Info: cfl dt = 0.040128441823327206 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4594e+04 | 2592 | 1 | 7.493e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1928.081469459851 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.321281855866406, dt = 0.040128441823327206 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (2.0%)
patch tree reduce : 1.15 us (0.5%)
gen split merge : 541.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.4%)
LB compute : 200.57 us (93.4%)
LB move op cnt : 0
LB apply : 2.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.954518283631841e-20,-1.8328880263764422e-19,3.563940484007282e-19)
sum a = (-7.473227943968603e-20,9.554352421049415e-20,2.435862858614261e-20)
sum e = 7.857164742543688e-10
sum de = 1.2536956159006826e-24
Info: cfl dt = 0.04012851940394839 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6179e+04 | 2592 | 1 | 7.164e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2016.3820382495999 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.361410297689734, dt = 0.04012851940394839 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.11 us (1.9%)
patch tree reduce : 771.00 ns (0.4%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 199.41 us (93.1%)
LB move op cnt : 0
LB apply : 2.74 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.029164518318619e-20,-1.7782807159877137e-19,3.616029456018183e-19)
sum a = (5.63088335936491e-20,-1.1092597744730208e-19,-6.046046005597567e-20)
sum e = 7.857158000880269e-10
sum de = -4.1359030627651384e-25
Info: cfl dt = 0.040128592756383495 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4629e+04 | 2592 | 1 | 7.485e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1930.0208154658078 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.401538817093682, dt = 0.040128592756383495 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (1.7%)
patch tree reduce : 1.14 us (0.5%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 203.62 us (93.2%)
LB move op cnt : 0
LB apply : 2.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.532838990509534e-20,-1.864272954637172e-19,3.5747492020019983e-19)
sum a = (-5.885906441357858e-20,-1.5828198039878764e-19,-3.9657227581754455e-20)
sum e = 7.857151108972879e-10
sum de = 3.825710333057753e-24
Info: cfl dt = 0.0401286618910211 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7406e+04 | 2592 | 1 | 6.929e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2084.778118623956 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.441667409850066, dt = 0.0401286618910211 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.16 us (2.1%)
patch tree reduce : 1.45 us (0.7%)
gen split merge : 892.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.4%)
LB compute : 184.04 us (92.4%)
LB move op cnt : 0
LB apply : 2.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.018483783570203e-20,-1.937234696893563e-19,3.563009309450151e-19)
sum a = (1.4818944346940733e-19,-1.8750999076173003e-19,-6.670833763165894e-20)
sum e = 7.857144075754685e-10
sum de = -5.169878828456423e-26
Info: cfl dt = 0.04012872681952967 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5450e+04 | 2592 | 1 | 5.703e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2533.100637956545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.481796071741087, dt = 0.04012872681952967 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (1.9%)
patch tree reduce : 1.08 us (0.5%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.6%)
LB compute : 184.07 us (92.8%)
LB move op cnt : 0
LB apply : 2.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (59.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.991818695753233e-20,-2.0183630932575892e-19,3.530812478631301e-19)
sum a = (-1.5183075242363654e-20,5.273915745179509e-20,-3.12218618038483e-20)
sum e = 7.857136910394726e-10
sum de = -1.1890721305449773e-24
Info: cfl dt = 0.040128787554846196 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5130e+04 | 2592 | 1 | 5.743e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2515.300758857429 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.521924798560617, dt = 0.040128787554846196 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (1.7%)
patch tree reduce : 982.00 ns (0.5%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.3%)
LB compute : 186.54 us (94.1%)
LB move op cnt : 0
LB apply : 2.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.380268802603315e-20,-1.9489752891670142e-19,3.525403659508591e-19)
sum a = (-2.0060063047486524e-20,-2.6494512512642236e-21,6.313904341135703e-20)
sum e = 7.857129622109195e-10
sum de = 1.9128551665288765e-24
Info: cfl dt = 0.04012884411116338 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5256e+04 | 2592 | 1 | 7.352e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1964.977078688609 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.562053586115463, dt = 0.04012884411116338 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.76 us (1.7%)
patch tree reduce : 881.00 ns (0.4%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 210.82 us (93.5%)
LB move op cnt : 0
LB apply : 2.89 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.474916544373894e-20,-1.9611472188053054e-19,3.569673571407001e-19)
sum a = (-9.237356686414666e-20,1.649391719656498e-20,5.2724903034356873e-20)
sum e = 7.857122220152695e-10
sum de = -6.927637630131607e-24
Info: cfl dt = 0.04012889650391627 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5078e+04 | 2592 | 1 | 5.750e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2512.3992075768188 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.602182430226627, dt = 0.0014565085416329282 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (2.0%)
patch tree reduce : 1.06 us (0.5%)
gen split merge : 731.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 186.02 us (93.0%)
LB move op cnt : 0
LB apply : 2.53 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.634963246604005e-20,-1.9570597837765845e-19,3.5683519770443813e-19)
sum a = (-8.634634608611746e-20,5.880990992637703e-20,9.038257280268216e-20)
sum e = 7.856830116680843e-10
sum de = -8.788794008375919e-25
Info: cfl dt = 0.040128898327995294 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6397e+04 | 2592 | 1 | 5.587e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.85878436525493 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 323 [SPH][rank=0]
Info: time since start : 162.26867073 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000293883 s
sph::RenderFieldGetter compute custom field took : 0.000246994 s
rho_t_ampl=-1.48986e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000236804, eps_t_phi=3.59268e-13 rad
vx_t_ampl=5.0724e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 11.97s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 11.60363893876826, dt = 0.040128898327995294 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.49 us (3.6%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 801.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.4%)
LB compute : 242.87 us (91.5%)
LB move op cnt : 0
LB apply : 3.49 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.993342977162394e-20,-1.9331308299652295e-19,3.6048957513788553e-19)
sum a = (-1.284711639338701e-19,7.449766272302491e-20,-1.769340394116175e-19)
sum e = 7.857117534213801e-10
sum de = -2.5849394142282115e-24
Info: cfl dt = 0.04012894643860528 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5113e+04 | 2592 | 1 | 5.746e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2514.3715396402868 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.643767837096256, dt = 0.04012894643860528 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (2.1%)
patch tree reduce : 1.30 us (0.7%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.4%)
LB compute : 181.73 us (92.5%)
LB move op cnt : 0
LB apply : 2.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.588999338131746e-20,-1.9001150356679144e-19,3.480258379707295e-19)
sum a = (3.9797403586574754e-19,7.044383606398129e-20,4.616553035982515e-20)
sum e = 7.857108269314597e-10
sum de = 9.305781891221561e-25
Info: cfl dt = 0.04012899040526116 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6104e+04 | 2592 | 1 | 5.622e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2569.5664542104 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.68389678353486, dt = 0.04012899040526116 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.16 us (2.0%)
patch tree reduce : 1.44 us (0.7%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.4%)
LB compute : 191.68 us (92.6%)
LB move op cnt : 0
LB apply : 2.71 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.927031600834223e-20,-1.872628575590356e-19,3.54354789438464e-19)
sum a = (-1.8621943193361344e-19,-8.8135523205536e-20,9.569576826276965e-20)
sum e = 7.857100608324385e-10
sum de = 1.6543612251060553e-24
Info: cfl dt = 0.04012903026290629 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6192e+04 | 2592 | 1 | 5.611e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2574.521748989116 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.724025773940122, dt = 0.04012903026290629 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (1.6%)
patch tree reduce : 882.00 ns (0.4%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.3%)
LB compute : 204.24 us (94.9%)
LB move op cnt : 0
LB apply : 1.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.872239877014969e-20,-1.939937744379893e-19,3.591887670399491e-19)
sum a = (-1.6003355671042e-19,-7.583702942796059e-20,-6.019168989343136e-20)
sum e = 7.8570928416963e-10
sum de = 8.271806125530277e-24
Info: cfl dt = 0.040129066031632785 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5203e+04 | 2592 | 1 | 5.734e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2519.4062246306953 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.764154804203029, dt = 0.040129066031632785 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (2.0%)
patch tree reduce : 901.00 ns (0.5%)
gen split merge : 731.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.5%)
LB compute : 182.55 us (92.9%)
LB move op cnt : 0
LB apply : 2.39 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.43716858570811e-20,-1.9677898142238392e-19,3.536455244786736e-19)
sum a = (-3.7178816064255415e-19,-2.6561549528094435e-20,1.6036566340248239e-19)
sum e = 7.857085008390239e-10
sum de = -4.8596860987490376e-24
Info: cfl dt = 0.040129097732920956 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6444e+04 | 2592 | 1 | 5.581e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2588.550318843723 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.804283870234661, dt = 0.040129097732920956 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (2.1%)
patch tree reduce : 1.46 us (0.7%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.6%)
LB compute : 180.99 us (92.4%)
LB move op cnt : 0
LB apply : 2.72 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1359700840422989e-19,-1.9685497895809382e-19,3.6450623415545446e-19)
sum a = (1.608814427304481e-19,2.7990739671773705e-20,1.227961975653955e-19)
sum e = 7.857077117375733e-10
sum de = -5.790264287871194e-24
Info: cfl dt = 0.04012912538940415 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6225e+04 | 2592 | 1 | 5.607e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2576.346256939828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.844412967967582, dt = 0.04012912538940415 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (1.6%)
patch tree reduce : 902.00 ns (0.4%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 581.00 ns (0.3%)
LB compute : 194.49 us (94.5%)
LB move op cnt : 0
LB apply : 2.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.641910054885438e-20,-1.9464653165011365e-19,3.686801237816718e-19)
sum a = (-1.0252848082494832e-19,-7.84163626825952e-21,2.332849987416803e-19)
sum e = 7.857069177836695e-10
sum de = 3.2053248736429822e-24
Info: cfl dt = 0.040129149024855516 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5415e+04 | 2592 | 1 | 5.707e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2531.2021406784766 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.884542093356986, dt = 0.040129149024855516 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (1.9%)
patch tree reduce : 1.04 us (0.5%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.4%)
LB compute : 184.59 us (93.2%)
LB move op cnt : 0
LB apply : 2.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0538105859775605e-19,-1.9566613102109706e-19,3.802585617397337e-19)
sum a = (-2.5100712572754352e-19,2.4950288801735076e-19,9.599229554933874e-20)
sum e = 7.85706119886533e-10
sum de = 2.7917345673664684e-24
Info: cfl dt = 0.040129168664172925 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5826e+04 | 2592 | 1 | 5.656e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2554.0906748905336 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.92467124238184, dt = 0.040129168664172925 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (1.7%)
patch tree reduce : 1.42 us (0.7%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 198.05 us (93.1%)
LB move op cnt : 0
LB apply : 2.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.185857331267208e-19,-1.8049620129842375e-19,3.813559330850889e-19)
sum a = (-5.14712823475973e-20,-3.7325778866418717e-20,-1.7637410905200085e-19)
sum e = 7.857053189536295e-10
sum de = -6.617444900424222e-24
Info: cfl dt = 0.04012918433336272 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5989e+04 | 2592 | 1 | 5.636e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2563.198996938258 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.964800411046014, dt = 0.0014522445587523691 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (2.1%)
patch tree reduce : 991.00 ns (0.5%)
gen split merge : 751.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 610.00 ns (0.3%)
LB compute : 184.89 us (93.6%)
LB move op cnt : 0
LB apply : 2.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.149115603732657e-19,-1.8630611020407172e-19,3.756348760505481e-19)
sum a = (3.320032452996852e-19,-1.8694775020911419e-19,-4.0227914813166576e-20)
sum e = 7.856817558585023e-10
sum de = 7.134432783269864e-24
Info: cfl dt = 0.040129184826883386 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6263e+04 | 2592 | 1 | 5.603e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.31265062356056 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 333 [SPH][rank=0]
Info: time since start : 163.065720739 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000294314 s
sph::RenderFieldGetter compute custom field took : 0.00023769 s
rho_t_ampl=2.28577e-06, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000220395, eps_t_phi=7.93143e-13 rad
vx_t_ampl=1.02626e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 12.33s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 11.966252655604766, dt = 0.040129184826883386 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.09 us (4.1%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 224.88 us (90.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0151627580879075e-19,-1.9391079334494392e-19,3.7411942140667453e-19)
sum a = (-1.4627677035446023e-19,1.151015927248051e-19,5.694406789187572e-20)
sum e = 7.857048157277553e-10
sum de = -1.4475660719677984e-24
Info: cfl dt = 0.04012919642704949 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5768e+04 | 2592 | 1 | 5.663e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2550.851927068396 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.006381840431649, dt = 0.04012919642704949 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (2.1%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 751.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.4%)
LB compute : 181.53 us (93.1%)
LB move op cnt : 0
LB apply : 2.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (58.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.169458295453486e-19,-1.8324156092625699e-19,3.783542573194634e-19)
sum a = (2.0807385841883385e-19,-1.3921469934861935e-19,-2.620272074790956e-22)
sum e = 7.8570383725021e-10
sum de = -8.581998855237662e-24
Info: cfl dt = 0.04012920409656573 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6255e+04 | 2592 | 1 | 5.604e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2578.007849590037 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.046511036858698, dt = 0.04012920409656573 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.63 us (1.9%)
patch tree reduce : 781.00 ns (0.4%)
gen split merge : 440.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 762.00 ns (0.4%)
LB compute : 178.73 us (93.4%)
LB move op cnt : 0
LB apply : 1.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (60.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0105618261962822e-19,-1.9391818769976975e-19,3.771959250626555e-19)
sum a = (-2.181301809819578e-19,9.454348906998741e-20,4.5655691293539766e-20)
sum e = 7.857030350684511e-10
sum de = 7.34122793640812e-24
Info: cfl dt = 0.04012920788175288 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6157e+04 | 2592 | 1 | 5.616e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2572.554274454123 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.086640240955264, dt = 0.04012920788175288 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.89 us (1.8%)
patch tree reduce : 1.34 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 203.61 us (93.1%)
LB move op cnt : 0
LB apply : 2.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.185265782881142e-19,-1.8543645191705648e-19,3.7994937253826456e-19)
sum a = (2.496071278805204e-19,1.177361654044667e-19,1.0936250633922695e-19)
sum e = 7.857022308784787e-10
sum de = -1.6543612251060553e-24
Info: cfl dt = 0.040129207812706784 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5677e+04 | 2592 | 1 | 5.675e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2545.785739432949 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.126769448837017, dt = 0.040129207812706784 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.89 us (2.0%)
patch tree reduce : 1.21 us (0.6%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.4%)
LB compute : 183.63 us (93.1%)
LB move op cnt : 0
LB apply : 2.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.976134893012793e-20,-1.8024315004438436e-19,3.8561625529429745e-19)
sum a = (2.5920335725448185e-19,-2.3580212416913387e-20,1.462819704912066e-19)
sum e = 7.857014280926548e-10
sum de = -1.0339757656912846e-24
Info: cfl dt = 0.040129203920788226 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5716e+04 | 2592 | 1 | 5.670e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2547.963458111621 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.166898656649723, dt = 0.040129203920788226 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (2.2%)
patch tree reduce : 661.00 ns (0.3%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.5%)
LB compute : 177.85 us (93.0%)
LB move op cnt : 0
LB apply : 2.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.850878407518136e-20,-1.840290597152075e-19,3.922272087426789e-19)
sum a = (-1.0195665071841774e-19,7.312177355371515e-20,2.0099768364376584e-19)
sum e = 7.857006275287743e-10
sum de = 3.1019272970738538e-24
Info: cfl dt = 0.040129196238304646 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5728e+04 | 2592 | 1 | 5.668e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2548.6690833793336 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.207027860570511, dt = 0.040129196238304646 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.59 us (1.8%)
patch tree reduce : 1.42 us (0.7%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.5%)
LB compute : 183.44 us (93.0%)
LB move op cnt : 0
LB apply : 2.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (60.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.979421272935383e-20,-1.7916110945487175e-19,4.013909332384414e-19)
sum a = (2.6786625473042786e-19,7.094951493714818e-20,4.727726193217214e-20)
sum e = 7.856998300151344e-10
sum de = 8.271806125530277e-25
Info: cfl dt = 0.04012918479858957 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5760e+04 | 2592 | 1 | 5.664e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2550.4512654061155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.247157056808815, dt = 0.04012918479858957 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (2.0%)
patch tree reduce : 1.06 us (0.5%)
gen split merge : 821.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.5%)
LB compute : 178.73 us (92.5%)
LB move op cnt : 0
LB apply : 2.62 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.202147010798963e-20,-1.7636645412819968e-19,4.002037927349784e-19)
sum a = (-6.64834658339863e-21,2.941263815999973e-20,-1.079429360158453e-19)
sum e = 7.856990363650507e-10
sum de = 8.271806125530277e-25
Info: cfl dt = 0.04012916963595191 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5642e+04 | 2592 | 1 | 5.679e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2543.8448363807 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.287286241607404, dt = 0.04012916963595191 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (1.8%)
patch tree reduce : 1.04 us (0.5%)
gen split merge : 550.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 601.00 ns (0.3%)
LB compute : 199.48 us (94.3%)
LB move op cnt : 0
LB apply : 2.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.777263497252131e-20,-1.7600289834926322e-19,3.927577023406247e-19)
sum a = (3.668618771385924e-19,-1.0245457578895478e-19,2.0023624510859436e-19)
sum e = 7.85698247376316e-10
sum de = 1.6543612251060553e-23
Info: cfl dt = 0.04012915078564288 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4529e+04 | 2592 | 1 | 5.821e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2481.8253859052543 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.327415411243356, dt = 0.0014509611979196535 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (1.7%)
patch tree reduce : 1.40 us (0.7%)
gen split merge : 731.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 193.78 us (93.1%)
LB move op cnt : 0
LB apply : 2.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (60.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.943837548883425e-20,-1.788012508533482e-19,3.992317246814705e-19)
sum a = (-1.4642137107105415e-19,-2.0221727264834785e-19,2.666260007607964e-19)
sum e = 7.85680477965574e-10
sum de = -6.4106497472859645e-24
Info: cfl dt = 0.040129150036001454 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5901e+04 | 2592 | 1 | 5.647e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.49992991858727 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 343 [SPH][rank=0]
Info: time since start : 163.867228735 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000301824 s
sph::RenderFieldGetter compute custom field took : 0.000248055 s
rho_t_ampl=3.03594e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000205885, eps_t_phi=1.07292e-12 rad
vx_t_ampl=1.48366e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 12.69s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 12.328866372441276, dt = 0.040129150036001454 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.02 us (3.8%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 228.23 us (86.6%)
LB move op cnt : 0
LB apply : 15.48 us (5.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.60177080938585e-20,-1.8697694250577033e-19,4.0997936394921364e-19)
sum a = (3.786238308815404e-20,9.141871944757553e-20,9.78920924330658e-20)
sum e = 7.856977550174641e-10
sum de = 7.651420666115506e-24
Info: cfl dt = 0.04012912741980515 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5345e+04 | 2592 | 1 | 5.716e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2527.2919323959622 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.368995522477277, dt = 0.04012912741980515 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (2.0%)
patch tree reduce : 771.00 ns (0.4%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.5%)
LB compute : 181.10 us (93.1%)
LB move op cnt : 0
LB apply : 2.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (58.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.058860846174059e-20,-1.774279548431961e-19,4.105221140381616e-19)
sum a = (-1.6099975240766133e-20,8.047406014904814e-20,4.053584489195e-20)
sum e = 7.856968104341845e-10
sum de = -2.274746684520826e-24
Info: cfl dt = 0.0401291011730278 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5454e+04 | 2592 | 1 | 5.703e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2533.3475991341197 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.409124649897082, dt = 0.0401291011730278 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.23 us (2.1%)
patch tree reduce : 1.37 us (0.7%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 185.69 us (92.2%)
LB move op cnt : 0
LB apply : 2.81 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.198860630876373e-20,-1.7441886322657507e-19,4.109979529759787e-19)
sum a = (-2.928394557621857e-19,-7.495231284544067e-20,9.509652220558092e-20)
sum e = 7.856960423461829e-10
sum de = -1.2614504341433672e-23
Info: cfl dt = 0.04012907135147876 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5535e+04 | 2592 | 1 | 5.692e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2537.891248514885 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.44925375107011, dt = 0.04012907135147876 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.82 us (2.0%)
patch tree reduce : 1.10 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 461.00 ns (0.2%)
LB compute : 181.58 us (93.4%)
LB move op cnt : 0
LB apply : 2.63 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (61.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.960360269384364e-20,-1.805471401872239e-19,4.159088235708056e-19)
sum a = (5.51125913018265e-20,-9.651823111823811e-20,-4.2782096050306974e-20)
sum e = 7.856952799140924e-10
sum de = 1.2614504341433672e-23
Info: cfl dt = 0.04012903799386071 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5406e+04 | 2592 | 1 | 5.708e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2530.719624141977 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.489382822421588, dt = 0.04012903799386071 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (2.2%)
patch tree reduce : 881.00 ns (0.5%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 171.39 us (92.5%)
LB move op cnt : 0
LB apply : 2.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (60.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.99745095206563e-20,-1.8484284954353874e-19,4.114255487580728e-19)
sum a = (-5.011729381949042e-21,2.7390707033790246e-19,-4.862750781021676e-20)
sum e = 7.856945259186932e-10
sum de = -1.3648480107124957e-23
Info: cfl dt = 0.04012900113994779 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.8193e+04 | 2592 | 1 | 6.787e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2128.6569730584756 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.529511860415449, dt = 0.04012900113994779 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.76 us (1.9%)
patch tree reduce : 1.35 us (0.7%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 178.63 us (92.4%)
LB move op cnt : 0
LB apply : 2.75 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (58.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.184774607653233e-20,-1.6643008443225023e-19,4.0935689006640544e-19)
sum a = (1.4789695565629686e-19,8.845794788575381e-20,-2.276417616373323e-19)
sum e = 7.85693781026808e-10
sum de = -2.005912985441092e-23
Info: cfl dt = 0.040128960830352396 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5541e+04 | 2592 | 1 | 5.692e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2538.237678380161 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.569640861555396, dt = 0.040128960830352396 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (2.0%)
patch tree reduce : 1.16 us (0.6%)
gen split merge : 861.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.5%)
LB compute : 182.06 us (92.5%)
LB move op cnt : 0
LB apply : 2.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (43.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.302052960445685e-20,-1.6659933299826358e-19,3.9663003113239814e-19)
sum a = (-3.984899975135941e-19,-1.5291429499147313e-19,1.4188791929083777e-19)
sum e = 7.85693045906293e-10
sum de = -3.9291079096268815e-24
Info: cfl dt = 0.040128917106507594 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5465e+04 | 2592 | 1 | 5.701e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2533.978383469936 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.609769822385749, dt = 0.040128917106507594 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (1.9%)
patch tree reduce : 761.00 ns (0.4%)
gen split merge : 431.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.3%)
LB compute : 187.65 us (94.0%)
LB move op cnt : 0
LB apply : 2.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1005429084767837e-19,-1.775857010794804e-19,4.097382607298141e-19)
sum a = (-1.4131433667135003e-22,1.7272660864002975e-20,-1.2218817042589028e-19)
sum e = 7.856923212036914e-10
sum de = -4.342698215903395e-24
Info: cfl dt = 0.040128870010648104 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5525e+04 | 2592 | 1 | 5.694e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2537.320242321559 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.649898739492256, dt = 0.040128870010648104 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (1.8%)
patch tree reduce : 1.15 us (0.5%)
gen split merge : 742.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.4%)
LB compute : 194.72 us (92.9%)
LB move op cnt : 0
LB apply : 2.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0192378691919185e-19,-1.7346704544149506e-19,3.995364437649162e-19)
sum a = (-3.1614974855311333e-19,-1.268900172310358e-19,7.119984133762144e-20)
sum e = 7.856916075439586e-10
sum de = 1.4475660719677984e-24
Info: cfl dt = 0.04012881958579081 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5099e+04 | 2592 | 1 | 5.747e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2513.5833863434527 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.690027609502904, dt = 0.0014524797748798335 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (1.8%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 196.08 us (93.0%)
LB move op cnt : 0
LB apply : 2.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.085688471226679e-19,-1.765488482139034e-19,4.035200812872668e-19)
sum a = (-4.0093835055592335e-21,1.5988456559564825e-19,-5.360063386187648e-20)
sum e = 7.856792865962889e-10
sum de = 3.1019272970738538e-24
Info: cfl dt = 0.04012881769931513 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.9841e+04 | 2592 | 1 | 6.506e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.37330236805734 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 353 [SPH][rank=0]
Info: time since start : 164.692078234 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000277479 s
sph::RenderFieldGetter compute custom field took : 0.000215908 s
rho_t_ampl=6.786e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000193491, eps_t_phi=1.04272e-12 rad
vx_t_ampl=1.87173e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 13.05s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 12.691480089277784, dt = 0.04012881769931513 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.07 us (4.0%)
patch tree reduce : 1.37 us (0.5%)
gen split merge : 711.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 229.90 us (90.9%)
LB move op cnt : 0
LB apply : 3.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0877917543771363e-19,-1.6992063070753063e-19,4.0127851613939817e-19)
sum a = (-9.551205969021966e-20,1.788138572013325e-20,1.4785552801751806e-20)
sum e = 7.856911653762993e-10
sum de = -1.4475660719677984e-24
Info: cfl dt = 0.04012876388835605 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3860e+04 | 2592 | 1 | 5.910e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2444.5107184183516 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.7316089069771, dt = 0.04012876388835605 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (1.8%)
patch tree reduce : 1.10 us (0.5%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 188.88 us (93.0%)
LB move op cnt : 0
LB apply : 2.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.139059281169533e-19,-1.7205143728983961e-19,4.032439705056663e-19)
sum a = (-2.4836816264970416e-19,-4.2168503593364273e-20,5.409676570861732e-21)
sum e = 7.856903276929366e-10
sum de = -3.9291079096268815e-24
Info: cfl dt = 0.04012870682053807 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.8532e+04 | 2592 | 1 | 6.727e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2147.56360686087 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.771737670865456, dt = 0.04012870682053807 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (1.9%)
patch tree reduce : 1.27 us (0.6%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 192.83 us (92.4%)
LB move op cnt : 0
LB apply : 2.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2710402988607287e-19,-1.749450948116797e-19,4.0327293266896576e-19)
sum a = (4.435922755712129e-19,-2.2075512559543993e-20,6.869678783363945e-20)
sum e = 7.856896526920484e-10
sum de = -4.342698215903395e-24
Info: cfl dt = 0.040128646559120705 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4834e+04 | 2592 | 1 | 5.781e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2498.8180282128296 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.811866377685993, dt = 0.040128646559120705 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (1.7%)
patch tree reduce : 781.00 ns (0.4%)
gen split merge : 591.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 701.00 ns (0.4%)
LB compute : 183.17 us (94.2%)
LB move op cnt : 0
LB apply : 2.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.551534607014226e-20,-1.754253170778681e-19,4.072994567544027e-19)
sum a = (2.128588275861242e-19,-1.067592970152136e-19,-2.3375399919639085e-21)
sum e = 7.856889894808854e-10
sum de = 1.7784383169890095e-23
Info: cfl dt = 0.04012858314988031 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4991e+04 | 2592 | 1 | 5.761e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2507.5653220915715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.851995024245113, dt = 0.04012858314988031 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (1.7%)
patch tree reduce : 1.15 us (0.6%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.4%)
LB compute : 185.94 us (93.3%)
LB move op cnt : 0
LB apply : 2.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.115103353294335e-20,-1.8140365295454878e-19,4.0578039886902523e-19)
sum a = (-4.706556142337377e-19,4.558273139739549e-21,4.766493774236323e-20)
sum e = 7.856883401327027e-10
sum de = -4.342698215903395e-24
Info: cfl dt = 0.040128516639475476 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4465e+04 | 2592 | 1 | 5.829e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2478.202970417618 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.892123607394993, dt = 0.040128516639475476 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (2.0%)
patch tree reduce : 1.52 us (0.8%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 185.52 us (92.3%)
LB move op cnt : 0
LB apply : 2.64 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (60.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.237979316839478e-19,-1.789902176988971e-19,4.0869638640910006e-19)
sum a = (1.0723457687409655e-20,-6.359124610336235e-20,1.2494352787165412e-19)
sum e = 7.856877051152989e-10
sum de = -2.7090165061111656e-23
Info: cfl dt = 0.04012844707522497 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4987e+04 | 2592 | 1 | 5.762e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2507.3305421257305 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.932252124034468, dt = 0.04012844707522497 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (2.0%)
patch tree reduce : 1.06 us (0.6%)
gen split merge : 841.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 581.00 ns (0.3%)
LB compute : 168.51 us (93.1%)
LB move op cnt : 0
LB apply : 2.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.140899653926183e-19,-1.829104581490561e-19,4.152607137496116e-19)
sum a = (4.089209673878933e-19,-1.3447536721501962e-19,1.0671138843040712e-19)
sum e = 7.856870848898624e-10
sum de = -5.583469134732937e-24
Info: cfl dt = 0.0401283745050898 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4954e+04 | 2592 | 1 | 5.766e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2505.4457671577834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.972380571109692, dt = 0.0401283745050898 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (2.0%)
patch tree reduce : 1.12 us (0.6%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 181.24 us (93.3%)
LB move op cnt : 0
LB apply : 2.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.950127081180341e-20,-1.8974243121062942e-19,4.1917705458715705e-19)
sum a = (2.5006722106968294e-19,1.0053652379436874e-19,1.079558821071643e-19)
sum e = 7.856864798927723e-10
sum de = 2.274746684520826e-24
Info: cfl dt = 0.040128298977653104 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4812e+04 | 2592 | 1 | 5.784e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2497.5651991805985 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.012508945614782, dt = 0.040128298977653104 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (1.9%)
patch tree reduce : 1.18 us (0.6%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 183.22 us (92.8%)
LB move op cnt : 0
LB apply : 2.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.302052960445685e-20,-1.809858719068896e-19,4.235341102549397e-19)
sum a = (-1.1877962954215358e-19,2.044297637441234e-19,1.3076927067588808e-19)
sum e = 7.856858905356462e-10
sum de = -1.075334796318936e-23
Info: cfl dt = 0.04012822054209981 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4967e+04 | 2592 | 1 | 5.764e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2506.161255131417 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.052637244592434, dt = 0.00145656152185758 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (1.9%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 831.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 641.00 ns (0.3%)
LB compute : 197.06 us (93.6%)
LB move op cnt : 0
LB apply : 2.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.101957833603977e-20,-1.7860037088057992e-19,4.241823149814729e-19)
sum a = (-1.0195007795857257e-19,-6.590105769207988e-20,-4.2130876699672825e-20)
sum e = 7.856782697251029e-10
sum de = -1.0339757656912846e-23
Info: cfl dt = 0.040128217641535006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.8134e+04 | 2592 | 1 | 6.797e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.14528480710327 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 363 [SPH][rank=0]
Info: time since start : 165.523703807 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000274975 s
sph::RenderFieldGetter compute custom field took : 0.000220745 s
rho_t_ampl=0.000113179, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000183363, eps_t_phi=1.07114e-12 rad
vx_t_ampl=2.18504e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 13.42s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 13.054093806114292, dt = 0.040128217641535006 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.10 us (4.0%)
patch tree reduce : 1.65 us (0.7%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 227.79 us (90.6%)
LB move op cnt : 0
LB apply : 3.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.487121560531471e-20,-1.8144308951361987e-19,4.2236575814087894e-19)
sum a = (-6.08966199655841e-20,-1.225748335061953e-19,-2.0472912895717453e-20)
sum e = 7.856855286067848e-10
sum de = -2.212708138579349e-23
Info: cfl dt = 0.040128136261824036 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4057e+04 | 2592 | 1 | 7.611e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1898.1273063882888 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.094222023755826, dt = 0.040128136261824036 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (2.0%)
patch tree reduce : 1.38 us (0.6%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 202.33 us (92.8%)
LB move op cnt : 0
LB apply : 2.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.581769302302049e-20,-1.8750687126828788e-19,4.2197876604517025e-19)
sum a = (-9.959045717415328e-20,-3.462420768356967e-20,1.3425952387700247e-19)
sum e = 7.856848523252785e-10
sum de = 8.892191584945048e-24
Info: cfl dt = 0.04012805205838615 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5990e+04 | 2592 | 1 | 7.202e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2005.8586843465555 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.13435016001765, dt = 0.04012805205838615 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.21 us (2.0%)
patch tree reduce : 1.48 us (0.7%)
gen split merge : 912.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 198.82 us (92.3%)
LB move op cnt : 0
LB apply : 2.92 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0022144211929048e-19,-1.871289375771901e-19,4.304709013620821e-19)
sum a = (1.442720786016806e-20,-1.7435986243702732e-19,1.6143234110643396e-19)
sum e = 7.856843137722995e-10
sum de = -1.5716431638507526e-23
Info: cfl dt = 0.04012796509983496 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.0399e+04 | 2592 | 1 | 6.416e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2251.5782395753913 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.174478212076036, dt = 0.04012796509983496 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (1.7%)
patch tree reduce : 1.35 us (0.6%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 213.76 us (93.7%)
LB move op cnt : 0
LB apply : 2.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.801299481131031e-20,-1.9692686851890045e-19,4.374940488241666e-19)
sum a = (-1.6031947176368531e-19,2.6681168622308063e-20,3.352602397806043e-20)
sum e = 7.856837912025794e-10
sum de = -1.0132962503774589e-23
Info: cfl dt = 0.04012787543739635 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4010e+04 | 2592 | 1 | 7.621e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1895.5001495675403 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.21460617717587, dt = 0.04012787543739635 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (1.9%)
patch tree reduce : 1.46 us (0.7%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.4%)
LB compute : 198.49 us (93.2%)
LB move op cnt : 0
LB apply : 2.88 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0728715895285798e-19,-1.9181654773927372e-19,4.362730668233918e-19)
sum a = (2.489629974156928e-19,3.4550199948203546e-20,1.3819760243868974e-20)
sum e = 7.856832859770283e-10
sum de = -2.2333876538931747e-23
Info: cfl dt = 0.040127783122978794 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4075e+04 | 2592 | 1 | 7.607e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1899.0824516548807 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.254734052613266, dt = 0.040127783122978794 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (1.6%)
patch tree reduce : 1.32 us (0.6%)
gen split merge : 751.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.3%)
LB compute : 217.13 us (94.0%)
LB move op cnt : 0
LB apply : 2.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (63.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.999422780019184e-20,-1.902793435304825e-19,4.364322379170248e-19)
sum a = (-3.4319994169594775e-19,-1.419866324391079e-20,-7.17970679743845e-20)
sum e = 7.856827983418901e-10
sum de = 8.271806125530277e-25
Info: cfl dt = 0.040127688208967456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.8026e+04 | 2592 | 1 | 6.816e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2119.331729032833 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.294861835736244, dt = 0.040127688208967456 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (2.0%)
patch tree reduce : 1.22 us (0.6%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 188.61 us (92.7%)
LB move op cnt : 0
LB apply : 2.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.148458327748139e-19,-1.918280500690028e-19,4.3183338080184457e-19)
sum a = (3.4429266302020877e-19,-1.4179828178979448e-19,2.2309798480421322e-20)
sum e = 7.856823285314427e-10
sum de = 2.0265925007549178e-23
Info: cfl dt = 0.040127590748205696 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4791e+04 | 2592 | 1 | 5.787e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2496.3533141053476 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.334989523945211, dt = 0.040127590748205696 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (1.9%)
patch tree reduce : 1.25 us (0.6%)
gen split merge : 852.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 185.34 us (93.1%)
LB move op cnt : 0
LB apply : 2.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (59.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.751629733855933e-20,-2.0008343643454772e-19,4.346167647626521e-19)
sum a = (1.6136618376903007e-19,2.3962972978522486e-20,6.438790043428388e-20)
sum e = 7.85681876754606e-10
sum de = 1.1994118882018901e-23
Info: cfl dt = 0.040127490793974624 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5150e+04 | 2592 | 1 | 5.741e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2516.342790569236 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.375117114693417, dt = 0.040127490793974624 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.05 us (2.1%)
patch tree reduce : 1.28 us (0.7%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.5%)
LB compute : 179.55 us (92.3%)
LB move op cnt : 0
LB apply : 2.97 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.50778034359979e-20,-1.9579060266066514e-19,4.380447360718826e-19)
sum a = (-3.9549939178403766e-20,7.330646553788036e-20,1.2765227880375528e-19)
sum e = 7.856814431950458e-10
sum de = 1.2821299494571929e-23
Info: cfl dt = 0.04012738839997275 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.1178e+04 | 2592 | 1 | 6.295e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2294.9548847868114 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.415244605487391, dt = 0.0014629174634066544 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (1.7%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 661.00 ns (0.3%)
LB compute : 195.21 us (94.2%)
LB move op cnt : 0
LB apply : 2.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (58.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.894258622496318e-20,-1.9468802219663633e-19,4.395008012001001e-19)
sum a = (4.8345935041214653e-20,1.3455709024075088e-19,-6.5854077743640916e-21)
sum e = 7.856774885621069e-10
sum de = -4.963083675318166e-24
Info: cfl dt = 0.04012738462210307 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5749e+04 | 2592 | 1 | 7.250e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.63660982809353 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 373 [SPH][rank=0]
Info: time since start : 166.436981753 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00029761800000000004 s
sph::RenderFieldGetter compute custom field took : 0.000234495 s
rho_t_ampl=0.000164611, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000175584, eps_t_phi=1.18749e-12 rad
vx_t_ampl=2.42039e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 13.78s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 13.416707522950798, dt = 0.04012738462210307 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.97 us (3.7%)
patch tree reduce : 1.62 us (0.6%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.4%)
LB compute : 247.75 us (91.5%)
LB move op cnt : 0
LB apply : 3.81 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.636606436565299e-20,-1.8922482637282157e-19,4.391383566814701e-19)
sum a = (3.119776892413859e-19,-1.0404198715351654e-19,1.307489120769654e-19)
sum e = 7.856811804599532e-10
sum de = 1.2407709188295415e-24
Info: cfl dt = 0.040127279772860104 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3974e+04 | 2592 | 1 | 5.894e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2450.7610732669386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.456834907572901, dt = 0.040127279772860104 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.76 us (1.9%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 1.28 us (0.6%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 187.75 us (92.8%)
LB move op cnt : 0
LB apply : 2.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (58.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.935576188632956e-20,-1.9820609190376845e-19,4.471403883936166e-19)
sum a = (-2.817577826632138e-20,3.849318830938921e-20,1.48714059943879e-19)
sum e = 7.856806984627795e-10
sum de = -1.2821299494571929e-23
Info: cfl dt = 0.04012717257754567 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3686e+04 | 2592 | 1 | 5.933e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2434.705025274264 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.496962187345762, dt = 0.04012717257754567 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.89 us (1.9%)
patch tree reduce : 1.11 us (0.5%)
gen split merge : 531.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 510.00 ns (0.2%)
LB compute : 198.14 us (94.6%)
LB move op cnt : 0
LB apply : 1.70 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (60.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.696701778704692e-20,-1.9379700244012426e-19,4.534683093990261e-19)
sum a = (3.1061384157351123e-19,-2.4393321861901272e-20,-7.354402937771598e-20)
sum e = 7.856803217205686e-10
sum de = -2.274746684520826e-23
Info: cfl dt = 0.04012706310802618 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3275e+04 | 2592 | 1 | 5.990e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2411.7955657914545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.537089359923307, dt = 0.04012706310802618 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (1.5%)
patch tree reduce : 1.24 us (0.5%)
gen split merge : 912.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.4%)
LB compute : 232.90 us (94.3%)
LB move op cnt : 0
LB apply : 2.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.757737624376866e-20,-1.9604611869964646e-19,4.460579091374873e-19)
sum a = (-1.5810445169585995e-19,1.0179842949753527e-19,7.24928730724519e-20)
sum e = 7.856799630456458e-10
sum de = 3.308722450212111e-24
Info: cfl dt = 0.040126951419314855 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4679e+04 | 2592 | 1 | 5.801e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2490.0439507461406 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.577216423031333, dt = 0.040126951419314855 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 us (1.7%)
patch tree reduce : 1.28 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.5%)
LB compute : 216.95 us (93.6%)
LB move op cnt : 0
LB apply : 2.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.343087299034058e-20,-1.8942529554809951e-19,4.518968431338479e-19)
sum a = (-5.3771748293409975e-20,4.226497681648248e-20,2.1252730425778406e-20)
sum e = 7.856796231449665e-10
sum de = 6.2038545941477076e-24
Info: cfl dt = 0.040126837566903786 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.0914e+04 | 2592 | 1 | 6.335e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2280.203134349972 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.617343374450648, dt = 0.040126837566903786 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.33 us (1.7%)
patch tree reduce : 1.18 us (0.5%)
gen split merge : 782.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.4%)
LB compute : 232.78 us (94.1%)
LB move op cnt : 0
LB apply : 2.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.364120130538631e-20,-1.889117986851949e-19,4.517215926381538e-19)
sum a = (-1.625558533010075e-19,-9.088070310946722e-20,-6.791229764486662e-20)
sum e = 7.85679302045427e-10
sum de = 7.031035206700735e-24
Info: cfl dt = 0.04012672160657735 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2432e+04 | 2592 | 1 | 7.992e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1807.502042976284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.657470212017552, dt = 0.04012672160657735 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (1.8%)
patch tree reduce : 1.51 us (0.7%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.3%)
LB compute : 216.78 us (93.1%)
LB move op cnt : 0
LB apply : 2.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.293508372646951e-20,-1.9524465279602495e-19,4.472075394778722e-19)
sum a = (2.0829075949372476e-19,-2.4408461033161854e-19,-9.093539988285e-21)
sum e = 7.856789997588951e-10
sum de = 3.7223127564886245e-24
Info: cfl dt = 0.0401266035943941 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4617e+04 | 2592 | 1 | 5.809e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2486.593931168498 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.69759693362413, dt = 0.0401266035943941 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.46 us (2.0%)
patch tree reduce : 872.00 ns (0.4%)
gen split merge : 551.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.4%)
LB compute : 212.50 us (93.9%)
LB move op cnt : 0
LB apply : 2.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.696327730268438e-20,-2.0810302504064683e-19,4.480227485603426e-19)
sum a = (2.5763904041132923e-19,3.560082736712796e-20,6.427693980214743e-20)
sum e = 7.856787162738396e-10
sum de = -6.2038545941477076e-24
Info: cfl dt = 0.040126483586666525 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.2506e+04 | 2592 | 1 | 6.098e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2368.8965010840366 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.737723537218525, dt = 0.040126483586666525 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.87 us (1.5%)
patch tree reduce : 781.00 ns (0.3%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.4%)
LB compute : 242.07 us (94.4%)
LB move op cnt : 0
LB apply : 2.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.552667517207279e-20,-2.0106893961383424e-19,4.520740102093651e-19)
sum a = (-2.1856233994177834e-19,1.2839017264116848e-19,8.85743827935175e-20)
sum e = 7.856784515558143e-10
sum de = -2.0679515313825692e-23
Info: cfl dt = 0.0401263616399409 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7047e+04 | 2592 | 1 | 6.997e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2064.654393806573 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.777850020805191, dt = 0.00147121898211644 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (1.8%)
patch tree reduce : 1.37 us (0.6%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 221.25 us (93.5%)
LB move op cnt : 0
LB apply : 2.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.543839701860283e-20,-1.990170061496674e-19,4.526918079963573e-19)
sum a = (-1.7798540703756534e-19,1.0800753086440529e-19,5.769755487690493e-20)
sum e = 7.856769747947101e-10
sum de = 1.737079286361358e-23
Info: cfl dt = 0.04012635713314005 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.2242e+04 | 2592 | 1 | 6.136e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.31481826023604 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 383 [SPH][rank=0]
Info: time since start : 167.29749110900002 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000294804 s
sph::RenderFieldGetter compute custom field took : 0.00022823600000000002 s
rho_t_ampl=0.000220404, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000170173, eps_t_phi=1.62625e-12 rad
vx_t_ampl=2.57677e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 14.14s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 13.779321239787308, dt = 0.04012635713314005 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.16 us (3.9%)
patch tree reduce : 1.36 us (0.5%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 236.53 us (91.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.301021636024912e-20,-1.9469870293138476e-19,4.549842874013958e-19)
sum a = (4.9174924376687866e-20,3.480300729123306e-20,2.279396031858045e-19)
sum e = 7.856782953647741e-10
sum de = 0
Info: cfl dt = 0.04012623325162771 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2761e+04 | 2592 | 1 | 7.912e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1825.8062043144948 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.819447596920448, dt = 0.04012623325162771 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (2.1%)
patch tree reduce : 1.61 us (0.7%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 201.88 us (92.4%)
LB move op cnt : 0
LB apply : 2.74 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.605623644404967e-20,-1.9476771690975914e-19,4.675462417008427e-19)
sum a = (3.424087457295843e-19,-2.2114307247536435e-19,1.0052824605391827e-19)
sum e = 7.856780183067715e-10
sum de = -1.6957202557337067e-23
Info: cfl dt = 0.04012610753113251 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3948e+04 | 2592 | 1 | 7.635e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1891.9790035142153 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.859573830172076, dt = 0.04012610753113251 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (1.9%)
patch tree reduce : 1.43 us (0.7%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 198.76 us (92.9%)
LB move op cnt : 0
LB apply : 2.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (54.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.664030386139069e-20,-2.0876687378500992e-19,4.690237799943596e-19)
sum a = (4.697756860094644e-19,-1.2945427935274416e-19,2.891296951667764e-20)
sum e = 7.856778104339966e-10
sum de = -4.1359030627651384e-24
Info: cfl dt = 0.040125980044722294 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.8841e+04 | 2592 | 1 | 6.673e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2164.6259696560187 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.89969993770321, dt = 0.040125980044722294 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (1.8%)
patch tree reduce : 1.33 us (0.6%)
gen split merge : 831.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.4%)
LB compute : 218.05 us (93.3%)
LB move op cnt : 0
LB apply : 2.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4845032214776888e-20,-2.1213787799060613e-19,4.687471200886282e-19)
sum a = (1.3062127799822431e-19,2.413638728783616e-19,1.4817727013757497e-20)
sum e = 7.856776206614376e-10
sum de = 4.1359030627651384e-25
Info: cfl dt = 0.0401258508495442 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4317e+04 | 2592 | 1 | 5.849e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2469.7894705247827 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.939825917747932, dt = 0.0401258508495442 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (1.6%)
patch tree reduce : 1.12 us (0.5%)
gen split merge : 851.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 601.00 ns (0.3%)
LB compute : 222.33 us (94.5%)
LB move op cnt : 0
LB apply : 2.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (53.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.72900988771835e-20,-1.9500515785916624e-19,4.690589012829841e-19)
sum a = (-4.655485798340336e-20,-6.894112600695566e-20,-4.106586377284534e-20)
sum e = 7.856774491507343e-10
sum de = -2.481541837659083e-24
Info: cfl dt = 0.04012572000302115 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4313e+04 | 2592 | 1 | 5.849e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2469.603248885392 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.979951768597475, dt = 0.04012572000302115 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (1.8%)
patch tree reduce : 641.00 ns (0.3%)
gen split merge : 440.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.6%)
LB compute : 191.47 us (93.6%)
LB move op cnt : 0
LB apply : 2.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.229854187920995e-20,-2.0399217455497764e-19,4.662899156171364e-19)
sum a = (1.0821638287597016e-19,-2.1369097492730428e-19,2.3277420373923367e-20)
sum e = 7.856772957327087e-10
sum de = -1.075334796318936e-23
Info: cfl dt = 0.0401255875626883 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4360e+04 | 2592 | 1 | 5.843e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2472.206183924563 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.020077488600496, dt = 0.0401255875626883 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.11 us (2.1%)
patch tree reduce : 1.32 us (0.7%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 183.85 us (92.4%)
LB move op cnt : 0
LB apply : 2.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4555830781589007e-20,-2.1547314281454418e-19,4.685148460884627e-19)
sum a = (-6.323980885039042e-20,1.0448685516069394e-20,-6.4038056677411e-20)
sum e = 7.856771602226785e-10
sum de = -3.308722450212111e-24
Info: cfl dt = 0.04012545358617547 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4600e+04 | 2592 | 1 | 5.812e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2485.5359707654643 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.060203076163184, dt = 0.04012545358617547 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.08 us (2.1%)
patch tree reduce : 1.20 us (0.6%)
gen split merge : 902.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.4%)
LB compute : 179.17 us (92.8%)
LB move op cnt : 0
LB apply : 2.60 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.978774761835155e-20,-2.10566577590118e-19,4.641934976075102e-19)
sum a = (2.735664807061594e-20,2.2044291950279393e-20,1.1382562046606495e-19)
sum e = 7.856770424166693e-10
sum de = 7.031035206700735e-24
Info: cfl dt = 0.040125318131187665 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2960e+04 | 2592 | 1 | 7.864e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1836.8423650667185 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.100328529749358, dt = 0.040125318131187665 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.22 us (2.0%)
patch tree reduce : 1.26 us (0.6%)
gen split merge : 851.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.4%)
LB compute : 191.37 us (92.2%)
LB move op cnt : 0
LB apply : 3.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7329535436254574e-20,-2.0944756522647627e-19,4.7232921720113615e-19)
sum a = (-6.171780414874115e-20,3.6640587908691156e-20,-1.5241374091709994e-19)
sum e = 7.856769420918016e-10
sum de = 1.6543612251060553e-23
Info: cfl dt = 0.04012518125548592 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.1108e+04 | 2592 | 1 | 6.305e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2290.910920213567 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.140453847880545, dt = 0.0014811087432722303 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (2.0%)
patch tree reduce : 761.00 ns (0.4%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 177.60 us (93.0%)
LB move op cnt : 0
LB apply : 2.37 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.95511282639251e-20,-2.0908606343499142e-19,4.667620063395987e-19)
sum a = (-7.968444318553814e-20,7.280173021519906e-20,-1.0209741013469325e-19)
sum e = 7.856767310581155e-10
sum de = -2.68833699079734e-23
Info: cfl dt = 0.04012517617706485 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6383e+04 | 2592 | 1 | 5.588e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.41498886298488 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 393 [SPH][rank=0]
Info: time since start : 168.34038357 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00028805400000000004 s
sph::RenderFieldGetter compute custom field took : 0.000253303 s
rho_t_ampl=0.000278809, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000167085, eps_t_phi=1.96465e-12 rad
vx_t_ampl=2.65524e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 14.50s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 14.141934956623817, dt = 0.04012517617706485 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.33 us (4.1%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.4%)
LB compute : 231.14 us (91.0%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2337978438281026e-20,-2.0615338015157058e-19,4.627025917494631e-19)
sum a = (-1.186588550799984e-19,-6.739244514327848e-20,4.064693593784281e-20)
sum e = 7.856768888724348e-10
sum de = 1.2407709188295415e-24
Info: cfl dt = 0.04012503790329519 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4547e+04 | 2592 | 1 | 5.819e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2482.6048574977053 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.182060132800883, dt = 0.04012503790329519 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (1.9%)
patch tree reduce : 1.22 us (0.6%)
gen split merge : 691.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 620.00 ns (0.3%)
LB compute : 181.28 us (93.4%)
LB move op cnt : 0
LB apply : 2.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.743844007813999e-20,-2.1166628247171452e-19,4.671973726118109e-19)
sum a = (6.848240642190139e-20,9.200174378571743e-20,-3.088427572969429e-20)
sum e = 7.856768068297028e-10
sum de = -8.68539643180679e-24
Info: cfl dt = 0.040124898312176326 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5145e+04 | 2592 | 1 | 5.741e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2515.9171705439217 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.222185170704178, dt = 0.040124898312176326 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (1.5%)
patch tree reduce : 1.26 us (0.5%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 219.43 us (93.9%)
LB move op cnt : 0
LB apply : 2.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.3034690981870007e-20,-2.0477556536902493e-19,4.645230478990037e-19)
sum a = (1.858336930901995e-19,-3.0663157070231336e-20,-1.0175598696473409e-20)
sum e = 7.856767581090071e-10
sum de = -1.5716431638507526e-23
Info: cfl dt = 0.040124757476024404 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4049e+04 | 2592 | 1 | 5.884e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2454.827973544055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.262310069016355, dt = 0.040124757476024404 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (1.9%)
patch tree reduce : 1.33 us (0.7%)
gen split merge : 721.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.4%)
LB compute : 183.81 us (92.4%)
LB move op cnt : 0
LB apply : 2.88 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2360528993299198e-20,-2.0847602916186074e-19,4.645302212491937e-19)
sum a = (-1.361754654661458e-19,-1.0411516045648044e-19,-1.4419465076323188e-19)
sum e = 7.856767257224117e-10
sum de = -6.2038545941477076e-24
Info: cfl dt = 0.04012461545251696 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4962e+04 | 2592 | 1 | 5.765e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2505.676695841012 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.302434826492378, dt = 0.04012461545251696 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (1.6%)
patch tree reduce : 561.00 ns (0.3%)
gen split merge : 430.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.3%)
LB compute : 191.32 us (94.7%)
LB move op cnt : 0
LB apply : 1.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.453328022657084e-20,-2.141207974763986e-19,4.560557253563638e-19)
sum a = (-3.0929141384634063e-19,1.086182583583009e-19,1.0663708215816159e-20)
sum e = 7.856767094285906e-10
sum de = -2.4401828070314316e-23
Info: cfl dt = 0.0401244722994101 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7420e+04 | 2592 | 1 | 6.927e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2085.3771495082788 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.342559441944895, dt = 0.0401244722994101 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.31 us (2.2%)
patch tree reduce : 982.00 ns (0.5%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.4%)
LB compute : 178.94 us (92.5%)
LB move op cnt : 0
LB apply : 2.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.9558609232650196e-20,-2.054895314072075e-19,4.5959041707307355e-19)
sum a = (-3.931281659705167e-19,1.5941356059814898e-20,-3.7191884164138335e-21)
sum e = 7.856767089019814e-10
sum de = -1.943874439499615e-23
Info: cfl dt = 0.04012432807440054 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4952e+04 | 2592 | 1 | 5.766e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2505.1301261455196 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.382683914244305, dt = 0.04012432807440054 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (2.0%)
patch tree reduce : 1.31 us (0.7%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.6%)
LB compute : 183.50 us (92.6%)
LB move op cnt : 0
LB apply : 2.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.676609450732901e-20,-2.0671863749825599e-19,4.591526340681218e-19)
sum a = (-1.9058970103442203e-19,1.6977519555853448e-19,-4.638631797324186e-20)
sum e = 7.856767238034484e-10
sum de = 8.271806125530277e-24
Info: cfl dt = 0.04012418283510903 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4590e+04 | 2592 | 1 | 5.813e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2484.9475555954086 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.422808242318705, dt = 0.04012418283510903 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (1.7%)
patch tree reduce : 1.07 us (0.5%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 218.11 us (93.8%)
LB move op cnt : 0
LB apply : 2.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.110411600514719e-20,-1.968060940567453e-19,4.564354260125816e-19)
sum a = (-1.0851831903135808e-19,1.3672167207921743e-19,-9.402616725516701e-20)
sum e = 7.856767537797621e-10
sum de = 4.1359030627651384e-25
Info: cfl dt = 0.0401240366390622 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3805e+04 | 2592 | 1 | 5.917e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2441.1927291433058 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.462932425153815, dt = 0.0401240366390622 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (1.7%)
patch tree reduce : 701.00 ns (0.3%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 651.00 ns (0.3%)
LB compute : 202.65 us (94.4%)
LB move op cnt : 0
LB apply : 2.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.40224213764067e-20,-1.9198702869775807e-19,4.517069616212085e-19)
sum a = (-2.0859392804158364e-19,1.9567150990073598e-19,-1.5405653384141643e-19)
sum e = 7.85676798464317e-10
sum de = -1.4889251025954498e-23
Info: cfl dt = 0.04012388954367468 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4251e+04 | 2592 | 1 | 5.857e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2466.010607883801 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.503056461792877, dt = 0.001492211667446952 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (1.7%)
patch tree reduce : 1.32 us (0.7%)
gen split merge : 741.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.4%)
LB compute : 185.13 us (93.0%)
LB move op cnt : 0
LB apply : 2.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.599424932996041e-20,-1.9050980092255406e-19,4.502727463497386e-19)
sum a = (1.9224500952168134e-20,8.899280621815525e-20,-3.275310202001225e-20)
sum e = 7.856767341913841e-10
sum de = -1.819797347616661e-23
Info: cfl dt = 0.04012388405692886 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6234e+04 | 2592 | 1 | 5.606e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.820978938964 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 403 [SPH][rank=0]
Info: time since start : 169.164452933 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00031496400000000004 s
sph::RenderFieldGetter compute custom field took : 0.00024646300000000004 s
rho_t_ampl=0.00033812, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000166222, eps_t_phi=2.21512e-12 rad
vx_t_ampl=2.65878e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 14.87s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 14.504548673460324, dt = 0.04012388405692886 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.90 us (3.7%)
patch tree reduce : 1.58 us (0.6%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 244.89 us (91.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.527124574699072e-20,-1.8701925464727366e-19,4.490490698799425e-19)
sum a = (-4.8776861608564207e-20,1.542204833803544e-19,-3.5153361950615246e-20)
sum e = 7.856768353852901e-10
sum de = -1.4475660719677984e-23
Info: cfl dt = 0.040123736101714366 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4451e+04 | 2592 | 1 | 5.831e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2477.1705978021164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.544672557517252, dt = 0.040123736101714366 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (1.7%)
patch tree reduce : 992.00 ns (0.5%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.5%)
LB compute : 188.17 us (93.2%)
LB move op cnt : 0
LB apply : 2.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.793978624413342e-20,-1.7953904314596956e-19,4.47590431786361e-19)
sum a = (2.490348869764995e-19,-7.241882844195266e-20,1.491858701651734e-20)
sum e = 7.856769213196787e-10
sum de = 1.3234889800848443e-23
Info: cfl dt = 0.040123587351008204 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5310e+04 | 2592 | 1 | 5.721e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2525.019059139552 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.584796293618966, dt = 0.040123587351008204 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (2.0%)
patch tree reduce : 1.49 us (0.7%)
gen split merge : 751.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 184.72 us (92.2%)
LB move op cnt : 0
LB apply : 3.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.225718125353616e-20,-1.8698639084804777e-19,4.491935558488933e-19)
sum a = (2.7384171502467625e-19,7.168824436154433e-20,-8.101879433353848e-20)
sum e = 7.856770082432711e-10
sum de = 1.1994118882018901e-23
Info: cfl dt = 0.040123437874563586 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4599e+04 | 2592 | 1 | 5.812e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2485.35553498924 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.624919880969975, dt = 0.040123437874563586 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (2.1%)
patch tree reduce : 1.16 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 641.00 ns (0.3%)
LB compute : 177.90 us (93.1%)
LB move op cnt : 0
LB apply : 2.46 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.0031847941503086e-20,-1.8121591850147086e-19,4.440181273373701e-19)
sum a = (2.5547495923230402e-20,-5.544341165575281e-21,2.3899950384201884e-20)
sum e = 7.856771083328414e-10
sum de = -1.406207041340147e-23
Info: cfl dt = 0.0401232877290731 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4923e+04 | 2592 | 1 | 5.770e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2503.4354702284595 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.665043318844537, dt = 0.0401232877290731 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (1.9%)
patch tree reduce : 862.00 ns (0.4%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 631.00 ns (0.3%)
LB compute : 180.20 us (93.4%)
LB move op cnt : 0
LB apply : 2.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.427785080148876e-20,-1.8299426083708213e-19,4.470819222911559e-19)
sum a = (2.207379234505326e-19,3.3953285519920076e-20,-1.4433430276017772e-19)
sum e = 7.856772211022915e-10
sum de = 4.549493369041652e-24
Info: cfl dt = 0.04012313697112069 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4915e+04 | 2592 | 1 | 5.771e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2502.981236347069 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.705166606573611, dt = 0.04012313697112069 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (1.7%)
patch tree reduce : 1.28 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 200.63 us (93.3%)
LB move op cnt : 0
LB apply : 2.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.1605569819983516e-20,-1.8083880640535372e-19,4.379157216194501e-19)
sum a = (-1.5555339928094983e-19,-3.409610183491542e-20,1.6576734402905998e-19)
sum e = 7.856773461202204e-10
sum de = -1.4889251025954498e-23
Info: cfl dt = 0.040122985657071716 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4102e+04 | 2592 | 1 | 5.877e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2457.6795510755974 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.745289743544731, dt = 0.040122985657071716 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (2.0%)
patch tree reduce : 1.22 us (0.6%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 195.76 us (93.0%)
LB move op cnt : 0
LB apply : 2.70 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (57.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.635484291256535e-20,-1.8356896652604497e-19,4.507879278108998e-19)
sum a = (8.045551007487571e-20,-4.252097425877279e-20,3.477051267283029e-20)
sum e = 7.85677482944726e-10
sum de = 2.0679515313825692e-24
Info: cfl dt = 0.040122833843057835 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4857e+04 | 2592 | 1 | 5.778e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2499.719701771638 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.785412729201802, dt = 0.040122833843057835 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (2.0%)
patch tree reduce : 931.00 ns (0.5%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.4%)
LB compute : 181.54 us (93.6%)
LB move op cnt : 0
LB apply : 1.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.7297579845908595e-20,-1.8543152234717258e-19,4.4955502732068715e-19)
sum a = (-7.131115794027033e-20,-2.2373494789087542e-20,1.112765879395544e-20)
sum e = 7.856776311260537e-10
sum de = 4.549493369041652e-24
Info: cfl dt = 0.0401226815849604 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5000e+04 | 2592 | 1 | 5.760e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2507.6811640513274 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.825535563044859, dt = 0.0401226815849604 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (1.9%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 731.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.5%)
LB compute : 178.86 us (92.9%)
LB move op cnt : 0
LB apply : 2.32 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.422526872272734e-20,-1.8593392767783847e-19,4.495271896823576e-19)
sum a = (3.108751087773571e-20,-1.0795797841713499e-19,7.967142957714397e-20)
sum e = 7.856777902069389e-10
sum de = -2.0679515313825692e-24
Info: cfl dt = 0.04012252893839413 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4924e+04 | 2592 | 1 | 5.770e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2503.4278527573083 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.86565824462982, dt = 0.0015041456670115139 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (2.2%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.5%)
LB compute : 176.21 us (92.2%)
LB move op cnt : 0
LB apply : 2.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.126752679239675e-20,-1.8782482852579843e-19,4.510221070628311e-19)
sum a = (-3.5692715063260425e-19,-1.3179570951079504e-20,3.211452666867162e-20)
sum e = 7.85676940618899e-10
sum de = -1.9852334701272664e-23
Info: cfl dt = 0.04012252320931123 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6171e+04 | 2592 | 1 | 5.614e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.45500037525258 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 413 [SPH][rank=0]
Info: time since start : 169.973775367 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000317507 s
sph::RenderFieldGetter compute custom field took : 0.000235657 s
rho_t_ampl=0.000396717, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000167434, eps_t_phi=2.13651e-12 rad
vx_t_ampl=2.59208e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 15.23s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 14.867162390296832, dt = 0.04012252320931123 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.72 us (3.8%)
patch tree reduce : 1.27 us (0.5%)
gen split merge : 711.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 224.79 us (86.7%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.614825508188217e-20,-1.8827054380279962e-19,4.522748566497347e-19)
sum a = (-3.1189552974332114e-19,3.653848868556875e-20,1.8054905296986406e-19)
sum e = 7.856778975425138e-10
sum de = 2.895132143935597e-24
Info: cfl dt = 0.040122370228808935 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2289e+04 | 2592 | 1 | 8.027e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1799.354959674339 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.907284913506142, dt = 0.040122370228808935 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.9%)
patch tree reduce : 1.42 us (0.6%)
gen split merge : 861.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 206.15 us (92.8%)
LB move op cnt : 0
LB apply : 2.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (59.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.805809592134665e-20,-1.8580658045583813e-19,4.624966964607512e-19)
sum a = (-2.5776392284838763e-19,3.210790295950122e-20,2.5463133024109167e-20)
sum e = 7.856781120175613e-10
sum de = 1.819797347616661e-23
Info: cfl dt = 0.04012221696147264 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3383e+04 | 2592 | 1 | 7.764e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1860.3110039013604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.947407283734952, dt = 0.04012221696147264 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.04 us (1.8%)
patch tree reduce : 1.34 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 203.75 us (93.0%)
LB move op cnt : 0
LB apply : 2.84 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.694446723202875e-20,-1.8461115975899617e-19,4.604071264597832e-19)
sum a = (7.274566277648066e-20,-1.4210746466966013e-20,6.486024144658032e-20)
sum e = 7.856783012566229e-10
sum de = -2.895132143935597e-24
Info: cfl dt = 0.04012206347286266 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3809e+04 | 2592 | 1 | 7.667e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1884.0154230669946 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.987529500696425, dt = 0.04012206347286266 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (2.0%)
patch tree reduce : 1.12 us (0.5%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 201.42 us (92.8%)
LB move op cnt : 0
LB apply : 2.81 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.762429377156482e-20,-1.8611098139616798e-19,4.6379980284986145e-19)
sum a = (-1.9027811113801152e-19,-1.2147930399596526e-19,-1.0009553953662894e-19)
sum e = 7.856784995764369e-10
sum de = -4.1359030627651384e-25
Info: cfl dt = 0.04012190981729261 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.8059e+04 | 2592 | 1 | 6.811e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2120.8160208507043 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.027651564169288, dt = 0.04012190981729261 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.42 us (2.3%)
patch tree reduce : 1.34 us (0.7%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.4%)
LB compute : 179.51 us (92.1%)
LB move op cnt : 0
LB apply : 2.53 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.059892170594832e-20,-1.9314342363301925e-19,4.56474595482048e-19)
sum a = (-1.4174978201109313e-19,9.879114474800056e-20,8.632931947433453e-21)
sum e = 7.85678706403705e-10
sum de = 1.5716431638507526e-23
Info: cfl dt = 0.0401217560487946 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4657e+04 | 2592 | 1 | 5.804e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2488.4813864183648 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.06777347398658, dt = 0.0401217560487946 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (1.8%)
patch tree reduce : 931.00 ns (0.5%)
gen split merge : 541.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 581.00 ns (0.3%)
LB compute : 178.14 us (94.0%)
LB move op cnt : 0
LB apply : 2.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.51867080778833e-20,-1.8475083090570623e-19,4.590021608353618e-19)
sum a = (-2.910089421453033e-20,6.182210178030786e-21,-1.3962045614806232e-19)
sum e = 7.856789212552871e-10
sum de = -1.6957202557337067e-23
Info: cfl dt = 0.040121602221038874 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4488e+04 | 2592 | 1 | 5.826e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2479.052233376895 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.107895230035375, dt = 0.040121602221038874 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.98 us (1.9%)
patch tree reduce : 972.00 ns (0.5%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.4%)
LB compute : 196.62 us (93.3%)
LB move op cnt : 0
LB apply : 2.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.392473818760892e-20,-1.8636690823263963e-19,4.504262712965979e-19)
sum a = (-2.942295944694411e-19,-7.41518065390817e-20,-7.567343741815531e-20)
sum e = 7.856791436421953e-10
sum de = 2.481541837659083e-24
Info: cfl dt = 0.040121448387320235 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4085e+04 | 2592 | 1 | 5.880e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2456.621489731285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.148016832256413, dt = 0.040121448387320235 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (2.1%)
patch tree reduce : 1.29 us (0.7%)
gen split merge : 660.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.6%)
LB compute : 180.32 us (92.0%)
LB move op cnt : 0
LB apply : 3.27 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.118289360058767e-19,-1.9095099742716172e-19,4.486729718072654e-19)
sum a = (-1.0572941486955054e-19,6.389799629184e-20,3.396141176669436e-21)
sum e = 7.856793730736358e-10
sum de = 8.271806125530277e-25
Info: cfl dt = 0.04012129460054356 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5347e+04 | 2592 | 1 | 5.716e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2526.9117918862357 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.188138280643734, dt = 0.04012129460054356 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (2.3%)
patch tree reduce : 1.04 us (0.5%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 561.00 ns (0.3%)
LB compute : 177.59 us (93.4%)
LB move op cnt : 0
LB apply : 2.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.116448987302117e-19,-1.8561843520526988e-19,4.503954223962054e-19)
sum a = (-1.0655922580000439e-19,2.8241659913832044e-20,1.4149068197976652e-20)
sum e = 7.856796090575459e-10
sum de = 6.617444900424222e-24
Info: cfl dt = 0.04012114091320937 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5205e+04 | 2592 | 1 | 5.734e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2519.0235771331 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.228259575244278, dt = 0.0015165318890630886 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (1.7%)
patch tree reduce : 761.00 ns (0.3%)
gen split merge : 431.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.4%)
LB compute : 205.42 us (94.1%)
LB move op cnt : 0
LB apply : 2.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1197353672247065e-19,-1.8628926750696846e-19,4.506325905857602e-19)
sum a = (-4.351068426110867e-19,-1.422544467279558e-19,-1.899392922562568e-19)
sum e = 7.856772930683562e-10
sum de = -1.5302841332231012e-23
Info: cfl dt = 0.04012113510686366 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5541e+04 | 2592 | 1 | 5.692e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.92205097158906 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 423 [SPH][rank=0]
Info: time since start : 170.854881118 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00031026700000000003 s
sph::RenderFieldGetter compute custom field took : 0.00023878200000000002 s
rho_t_ampl=0.000453102, rho_t_phi=3.14159 rad
eps_t_ampl=-0.00017053, eps_t_phi=2.25509e-12 rad
vx_t_ampl=2.46132e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 15.59s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 15.229776107133342, dt = 0.04012113510686366 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.99 us (3.9%)
patch tree reduce : 1.59 us (0.6%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.4%)
LB compute : 232.97 us (90.9%)
LB move op cnt : 0
LB apply : 3.54 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2904956680024587e-19,-1.9211889469215196e-19,4.428572573256476e-19)
sum a = (3.6725295634938056e-20,-6.422273331261857e-20,4.884405381142096e-20)
sum e = 7.856797629370962e-10
sum de = 9.512577044359818e-24
Info: cfl dt = 0.04012098158643554 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4702e+04 | 2592 | 1 | 5.798e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2490.941573915368 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.269897242240205, dt = 0.04012098158643554 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (1.8%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.3%)
LB compute : 196.89 us (94.0%)
LB move op cnt : 0
LB apply : 2.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1819136753601006e-19,-1.9313849406313537e-19,4.496070581536423e-19)
sum a = (-2.2041750140808014e-20,-2.1057284064716776e-19,-1.4955623047654103e-19)
sum e = 7.856800594665178e-10
sum de = -6.617444900424222e-24
Info: cfl dt = 0.040120828262399204 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.0115e+04 | 2592 | 1 | 6.461e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2235.3747118026763 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.31001822382664, dt = 0.040120828262399204 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (1.8%)
patch tree reduce : 931.00 ns (0.4%)
gen split merge : 561.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 214.31 us (93.6%)
LB move op cnt : 0
LB apply : 2.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.201894865289445e-19,-2.0451840614008228e-19,4.396267312387659e-19)
sum a = (3.47649700111134e-20,-5.2865572356053724e-20,-7.13657424762155e-20)
sum e = 7.856803123128033e-10
sum de = -4.1359030627651384e-24
Info: cfl dt = 0.04012067519470672 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.6531e+04 | 2592 | 1 | 7.095e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2035.6463839389123 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.35013905208904, dt = 0.04012067519470672 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (2.1%)
patch tree reduce : 1.26 us (0.6%)
gen split merge : 721.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 184.56 us (92.1%)
LB move op cnt : 0
LB apply : 2.92 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1790216610282217e-19,-2.0347580210964077e-19,4.383320230352838e-19)
sum a = (-2.562981974029127e-19,-8.178191740273383e-21,-6.870665675679495e-20)
sum e = 7.856805697524961e-10
sum de = 9.098986738083304e-24
Info: cfl dt = 0.04012052243404982 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3965e+04 | 2592 | 1 | 5.896e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2449.8542981164646 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.390259727283746, dt = 0.04012052243404982 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.97 us (2.0%)
patch tree reduce : 1.03 us (0.5%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 188.67 us (92.9%)
LB move op cnt : 0
LB apply : 2.69 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3395284564474945e-19,-2.0290479359809083e-19,4.356288182287346e-19)
sum a = (-7.225927854793741e-20,-9.779942665199518e-20,2.297811327384672e-20)
sum e = 7.856808312659751e-10
sum de = 7.237830359838992e-24
Info: cfl dt = 0.04012037003068414 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3899e+04 | 2592 | 1 | 5.904e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2446.1949921973733 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.430380249717796, dt = 0.04012037003068414 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (1.9%)
patch tree reduce : 881.00 ns (0.5%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 631.00 ns (0.3%)
LB compute : 179.97 us (93.6%)
LB move op cnt : 0
LB apply : 1.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (63.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3298664994750813e-19,-2.0862884582826115e-19,4.383899290723537e-19)
sum a = (-3.171964605584581e-19,-5.608293509091349e-20,-5.938835447297926e-20)
sum e = 7.85681096371404e-10
sum de = 4.342698215903395e-24
Info: cfl dt = 0.040120218034378936 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3909e+04 | 2592 | 1 | 5.903e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2446.750931184899 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.47050061974848, dt = 0.040120218034378936 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.8%)
patch tree reduce : 1.36 us (0.7%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 185.85 us (92.7%)
LB move op cnt : 0
LB apply : 2.74 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5119319471865416e-19,-2.1004075680250369e-19,4.343549687601052e-19)
sum a = (-3.3479831142384764e-19,-9.792527991906002e-21,1.4479177604588633e-20)
sum e = 7.856813645860168e-10
sum de = -2.274746684520826e-24
Info: cfl dt = 0.04012006649440546 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4288e+04 | 2592 | 1 | 5.853e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2467.820617654461 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.51062083778286, dt = 0.04012006649440546 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (1.9%)
patch tree reduce : 1.37 us (0.6%)
gen split merge : 621.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 197.92 us (92.9%)
LB move op cnt : 0
LB apply : 2.66 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.646870706808068e-19,-2.0950302288766997e-19,4.364176650746946e-19)
sum a = (1.0537777221783345e-19,8.392507759628992e-20,-1.155093044994008e-19)
sum e = 7.85681635430552e-10
sum de = 8.271806125530277e-25
Info: cfl dt = 0.0401199154595246 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4331e+04 | 2592 | 1 | 5.847e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2470.240534550526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.550740904277264, dt = 0.0401199154595246 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (1.9%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 541.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 691.00 ns (0.4%)
LB compute : 177.79 us (93.8%)
LB move op cnt : 0
LB apply : 2.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5144295959277096e-19,-2.0426247930361064e-19,4.2917586827062814e-19)
sum a = (-2.0062527832428467e-19,4.991887662581695e-20,5.0775024408936134e-20)
sum e = 7.856819084301633e-10
sum de = -3.7223127564886245e-24
Info: cfl dt = 0.04011976497797483 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4732e+04 | 2592 | 1 | 5.795e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2492.5642133088827 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.590860819736788, dt = 0.0015290042330597942 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (1.8%)
patch tree reduce : 902.00 ns (0.4%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 751.00 ns (0.4%)
LB compute : 198.59 us (93.6%)
LB move op cnt : 0
LB apply : 2.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5896219685565583e-19,-2.0486470842442517e-19,4.3258916010690545e-19)
sum a = (1.0729373171270315e-19,-5.364555082297923e-21,3.63944023593381e-20)
sum e = 7.856777278062309e-10
sum de = -2.274746684520826e-24
Info: cfl dt = 0.04011975925469993 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6440e+04 | 2592 | 1 | 5.581e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.62122800495524 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 433 [SPH][rank=0]
Info: time since start : 171.68978293700002 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000269247 s
sph::RenderFieldGetter compute custom field took : 0.000221837 s
rho_t_ampl=0.00050593, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000175281, eps_t_phi=2.53442e-12 rad
vx_t_ampl=2.27392e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 15.96s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 15.592389823969848, dt = 0.04011975925469993 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.73 us (3.9%)
patch tree reduce : 1.36 us (0.5%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 229.55 us (91.1%)
LB move op cnt : 0
LB apply : 3.42 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5387488073548723e-19,-2.0512227845085811e-19,4.340383007517964e-19)
sum a = (6.223581978403933e-20,1.2199521549763381e-19,2.9479356274207985e-21)
sum e = 7.85682083658073e-10
sum de = -1.0960143116327617e-23
Info: cfl dt = 0.04011960940459415 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3388e+04 | 2592 | 1 | 7.763e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1860.4301314321779 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.632509583224548, dt = 0.04011960940459415 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (2.0%)
patch tree reduce : 1.54 us (0.7%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.4%)
LB compute : 206.74 us (93.0%)
LB move op cnt : 0
LB apply : 2.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (58.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5190305278193352e-19,-1.9767369835630893e-19,4.3348563868110975e-19)
sum a = (-3.911778021858324e-20,-2.4136416172034697e-20,-7.415429822544914e-22)
sum e = 7.856824140859037e-10
sum de = 5.997059441009451e-24
Info: cfl dt = 0.040119460197892295 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4098e+04 | 2592 | 1 | 7.602e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1899.9910026927973 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.672629192629143, dt = 0.040119460197892295 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (2.0%)
patch tree reduce : 1.10 us (0.5%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 197.72 us (92.8%)
LB move op cnt : 0
LB apply : 2.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5555093449600789e-19,-2.0157709610936466e-19,4.33381878156578e-19)
sum a = (-3.18634251774591e-19,-6.646734574330826e-20,2.1986036615329614e-19)
sum e = 7.856826908731967e-10
sum de = 1.2407709188295415e-24
Info: cfl dt = 0.04011931168776291 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4047e+04 | 2592 | 1 | 7.613e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1897.148862255097 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.712748652827036, dt = 0.04011931168776291 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (1.8%)
patch tree reduce : 1.14 us (0.5%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.4%)
LB compute : 219.65 us (93.1%)
LB move op cnt : 0
LB apply : 2.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7467766564547898e-19,-2.0509146863908384e-19,4.466277394706334e-19)
sum a = (7.787405864568164e-20,-2.1386409197007467e-20,-2.2253382770140514e-21)
sum e = 7.856829678542946e-10
sum de = -3.9291079096268815e-24
Info: cfl dt = 0.04011916392020829 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7551e+04 | 2592 | 1 | 6.903e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2092.3915863754282 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.752867964514799, dt = 0.04011916392020829 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (1.9%)
patch tree reduce : 1.63 us (0.8%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 188.16 us (92.4%)
LB move op cnt : 0
LB apply : 2.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6316219039672526e-19,-2.0503847576283207e-19,4.420834979607975e-19)
sum a = (3.916707591742208e-19,2.0219830776499085e-19,7.123348286661097e-20)
sum e = 7.856832446771153e-10
sum de = 1.075334796318936e-23
Info: cfl dt = 0.04011901694066184 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4974e+04 | 2592 | 1 | 5.763e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2505.9969207193512 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.792987128435007, dt = 0.04011901694066184 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (2.3%)
patch tree reduce : 1.32 us (0.7%)
gen split merge : 711.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.6%)
LB compute : 179.77 us (92.2%)
LB move op cnt : 0
LB apply : 2.57 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4122231803351752e-19,-1.924417815195464e-19,4.464148685100985e-19)
sum a = (1.339397001250591e-19,-8.716937404394787e-21,5.81285626301031e-20)
sum e = 7.856835209074023e-10
sum de = -1.075334796318936e-23
Info: cfl dt = 0.040118870793967136 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5019e+04 | 2592 | 1 | 5.758e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2508.5163498091615 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.833106145375668, dt = 0.040118870793967136 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (1.8%)
patch tree reduce : 802.00 ns (0.4%)
gen split merge : 641.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 651.00 ns (0.3%)
LB compute : 190.14 us (93.7%)
LB move op cnt : 0
LB apply : 2.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4067677896636766e-19,-1.970246383215975e-19,4.484840425452034e-19)
sum a = (2.1502126557518811e-19,-6.213058903239206e-20,7.761932335614628e-20)
sum e = 7.856837961144382e-10
sum de = 4.963083675318166e-24
Info: cfl dt = 0.04011872552436818 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7393e+04 | 2592 | 1 | 6.932e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2083.580468172521 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.873225016169634, dt = 0.04011872552436818 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (1.8%)
patch tree reduce : 1.27 us (0.6%)
gen split merge : 731.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.4%)
LB compute : 198.08 us (93.3%)
LB move op cnt : 0
LB apply : 2.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3042984636773348e-19,-2.005895389426265e-19,4.519890045299381e-19)
sum a = (2.963328776198984e-20,1.2876394700767675e-19,6.858928901102126e-21)
sum e = 7.856840698760782e-10
sum de = -4.1359030627651384e-24
Info: cfl dt = 0.04011858117549954 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.8453e+04 | 2592 | 1 | 6.741e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2142.645002797749 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.913343741694002, dt = 0.04011858117549954 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (1.8%)
patch tree reduce : 1.37 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 202.09 us (93.1%)
LB move op cnt : 0
LB apply : 2.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3307209582549546e-19,-1.9159184151206667e-19,4.5084476660426515e-19)
sum a = (1.626725197882594e-19,-8.437252351818688e-20,-7.969635382694445e-20)
sum e = 7.856843417782377e-10
sum de = -2.0472720160687435e-23
Info: cfl dt = 0.04011843779037679 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4869e+04 | 2592 | 1 | 5.777e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2500.102170602042 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.953462322869502, dt = 0.0015412179368539114 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (1.9%)
patch tree reduce : 1.34 us (0.7%)
gen split merge : 841.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.5%)
LB compute : 182.40 us (92.6%)
LB move op cnt : 0
LB apply : 2.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.299500348990354e-19,-1.960083253305367e-19,4.489856995861091e-19)
sum a = (1.817992509377305e-19,1.0611779501245305e-19,1.92748668383241e-19)
sum e = 7.856781816180149e-10
sum de = -2.481541837659083e-24
Info: cfl dt = 0.040118432301860844 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4799e+04 | 2592 | 1 | 5.786e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.89494342493846 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 443 [SPH][rank=0]
Info: time since start : 172.588419638 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000310617 s
sph::RenderFieldGetter compute custom field took : 0.00023948300000000002 s
rho_t_ampl=0.00055403, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000181431, eps_t_phi=2.1414e-12 rad
vx_t_ampl=2.03826e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 16.32s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 15.955003540806356, dt = 0.040118432301860844 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.02 us (3.8%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.4%)
LB compute : 242.81 us (91.3%)
LB move op cnt : 0
LB apply : 3.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2254253455351859e-19,-1.9160046825936347e-19,4.569284225674507e-19)
sum a = (6.420929092755435e-20,2.344408568229953e-19,5.847092827111585e-20)
sum e = 7.856845144412078e-10
sum de = -7.651420666115506e-24
Info: cfl dt = 0.040118289966822866 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3660e+04 | 2592 | 1 | 7.700e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1875.553238034164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.995121973108217, dt = 0.040118289966822866 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (2.0%)
patch tree reduce : 1.29 us (0.6%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 202.91 us (92.9%)
LB move op cnt : 0
LB apply : 2.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2251624351413787e-19,-1.796125758967375e-19,4.565806700092664e-19)
sum a = (-2.4038883219765676e-19,-4.262383409912337e-20,-2.3661356189168948e-20)
sum e = 7.856848338218983e-10
sum de = -1.1166938269465874e-23
Info: cfl dt = 0.04011814867685932 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3733e+04 | 2592 | 1 | 7.684e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1879.5966003942713 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.03524026307504, dt = 0.04011814867685932 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (1.8%)
patch tree reduce : 1.39 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 203.78 us (93.0%)
LB move op cnt : 0
LB apply : 2.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3777819187464369e-19,-1.8688862104535074e-19,4.539839168019711e-19)
sum a = (2.072391179184961e-20,8.642338345297472e-20,-4.1911455499765884e-20)
sum e = 7.85685097895356e-10
sum de = -1.6336817097922297e-23
Info: cfl dt = 0.0401180084774358 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3997e+04 | 2592 | 1 | 7.624e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1894.305354712934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.0753584117519, dt = 0.0401180084774358 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.34 us (1.8%)
patch tree reduce : 1.53 us (0.6%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 220.19 us (93.1%)
LB move op cnt : 0
LB apply : 2.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.322767918842288e-19,-1.8083100125303755e-19,4.519364325761741e-19)
sum a = (8.428578587465381e-20,1.154484085060109e-20,-9.995833474664535e-21)
sum e = 7.856853582719135e-10
sum de = 7.031035206700735e-24
Info: cfl dt = 0.040117869408990724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3975e+04 | 2592 | 1 | 7.629e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1893.0464592062117 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.115476420229335, dt = 0.040117869408990724 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 us (2.1%)
patch tree reduce : 1.48 us (0.7%)
gen split merge : 871.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 200.96 us (92.4%)
LB move op cnt : 0
LB apply : 2.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2724863060266681e-19,-1.8187155129602748e-19,4.521756166316882e-19)
sum a = (1.2084018975361721e-19,1.0200579236819771e-19,1.515651784521131e-20)
sum e = 7.856856148455699e-10
sum de = -4.756288522179909e-24
Info: cfl dt = 0.0401177315112849 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7784e+04 | 2592 | 1 | 6.860e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2105.292486757756 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.155594289638326, dt = 0.0401177315112849 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (1.9%)
patch tree reduce : 1.35 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.4%)
LB compute : 197.92 us (92.6%)
LB move op cnt : 0
LB apply : 2.78 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.215960571358128e-19,-1.7596181860023086e-19,4.532881911180341e-19)
sum a = (3.491121391766863e-20,1.4559045772702276e-19,1.788430184425802e-19)
sum e = 7.856858672654574e-10
sum de = -6.203854594147708e-25
Info: cfl dt = 0.04011759482340797 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5237e+04 | 2592 | 1 | 5.730e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2520.55287616605 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.19571202114961, dt = 0.04011759482340797 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.59 us (1.8%)
patch tree reduce : 791.00 ns (0.4%)
gen split merge : 441.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 651.00 ns (0.3%)
LB compute : 184.18 us (94.2%)
LB move op cnt : 0
LB apply : 1.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2258197111258968e-19,-1.692473336208901e-19,4.637463084104155e-19)
sum a = (1.5139695027385472e-19,1.7799065754298855e-19,-9.111236773402712e-20)
sum e = 7.856861151885911e-10
sum de = 2.274746684520826e-24
Info: cfl dt = 0.04011745938377102 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4601e+04 | 2592 | 1 | 5.812e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2485.1165980760647 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.235829615973017, dt = 0.04011745938377102 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (2.1%)
patch tree reduce : 1.08 us (0.6%)
gen split merge : 681.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.5%)
LB compute : 172.64 us (92.4%)
LB move op cnt : 0
LB apply : 2.53 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1419512955014119e-19,-1.614606671918045e-19,4.546761312969545e-19)
sum a = (-2.8052539019224274e-20,-1.229517722971212e-19,-6.319915186906823e-20)
sum e = 7.856863582832034e-10
sum de = 7.031035206700735e-24
Info: cfl dt = 0.040117325230099046 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4174e+04 | 2592 | 1 | 5.868e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2461.3362726577643 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.27594707535679, dt = 0.040117325230099046 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (1.9%)
patch tree reduce : 1.42 us (0.7%)
gen split merge : 902.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.5%)
LB compute : 182.99 us (92.5%)
LB move op cnt : 0
LB apply : 2.60 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.193416005089164e-19,-1.7241581466375673e-19,4.527006540190104e-19)
sum a = (3.328445585598681e-20,5.598065132985597e-20,-6.0389004472856955e-21)
sum e = 7.856865962292628e-10
sum de = -9.098986738083304e-24
Info: cfl dt = 0.04011719239942373 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4297e+04 | 2592 | 1 | 5.851e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2468.145658336226 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.31606440058689, dt = 0.0015528570559766308 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (1.9%)
patch tree reduce : 1.07 us (0.5%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 511.00 ns (0.2%)
LB compute : 198.49 us (93.8%)
LB move op cnt : 0
LB apply : 2.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1727775391753015e-19,-1.6874862546763713e-19,4.538378346681056e-19)
sum a = (1.7210771654601396e-19,1.932441011117025e-19,6.746344705490675e-20)
sum e = 7.856785978839173e-10
sum de = 5.169878828456423e-24
Info: cfl dt = 0.040117187284904814 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7692e+04 | 2592 | 1 | 6.877e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.29230485343754 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 453 [SPH][rank=0]
Info: time since start : 173.49609622300002 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00029949100000000004 s
sph::RenderFieldGetter compute custom field took : 0.000231441 s
rho_t_ampl=0.000596428, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000188708, eps_t_phi=2.22089e-12 rad
vx_t_ampl=1.76342e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 16.68s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 16.317617257642866, dt = 0.040117187284904814 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.58 us (4.2%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 230.23 us (90.9%)
LB move op cnt : 0
LB apply : 3.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1029748296195e-19,-1.6088349671789973e-19,4.566013477279849e-19)
sum a = (-4.2375239997853986e-19,-2.5056617634330116e-19,-9.804848638719188e-20)
sum e = 7.856867458614287e-10
sum de = 2.481541837659083e-24
Info: cfl dt = 0.04011705586927837 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2727e+04 | 2592 | 1 | 7.920e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1823.5130717328982 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.35773444492777, dt = 0.04011705586927837 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.33 us (2.0%)
patch tree reduce : 1.61 us (0.7%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 203.45 us (92.6%)
LB move op cnt : 0
LB apply : 2.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3917161696182165e-19,-1.79846730466222e-19,4.493479945058061e-19)
sum a = (-5.526705115818822e-20,-3.92001162311946e-20,-1.2121780602461439e-19)
sum e = 7.856870164245915e-10
sum de = 1.3648480107124957e-23
Info: cfl dt = 0.040116925847716464 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3969e+04 | 2592 | 1 | 7.631e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1892.6658798598432 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.39785150079705, dt = 0.040116925847716464 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.73 us (2.2%)
patch tree reduce : 1.51 us (0.7%)
gen split merge : 1.04 us (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 198.24 us (92.0%)
LB move op cnt : 0
LB apply : 2.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3427491087716324e-19,-1.7718065475402124e-19,4.44020366324918e-19)
sum a = (-6.065342785131247e-20,1.0851613666969074e-19,-6.125062571709566e-20)
sum e = 7.856872373268134e-10
sum de = 9.719372197498075e-24
Info: cfl dt = 0.040116797257323034 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4303e+04 | 2592 | 1 | 7.556e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1911.3116754407192 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.437968426644765, dt = 0.040116797257323034 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (1.7%)
patch tree reduce : 1.46 us (0.6%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 232.20 us (93.5%)
LB move op cnt : 0
LB apply : 2.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3675941409864092e-19,-1.698524383241369e-19,4.427660368539882e-19)
sum a = (1.0710312167719295e-19,9.316450608207864e-21,1.1408446102932095e-19)
sum e = 7.85687451468908e-10
sum de = -5.997059441009451e-24
Info: cfl dt = 0.0401166701323007 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3584e+04 | 2592 | 1 | 7.718e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1871.2250502857755 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.478085223902088, dt = 0.0401166701323007 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.71 us (2.1%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 203.79 us (92.6%)
LB move op cnt : 0
LB apply : 2.85 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2902327576086517e-19,-1.714754992084058e-19,4.508596666078956e-19)
sum a = (-1.7418799503701315e-19,-1.950875291746869e-19,1.063677109424851e-19)
sum e = 7.856876590318476e-10
sum de = 2.481541837659083e-24
Info: cfl dt = 0.040116544506091006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3791e+04 | 2592 | 1 | 7.671e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1882.7394275596903 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.518201894034387, dt = 0.040116544506091006 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (1.8%)
patch tree reduce : 1.52 us (0.7%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 214.24 us (93.2%)
LB move op cnt : 0
LB apply : 2.88 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.416626929431445e-19,-1.8339026961775417e-19,4.549719864590553e-19)
sum a = (-4.587786371934991e-21,5.875851530911107e-20,2.0036202549421286e-19)
sum e = 7.856878597715073e-10
sum de = -2.481541837659083e-24
Info: cfl dt = 0.04011642041140562 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0798e+04 | 2592 | 1 | 8.416e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1716.0002830057815 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.55831843854048, dt = 0.04011642041140562 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (2.0%)
patch tree reduce : 1.20 us (0.5%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 206.13 us (92.9%)
LB move op cnt : 0
LB apply : 2.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3823828506380622e-19,-1.759540134479147e-19,4.64895157259768e-19)
sum a = (3.137276865501648e-19,1.3829351807012238e-19,2.9940682553783685e-19)
sum e = 7.85688053454756e-10
sum de = 3.308722450212111e-24
Info: cfl dt = 0.040116297880221724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9771e+04 | 2592 | 1 | 8.706e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1658.7536192258676 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.598434858951883, dt = 0.040116297880221724 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (2.4%)
patch tree reduce : 1.28 us (0.6%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 203.24 us (92.4%)
LB move op cnt : 0
LB apply : 2.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1941390086721336e-19,-1.6880490472381148e-19,4.788929120794561e-19)
sum a = (3.4895439294040207e-19,5.0105935910754043e-20,4.8016531859000726e-20)
sum e = 7.856882398615851e-10
sum de = 2.0679515313825692e-24
Info: cfl dt = 0.040116176943775915 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9943e+04 | 2592 | 1 | 8.657e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1668.3134206917287 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.638551156832104, dt = 0.040116176943775915 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.8%)
patch tree reduce : 1.19 us (0.5%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 219.26 us (93.0%)
LB move op cnt : 0
LB apply : 3.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0480922849122547e-19,-1.685641773944818e-19,4.757767278150296e-19)
sum a = (-1.1435616216634807e-19,-1.6961086051562803e-19,1.365917361852825e-19)
sum e = 7.85688418785094e-10
sum de = 8.892191584945048e-24
Info: cfl dt = 0.04011605763255981 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9964e+04 | 2592 | 1 | 8.650e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1669.5259892613476 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.67866733377588, dt = 0.0015636407034911315 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (1.7%)
patch tree reduce : 1.18 us (0.5%)
gen split merge : 551.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.4%)
LB compute : 216.76 us (93.5%)
LB move op cnt : 0
LB apply : 2.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.139387919161792e-19,-1.7322960449208796e-19,4.777669574982906e-19)
sum a = (-1.6313589935734454e-19,2.516155328574899e-19,4.6289024228215725e-20)
sum e = 7.85678931264918e-10
sum de = -7.444625512977249e-24
Info: cfl dt = 0.04011605301530932 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1002e+04 | 2592 | 1 | 8.361e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.32850848082228 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 463 [SPH][rank=0]
Info: time since start : 174.540393504 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00027739800000000004 s
sph::RenderFieldGetter compute custom field took : 0.000218392 s
rho_t_ampl=0.000632356, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000196824, eps_t_phi=2.12008e-12 rad
vx_t_ampl=1.45889e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 17.04s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 16.68023097447937, dt = 0.04011605301530932 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.96 us (3.4%)
patch tree reduce : 1.41 us (0.5%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 270.22 us (92.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2041953312352575e-19,-1.6280356418767268e-19,4.795532899502342e-19)
sum a = (2.0105086452426002e-19,8.511589206580384e-21,1.4254128591475338e-19)
sum e = 7.856885299328795e-10
sum de = -2.68833699079734e-24
Info: cfl dt = 0.04011593542454347 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9396e+04 | 2592 | 1 | 8.818e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1637.8288459812472 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.720347027494682, dt = 0.04011593542454347 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (1.8%)
patch tree reduce : 982.00 ns (0.4%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.6%)
LB compute : 207.52 us (92.9%)
LB move op cnt : 0
LB apply : 2.82 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.054270679166723e-19,-1.6733466050594298e-19,4.872020973876563e-19)
sum a = (-3.429764678612117e-19,2.38256125676955e-21,9.937023651321879e-20)
sum e = 7.856887238578096e-10
sum de = -3.1019272970738538e-24
Info: cfl dt = 0.04011581951866468 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0111e+04 | 2592 | 1 | 8.608e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1677.6988337730913 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.760462962919227, dt = 0.04011581951866468 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.58 us (2.0%)
patch tree reduce : 1.10 us (0.5%)
gen split merge : 731.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.6%)
LB compute : 212.71 us (93.0%)
LB move op cnt : 0
LB apply : 2.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3025238185191364e-19,-1.6737039988760116e-19,4.903224923461398e-19)
sum a = (1.154110901214993e-19,-6.727675430006607e-21,1.839021138413817e-19)
sum e = 7.856888795158472e-10
sum de = 9.719372197498075e-24
Info: cfl dt = 0.04011570532601512 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0358e+04 | 2592 | 1 | 8.538e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1691.4590379947745 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.800578782437892, dt = 0.04011570532601512 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.42 us (2.0%)
patch tree reduce : 891.00 ns (0.4%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.6%)
LB compute : 205.23 us (93.0%)
LB move op cnt : 0
LB apply : 2.79 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1675193312991583e-19,-1.6782597430437013e-19,4.993953881210672e-19)
sum a = (1.9657810144961565e-19,-3.1388972048525434e-20,6.151392571976304e-20)
sum e = 7.85689026376544e-10
sum de = -7.031035206700735e-24
Info: cfl dt = 0.040115592874095274 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0300e+04 | 2592 | 1 | 8.555e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1688.1881031888781 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.84069448776391, dt = 0.040115592874095274 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.33 us (1.8%)
patch tree reduce : 1.01 us (0.4%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 221.21 us (93.4%)
LB move op cnt : 0
LB apply : 2.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0648528225174613e-19,-1.6957309603071678e-19,4.994082114762894e-19)
sum a = (-4.1004162294149634e-20,-9.3789598650714e-20,-1.6683322456421715e-20)
sum e = 7.856891649116831e-10
sum de = 6.4106497472859645e-24
Info: cfl dt = 0.04011548218958405 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0275e+04 | 2592 | 1 | 8.561e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1686.8322532728687 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.880810080638003, dt = 0.04011548218958405 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.65 us (2.1%)
patch tree reduce : 1.03 us (0.5%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 207.53 us (92.6%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1315663349460288e-19,-1.745844146151755e-19,4.971704874655819e-19)
sum a = (2.751685909184218e-19,9.159983941918816e-20,1.5519688622833215e-21)
sum e = 7.856892949933107e-10
sum de = -6.2038545941477076e-24
Info: cfl dt = 0.040115373298402535 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9745e+04 | 2592 | 1 | 8.714e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1657.2746219846317 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.920925562827588, dt = 0.040115373298402535 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.88 us (2.1%)
patch tree reduce : 1.38 us (0.6%)
gen split merge : 832.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 214.86 us (92.7%)
LB move op cnt : 0
LB apply : 2.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.581112026317531e-20,-1.671908813843297e-19,4.975985040278805e-19)
sum a = (-1.817663871385046e-19,2.779374622838653e-20,1.1698516973266978e-19)
sum e = 7.856894165077776e-10
sum de = 0
Info: cfl dt = 0.04011526622571078 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0496e+04 | 2592 | 1 | 8.499e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1699.1318602748672 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.96104093612599, dt = 0.04011526622571078 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (1.8%)
patch tree reduce : 1.20 us (0.5%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 242.05 us (93.3%)
LB move op cnt : 0
LB apply : 2.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.123974797324847e-19,-1.6735766516540111e-19,5.046067182281414e-19)
sum a = (-1.7996873732084814e-19,-4.4492725187797076e-20,1.4012298325779623e-19)
sum e = 7.85689529353877e-10
sum de = -9.305781891221561e-25
Info: cfl dt = 0.040115160995825266 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0664e+04 | 2592 | 1 | 8.453e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1708.4578954362044 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.0011562023517, dt = 0.040115160995825266 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.76 us (2.0%)
patch tree reduce : 1.35 us (0.6%)
gen split merge : 851.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.5%)
LB compute : 204.91 us (87.3%)
LB move op cnt : 0
LB apply : 2.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1914113133363843e-19,-1.7059967895903569e-19,5.106918640354679e-19)
sum a = (-4.3873171966570296e-21,-1.0054511523875622e-19,1.6701032910389e-20)
sum e = 7.856896334437717e-10
sum de = 9.305781891221561e-25
Info: cfl dt = 0.040115057632365364 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0015e+04 | 2592 | 1 | 8.636e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1672.303051132787 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.041271363347526, dt = 0.001573327968355187 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (2.0%)
patch tree reduce : 1.09 us (0.5%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 202.97 us (92.9%)
LB move op cnt : 0
LB apply : 2.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1605193420640427e-19,-1.7187643755896174e-19,5.082425945333293e-19)
sum a = (2.982718417742262e-20,-7.745111053583946e-20,2.3190856479713782e-20)
sum e = 7.856791507125558e-10
sum de = 2.1713491079516976e-24
Info: cfl dt = 0.04011505361664992 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6420e+04 | 2592 | 1 | 9.811e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.73307500900221 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 473 [SPH][rank=0]
Info: time since start : 175.80163557100002 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000285861 s
sph::RenderFieldGetter compute custom field took : 0.00020821700000000002 s
rho_t_ampl=0.000661261, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000205493, eps_t_phi=2.04192e-12 rad
vx_t_ampl=1.13432e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 17.41s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 17.04284469131588, dt = 0.04011505361664992 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.92 us (3.2%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 283.07 us (92.6%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1488855571380756e-19,-1.7496645628117655e-19,5.091780022949158e-19)
sum a = (-4.293326730870969e-20,-6.6847984419540715e-22,1.64082586263556e-19)
sum e = 7.856896965507712e-10
sum de = 2.7917345673664684e-24
Info: cfl dt = 0.04011495221550321 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1320e+04 | 2592 | 1 | 8.276e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1745.0317734335636 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.08295974493253, dt = 0.04011495221550321 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (2.0%)
patch tree reduce : 1.28 us (0.5%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 216.54 us (92.8%)
LB move op cnt : 0
LB apply : 2.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.17767424525996e-19,-1.7345677550423698e-19,5.185861070494938e-19)
sum a = (-1.039186195322037e-19,-6.186960665883733e-20,-1.042343589724655e-19)
sum e = 7.856897974265787e-10
sum de = -2.5849394142282115e-24
Info: cfl dt = 0.040114852728275245 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2154e+04 | 2592 | 1 | 8.061e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1791.4814082480732 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.123074697148034, dt = 0.040114852728275245 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.11 us (1.8%)
patch tree reduce : 1.37 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 206.73 us (92.9%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2342985713261778e-19,-1.7716504444938893e-19,5.090230003717204e-19)
sum a = (-1.093805829635475e-19,1.7532297715309122e-20,4.203590659884815e-20)
sum e = 7.856898752503003e-10
sum de = -5.583469134732937e-24
Info: cfl dt = 0.04011475517438035 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2402e+04 | 2592 | 1 | 8.000e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1805.2777274707278 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.16318954987631, dt = 0.04011475517438035 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.60 us (1.8%)
patch tree reduce : 1.22 us (0.5%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 236.23 us (93.6%)
LB move op cnt : 0
LB apply : 2.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2767585999260345e-19,-1.74861702921144e-19,5.13643065554426e-19)
sum a = (-2.2240576126124682e-19,-5.870445692686878e-20,4.512605620477435e-21)
sum e = 7.856899433389827e-10
sum de = 1.8611563782443123e-24
Info: cfl dt = 0.04011465957435074 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2510e+04 | 2592 | 1 | 7.973e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1811.3156636698545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.20330430505069, dt = 0.04011465957435074 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.19 us (1.9%)
patch tree reduce : 1.14 us (0.5%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 205.98 us (93.2%)
LB move op cnt : 0
LB apply : 2.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (57.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3911246212321504e-19,-1.7874702558462549e-19,5.130714681766114e-19)
sum a = (-1.909123824630713e-19,3.8506115592912834e-20,1.3720770341966904e-19)
sum e = 7.856900024258728e-10
sum de = -9.822769774067204e-24
Info: cfl dt = 0.040114565947864916 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2435e+04 | 2592 | 1 | 7.991e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1807.1010947293785 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.24341896462504, dt = 0.040114565947864916 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (1.5%)
patch tree reduce : 1.34 us (0.5%)
gen split merge : 7.27 us (2.8%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 236.62 us (91.4%)
LB move op cnt : 0
LB apply : 2.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4555705315141312e-19,-1.7526140887922894e-19,5.212370049816903e-19)
sum a = (1.0616321701933235e-19,-1.9309163747439532e-20,5.929848370047277e-20)
sum e = 7.856900524976577e-10
sum de = -4.342698215903395e-24
Info: cfl dt = 0.04011447431382085 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2108e+04 | 2592 | 1 | 8.073e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1788.9061399833233 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.283533530572903, dt = 0.04011447431382085 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (1.9%)
patch tree reduce : 1.29 us (0.6%)
gen split merge : 881.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.4%)
LB compute : 216.51 us (93.3%)
LB move op cnt : 0
LB apply : 2.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3606598793497453e-19,-1.7719133548876965e-19,5.220530852167592e-19)
sum a = (-9.611675359597614e-20,8.004285757713477e-20,-1.1784904694864337e-19)
sum e = 7.856900935552616e-10
sum de = -6.4106497472859645e-24
Info: cfl dt = 0.04011438469033534 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2366e+04 | 2592 | 1 | 8.009e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1803.2345959082177 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.323648004886724, dt = 0.04011438469033534 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.04 us (1.5%)
patch tree reduce : 1.33 us (0.5%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 248.34 us (94.0%)
LB move op cnt : 0
LB apply : 2.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4390071767042798e-19,-1.7198981766629106e-19,5.13772553178091e-19)
sum a = (3.427891442056241e-19,-3.216464757220757e-20,2.0334203404774607e-19)
sum e = 7.856901256117111e-10
sum de = 3.1019272970738538e-24
Info: cfl dt = 0.040114297094743866 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2274e+04 | 2592 | 1 | 8.031e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1798.1538636278988 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.363762389577058, dt = 0.040114297094743866 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.11 us (1.9%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.4%)
LB compute : 203.24 us (93.3%)
LB move op cnt : 0
LB apply : 2.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.211228184269599e-19,-1.7552801645044902e-19,5.283716672348368e-19)
sum a = (1.310772632124836e-19,-2.021391890316324e-19,-9.033751111653405e-20)
sum e = 7.856901486917829e-10
sum de = 4.549493369041652e-24
Info: cfl dt = 0.040114211543600814 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2392e+04 | 2592 | 1 | 8.002e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1804.710937963851 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.4038766866718, dt = 0.0015817214805906588 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.9%)
patch tree reduce : 1.13 us (0.5%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 220.55 us (93.2%)
LB move op cnt : 0
LB apply : 2.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2490215533793787e-19,-1.7925682527011717e-19,5.223384041902991e-19)
sum a = (1.0498997938696789e-19,1.5539781615020052e-19,5.147381880820733e-20)
sum e = 7.85679240711809e-10
sum de = -5.37667398159468e-24
Info: cfl dt = 0.040114208212223196 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2262e+04 | 2592 | 1 | 8.034e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.87397099391414 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 483 [SPH][rank=0]
Info: time since start : 176.824183158 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000277839 s
sph::RenderFieldGetter compute custom field took : 0.000236769 s
rho_t_ampl=0.000682802, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000214429, eps_t_phi=2.28084e-12 rad
vx_t_ampl=7.99263e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 17.77s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 17.40545840815239, dt = 0.040114208212223196 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.62 us (3.1%)
patch tree reduce : 1.46 us (0.5%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 285.37 us (92.7%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2108995462773401e-19,-1.727271991614221e-19,5.245153886888269e-19)
sum a = (7.550457872149458e-20,3.398439059239052e-20,-7.295228823311567e-20)
sum e = 7.856901602985306e-10
sum de = -4.03250548619601e-24
Info: cfl dt = 0.040114124799616194 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1127e+04 | 2592 | 1 | 8.327e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1734.2281046978774 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.445572616364615, dt = 0.040114124799616194 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (2.2%)
patch tree reduce : 1.21 us (0.5%)
gen split merge : 862.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 213.77 us (92.7%)
LB move op cnt : 0
LB apply : 2.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1846085068966238e-19,-1.738059533710121e-19,5.190933441117972e-19)
sum a = (-1.2624299834635442e-19,-1.3931272589974784e-20,1.4320081342391648e-19)
sum e = 7.856901632903095e-10
sum de = -6.514047323855093e-24
Info: cfl dt = 0.04011404346631245 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1302e+04 | 2592 | 1 | 8.280e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1743.988501537786 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.48568674116423, dt = 0.04011404346631245 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.63 us (2.1%)
patch tree reduce : 1.44 us (0.6%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 205.34 us (92.4%)
LB move op cnt : 0
LB apply : 2.82 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2777116501035854e-19,-1.7532220690779685e-19,5.291731040137279e-19)
sum a = (-1.6800960078254482e-19,-2.589578736604595e-19,6.930850653077061e-20)
sum e = 7.856901602097557e-10
sum de = 5.0664812518872945e-24
Info: cfl dt = 0.04011396422289691 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1584e+04 | 2592 | 1 | 8.207e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1759.6795648012123 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.525800784630544, dt = 0.04011396422289691 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (1.9%)
patch tree reduce : 1.33 us (0.5%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 247.78 us (93.5%)
LB move op cnt : 0
LB apply : 2.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3509321947788803e-19,-1.906334509671415e-19,5.304712833597827e-19)
sum a = (2.1660530069787627e-20,-9.749453628496787e-20,1.0598795128954639e-19)
sum e = 7.856901475122411e-10
sum de = 2.481541837659083e-24
Info: cfl dt = 0.040113887082863106 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1285e+04 | 2592 | 1 | 8.285e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1743.0115963876465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.56591474885344, dt = 0.040113887082863106 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.71 us (2.1%)
patch tree reduce : 1.33 us (0.6%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 206.50 us (92.4%)
LB move op cnt : 0
LB apply : 2.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3065660658239215e-19,-1.9130222928138846e-19,5.354585510373339e-19)
sum a = (-5.47050801914254e-20,-2.2265814496936442e-20,4.0781344494479904e-20)
sum e = 7.856901261388606e-10
sum de = -1.8611563782443123e-24
Info: cfl dt = 0.040113812058840154 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1301e+04 | 2592 | 1 | 8.281e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1743.878405048415 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.606028635936305, dt = 0.040113812058840154 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.81 us (2.0%)
patch tree reduce : 1.55 us (0.6%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 223.70 us (92.9%)
LB move op cnt : 0
LB apply : 2.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3418124904936944e-19,-1.9068397905845132e-19,5.357866009948797e-19)
sum a = (7.46501199416213e-20,-2.2134315652799513e-19,4.3864240706186256e-21)
sum e = 7.856900961769346e-10
sum de = -2.895132143935597e-24
Info: cfl dt = 0.04011373916268304 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0795e+04 | 2592 | 1 | 8.417e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1715.6921202928158 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.646142447995146, dt = 0.04011373916268304 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.60 us (1.9%)
patch tree reduce : 1.07 us (0.5%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 221.10 us (93.0%)
LB move op cnt : 0
LB apply : 3.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.28604262320735e-19,-2.0355714001272484e-19,5.352325873670215e-19)
sum a = (2.2031233725055727e-19,-1.3602328425211322e-19,-1.2815033268727305e-19)
sum e = 7.856900577280204e-10
sum de = -2.481541837659083e-24
Info: cfl dt = 0.04011366840547382 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0960e+04 | 2592 | 1 | 8.372e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1724.9083013974541 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.68625618715783, dt = 0.04011366840547382 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (1.8%)
patch tree reduce : 731.00 ns (0.3%)
gen split merge : 782.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 228.11 us (93.5%)
LB move op cnt : 0
LB apply : 3.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1684888133763222e-19,-2.0729662956714142e-19,5.274337349705284e-19)
sum a = (-1.60289894344382e-19,-3.5107966659401325e-20,-4.736033420469038e-20)
sum e = 7.856900109033347e-10
sum de = 2.5849394142282115e-24
Info: cfl dt = 0.04011359979752377 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1035e+04 | 2592 | 1 | 8.352e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1729.0588788877426 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.726369855563306, dt = 0.04011359979752377 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.46 us (1.9%)
patch tree reduce : 1.49 us (0.6%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 219.87 us (93.2%)
LB move op cnt : 0
LB apply : 2.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3100989242407053e-19,-2.0669070326891397e-19,5.271543330827494e-19)
sum a = (-7.751584323411937e-20,-7.123288176223131e-20,-1.680395985553132e-19)
sum e = 7.856899558237417e-10
sum de = -5.997059441009451e-24
Info: cfl dt = 0.04011353334837579 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1318e+04 | 2592 | 1 | 8.276e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1744.8568493113025 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.76648345536083, dt = 0.0015886696280666968 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.48 us (1.9%)
patch tree reduce : 1.47 us (0.6%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 221.23 us (93.0%)
LB move op cnt : 0
LB apply : 2.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2947022343033733e-19,-2.07528319351684e-19,5.24466933819208e-19)
sum a = (3.912763935835101e-20,-4.0339723028394206e-20,1.5858200625710904e-19)
sum e = 7.856792008543035e-10
sum de = -1.6026624368214911e-24
Info: cfl dt = 0.040113530761044035 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0859e+04 | 2592 | 1 | 8.400e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.089227831357 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 493 [SPH][rank=0]
Info: time since start : 177.891795104 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00028534000000000003 s
sph::RenderFieldGetter compute custom field took : 0.00022217700000000002 s
rho_t_ampl=0.000696851, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000223361, eps_t_phi=2.55396e-12 rad
vx_t_ampl=4.62909e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 18.13s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 17.768072124988898, dt = 0.040113530761044035 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.89 us (4.0%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 224.35 us (90.8%)
LB move op cnt : 0
LB apply : 3.30 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2799792522501723e-19,-2.0911112208190117e-19,5.310876649170679e-19)
sum a = (-9.476276506786926e-20,2.5466896171886736e-19,8.18557550323108e-21)
sum e = 7.856899181462269e-10
sum de = 1.4992648602523627e-24
Info: cfl dt = 0.04011346656073007 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1220e+04 | 2592 | 1 | 8.302e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1739.377922990514 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.80818565574994, dt = 0.04011346656073007 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (2.0%)
patch tree reduce : 1.02 us (0.5%)
gen split merge : 731.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 198.91 us (92.7%)
LB move op cnt : 0
LB apply : 2.94 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.343751454648022e-19,-1.92984445004264e-19,5.283995508005783e-19)
sum a = (6.508346798696316e-20,6.2106932071450266e-21,9.823035143133003e-20)
sum e = 7.856898290098869e-10
sum de = -2.481541837659083e-24
Info: cfl dt = 0.040113404541381445 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5058e+04 | 2592 | 1 | 5.753e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2510.312835948716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.84829912231067, dt = 0.040113404541381445 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (1.5%)
patch tree reduce : 1.19 us (0.5%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 217.67 us (93.6%)
LB move op cnt : 0
LB apply : 2.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (63.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.284432297045281e-19,-1.9772545884008973e-19,5.341459086798852e-19)
sum a = (1.3044627826734644e-19,-4.867016337916341e-20,5.504331876354318e-20)
sum e = 7.856897505764223e-10
sum de = -1.550963648536927e-25
Info: cfl dt = 0.04011334470505307 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6438e+04 | 2592 | 1 | 5.582e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2587.222926532806 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.88841252685205, dt = 0.04011334470505307 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.05 us (1.9%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.4%)
LB compute : 195.72 us (93.1%)
LB move op cnt : 0
LB apply : 2.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2180474226089725e-19,-2.0076618186346568e-19,5.354876908429892e-19)
sum a = (-9.947214749694006e-20,1.4941115520563e-20,1.0780246810776923e-19)
sum e = 7.856896635596448e-10
sum de = -8.788794008375919e-25
Info: cfl dt = 0.04011328705831123 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5027e+04 | 2592 | 1 | 5.757e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2508.5640097286396 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.928525871557103, dt = 0.04011328705831123 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (1.6%)
patch tree reduce : 991.00 ns (0.5%)
gen split merge : 541.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 651.00 ns (0.3%)
LB compute : 201.02 us (94.7%)
LB move op cnt : 0
LB apply : 1.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (44.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3055472880479188e-19,-1.9889499929504126e-19,5.408701751637913e-19)
sum a = (3.8482194341554423e-19,2.6889584161539474e-20,1.0617128762917855e-19)
sum e = 7.85689569036767e-10
sum de = -1.8611563782443123e-24
Info: cfl dt = 0.04011323160686949 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5133e+04 | 2592 | 1 | 5.743e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2514.4711090826254 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.968639158615414, dt = 0.04011323160686949 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 us (1.5%)
patch tree reduce : 942.00 ns (0.4%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.4%)
LB compute : 221.39 us (93.9%)
LB move op cnt : 0
LB apply : 2.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0537202105296892e-19,-1.9758003652851513e-19,5.450963326090761e-19)
sum a = (-1.9233538496955257e-19,-1.5503718409402721e-19,1.0774570273249146e-19)
sum e = 7.856894671745796e-10
sum de = -6.203854594147708e-25
Info: cfl dt = 0.04011317835569301 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6328e+04 | 2592 | 1 | 5.595e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2581.0635658351907 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.008752390222284, dt = 0.04011317835569301 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.97 us (1.7%)
patch tree reduce : 1.38 us (0.6%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 213.06 us (93.6%)
LB move op cnt : 0
LB apply : 2.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.246491040838985e-19,-2.0744164108122569e-19,5.494499326386439e-19)
sum a = (-6.712430991889126e-20,3.911469923740581e-20,-5.369215203026777e-20)
sum e = 7.856893581523134e-10
sum de = -2.5849394142282115e-25
Info: cfl dt = 0.040113127309001545 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6125e+04 | 2592 | 1 | 5.620e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2569.7382765780803 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.048865568577977, dt = 0.040113127309001545 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (1.6%)
patch tree reduce : 801.00 ns (0.4%)
gen split merge : 741.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 581.00 ns (0.3%)
LB compute : 208.03 us (94.6%)
LB move op cnt : 0
LB apply : 2.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2483560614450544e-19,-2.0198091004235284e-19,5.440582797780631e-19)
sum a = (4.7504621781031734e-20,-1.7676554389004915e-19,9.044675995848706e-20)
sum e = 7.856892421563577e-10
sum de = 7.754818242684634e-25
Info: cfl dt = 0.040113078470273594 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5396e+04 | 2592 | 1 | 5.710e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2529.152770670293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.08897869588698, dt = 0.040113078470273594 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (1.5%)
patch tree reduce : 661.00 ns (0.3%)
gen split merge : 711.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 213.76 us (94.1%)
LB move op cnt : 0
LB apply : 2.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2059042487950042e-19,-2.1339656150095793e-19,5.505773090210502e-19)
sum a = (-1.4370353487507262e-19,8.532556246299397e-20,-3.535041842996546e-20)
sum e = 7.856891193798364e-10
sum de = 4.652890945610781e-25
Info: cfl dt = 0.04011303184225073 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6125e+04 | 2592 | 1 | 5.620e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2569.7437671685907 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.129091774357253, dt = 0.0015940674681509392 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 us (1.7%)
patch tree reduce : 1.35 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 192.79 us (87.2%)
LB move op cnt : 0
LB apply : 16.26 us (7.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2465033647636946e-19,-2.0801141720030465e-19,5.479979020250345e-19)
sum a = (-1.625180599318977e-19,-5.166511136656683e-20,4.898766041807951e-20)
sum e = 7.856790439851022e-10
sum de = -2.5849394142282115e-26
Info: cfl dt = 0.04011303003472012 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6339e+04 | 2592 | 1 | 5.594e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.59340563749252 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 503 [SPH][rank=0]
Info: time since start : 178.717781859 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00025954200000000003 s
sph::RenderFieldGetter compute custom field took : 0.00020360000000000002 s
rho_t_ampl=0.000703475, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000232034, eps_t_phi=3.06377e-12 rad
vx_t_ampl=1.33914e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 18.49s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 18.130685841825404, dt = 0.04011303003472012 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.93 us (3.8%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 238.28 us (91.1%)
LB move op cnt : 0
LB apply : 3.56 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3122227472656788e-19,-2.1018700070905893e-19,5.500301658126108e-19)
sum a = (4.1414959784473324e-20,2.2989129387379276e-19,1.4190293755136542e-19)
sum e = 7.856890393835235e-10
sum de = -6.591595506281939e-25
Info: cfl dt = 0.04011298570130674 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1109e+04 | 2592 | 1 | 8.332e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1733.156230102646 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.170798871860125, dt = 0.04011298570130674 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (1.8%)
patch tree reduce : 1.21 us (0.6%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 201.20 us (92.8%)
LB move op cnt : 0
LB apply : 2.74 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2547193145701684e-19,-1.9530832640702512e-19,5.575858729687703e-19)
sum a = (2.6390288054378486e-19,-2.784458562716948e-19,2.463719767099294e-19)
sum e = 7.85688872570825e-10
sum de = 9.04728794979874e-26
Info: cfl dt = 0.04011294358832425 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1365e+04 | 2592 | 1 | 8.264e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1747.4271460056143 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.21091185756143, dt = 0.04011294358832425 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.19 us (2.0%)
patch tree reduce : 981.00 ns (0.5%)
gen split merge : 782.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 197.70 us (92.5%)
LB move op cnt : 0
LB apply : 2.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1039515006527445e-19,-2.1668129823358616e-19,5.69563860709247e-19)
sum a = (-3.844571552441368e-19,4.7771213305474843e-20,-1.0833566419812068e-19)
sum e = 7.856887313321853e-10
sum de = 2.0356397887047165e-25
Info: cfl dt = 0.04011290368979665 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5209e+04 | 2592 | 1 | 7.362e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1961.5834759351228 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.251024801149754, dt = 0.04011290368979665 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (1.9%)
patch tree reduce : 1.34 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 213.80 us (93.4%)
LB move op cnt : 0
LB apply : 2.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3882462145671386e-19,-2.0822585349025362e-19,5.581040188500689e-19)
sum a = (2.236578720117534e-19,-2.527592957699236e-19,4.4024057839667954e-20)
sum e = 7.856885832454013e-10
sum de = -4.0874354487483594e-25
Info: cfl dt = 0.04011286600564361 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6475e+04 | 2592 | 1 | 5.577e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2589.2319602387033 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.29113770483955, dt = 0.04011286600564361 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (1.9%)
patch tree reduce : 1.44 us (0.7%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 187.99 us (92.8%)
LB move op cnt : 0
LB apply : 2.58 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1765199043121505e-19,-2.2439361031692313e-19,5.629257454113697e-19)
sum a = (-3.504858459843288e-19,-8.394872653384322e-20,1.0209482192171839e-19)
sum e = 7.856884294424843e-10
sum de = 4.52364397489937e-25
Info: cfl dt = 0.04011283053496548 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6346e+04 | 2592 | 1 | 5.593e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2582.0198901655535 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.331250570845192, dt = 0.04011283053496548 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (1.6%)
patch tree reduce : 901.00 ns (0.5%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 591.00 ns (0.3%)
LB compute : 188.42 us (94.6%)
LB move op cnt : 0
LB apply : 1.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4321222107664547e-19,-2.243652652900908e-19,5.681857500908514e-19)
sum a = (7.651678373765215e-20,-4.4502067621346543e-20,1.0625627099226523e-19)
sum e = 7.856882701390589e-10
sum de = -4.1359030627651384e-25
Info: cfl dt = 0.04011279727615817 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.1221e+04 | 2592 | 1 | 6.288e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2296.5095477645436 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.371363401380158, dt = 0.04011279727615817 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (1.4%)
patch tree reduce : 761.00 ns (0.3%)
gen split merge : 561.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.3%)
LB compute : 228.96 us (94.7%)
LB move op cnt : 0
LB apply : 2.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3162773184951738e-19,-2.2537336233134517e-19,5.725314500991409e-19)
sum a = (1.1809277613833236e-19,-4.9043652113041693e-20,-4.0697944816279894e-21)
sum e = 7.856881055804363e-10
sum de = 5.428372769879244e-25
Info: cfl dt = 0.040112766226917194 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6032e+04 | 2592 | 1 | 5.631e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2564.5219692095443 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.411476198656317, dt = 0.040112766226917194 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (1.9%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 560.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 191.19 us (93.0%)
LB move op cnt : 0
LB apply : 2.63 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.259998062320828e-19,-2.274302253653959e-19,5.701554558351932e-19)
sum a = (-2.0399217455497764e-19,2.1689866787436447e-20,8.44150296575502e-20)
sum e = 7.85687935991144e-10
sum de = -5.686866711302065e-25
Info: cfl dt = 0.04011273738424315 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5891e+04 | 2592 | 1 | 5.648e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2556.703826933836 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.451588964883236, dt = 0.04011273738424315 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (2.0%)
patch tree reduce : 1.11 us (0.6%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 581.00 ns (0.3%)
LB compute : 187.46 us (93.6%)
LB move op cnt : 0
LB apply : 2.63 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4065377430690953e-19,-2.2513715377440905e-19,5.753162592838096e-19)
sum a = (7.16332231726841e-20,2.0189913887629068e-19,7.215883421855402e-20)
sum e = 7.856877616089874e-10
sum de = -5.945360652724886e-25
Info: cfl dt = 0.04011271074444805 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6274e+04 | 2592 | 1 | 5.601e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2578.008316583213 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.491701702267477, dt = 0.0015978563944329949 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (1.9%)
patch tree reduce : 891.00 ns (0.4%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.4%)
LB compute : 186.63 us (93.5%)
LB move op cnt : 0
LB apply : 2.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3501188157480393e-19,-2.212000706271468e-19,5.751857439639729e-19)
sum a = (4.491955533392281e-19,-1.5789925834944328e-19,-1.0609195355148523e-19)
sum e = 7.856787932807504e-10
sum de = -1.4734154661100805e-24
Info: cfl dt = 0.04011270972854647 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5190e+04 | 2592 | 1 | 5.736e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.28819092577017 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 513 [SPH][rank=0]
Info: time since start : 179.592948791 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000284189 s
sph::RenderFieldGetter compute custom field took : 0.00024253700000000003 s
rho_t_ampl=0.000702928, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000240216, eps_t_phi=3.10774e-12 rad
vx_t_ampl=-1.79809e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 18.86s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 18.49329955866191, dt = 0.04011270972854647 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.12 us (3.6%)
patch tree reduce : 1.51 us (0.5%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 240.77 us (86.5%)
LB move op cnt : 0
LB apply : 3.74 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1665744970714139e-19,-2.2781103463892595e-19,5.707876986461202e-19)
sum a = (-6.957594934114305e-20,2.445416482144468e-20,1.571724648085898e-19)
sum e = 7.856876497302087e-10
sum de = -1.6026624368214911e-24
Info: cfl dt = 0.04011268536759957 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0625e+04 | 2592 | 1 | 8.464e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1706.2078966294648 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.533412268390457, dt = 0.04011268536759957 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (1.5%)
patch tree reduce : 1.37 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 274.83 us (94.2%)
LB move op cnt : 0
LB apply : 2.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2997386115347418e-19,-2.2318504410039087e-19,5.82372432873219e-19)
sum a = (-2.0875413906280987e-19,-2.2331642869147577e-19,1.1555542753474004e-19)
sum e = 7.856874258740405e-10
sum de = 9.305781891221561e-25
Info: cfl dt = 0.0401126632073787 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1334e+04 | 2592 | 1 | 8.272e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1745.6618026308972 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.573524953758056, dt = 0.0401126632073787 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (1.9%)
patch tree reduce : 1.44 us (0.6%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 224.87 us (93.1%)
LB move op cnt : 0
LB apply : 3.00 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4107525253198164e-19,-2.371086142374221e-19,5.861729832586336e-19)
sum a = (2.4092122574511627e-19,8.408928346264179e-22,-1.6007992219904012e-19)
sum e = 7.856872392604536e-10
sum de = 1.1632227364026952e-24
Info: cfl dt = 0.04011264323455182 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1717e+04 | 2592 | 1 | 8.172e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1767.0294983460717 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.613637616965434, dt = 0.04011264323455182 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.64 us (1.8%)
patch tree reduce : 1.59 us (0.6%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 236.21 us (93.5%)
LB move op cnt : 0
LB apply : 2.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2244065677591832e-19,-2.3258450147648725e-19,5.742235204744877e-19)
sum a = (1.7911099216105228e-19,-9.643822509764218e-20,2.0779348717864747e-19)
sum e = 7.85687047980296e-10
sum de = 5.169878828456423e-26
Info: cfl dt = 0.04011262544282623 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1491e+04 | 2592 | 1 | 8.231e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1754.4391220653788 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.653750260199985, dt = 0.04011262544282623 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.62 us (2.0%)
patch tree reduce : 1.49 us (0.6%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 213.92 us (92.8%)
LB move op cnt : 0
LB apply : 2.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1637235624885673e-19,-2.3838989160974167e-19,5.899368502080691e-19)
sum a = (-1.6518002766919522e-19,1.7508219847407525e-19,-5.78495889511246e-20)
sum e = 7.856868531488824e-10
sum de = 1.0339757656912846e-24
Info: cfl dt = 0.040112609825141615 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1402e+04 | 2592 | 1 | 8.254e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1749.4466111303084 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.69386288564281, dt = 0.040112609825141615 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (1.9%)
patch tree reduce : 1.33 us (0.6%)
gen split merge : 912.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.5%)
LB compute : 211.14 us (92.6%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3007163095617122e-19,-2.2592465256335956e-19,5.8228853161079345e-19)
sum a = (2.86592047529343e-19,4.8380390680715556e-21,-6.296092411860119e-20)
sum e = 7.856866550098213e-10
sum de = 3.360421238496675e-24
Info: cfl dt = 0.04011259637379075 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1498e+04 | 2592 | 1 | 8.229e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1754.7876647181247 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.733975495467952, dt = 0.04011259637379075 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.91 us (2.0%)
patch tree reduce : 1.33 us (0.5%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 226.17 us (92.9%)
LB move op cnt : 0
LB apply : 3.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0948574712107037e-19,-2.2914612648247794e-19,5.796604909776827e-19)
sum a = (-2.455122984969738e-19,5.4038837267939026e-21,1.8232764658259962e-20)
sum e = 7.856864538148745e-10
sum de = -4.1359030627651384e-25
Info: cfl dt = 0.040112585080425714 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0967e+04 | 2592 | 1 | 8.370e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1725.2069633566311 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.774088091841744, dt = 0.040112585080425714 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.77 us (2.1%)
patch tree reduce : 1.54 us (0.7%)
gen split merge : 902.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 205.71 us (92.6%)
LB move op cnt : 0
LB apply : 2.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2986787540097066e-19,-2.289185446728386e-19,5.820202991342831e-19)
sum a = (2.516512561923711e-19,-1.7392913164035676e-19,3.2913590690924345e-20)
sum e = 7.856862498161492e-10
sum de = -2.5332406259436473e-24
Info: cfl dt = 0.04011257593606517 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1116e+04 | 2592 | 1 | 8.330e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1733.5600742931954 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.81420067692217, dt = 0.04011257593606517 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (2.0%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 231.50 us (92.6%)
LB move op cnt : 0
LB apply : 3.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0977166217433565e-19,-2.3949041808631883e-19,5.836349909818543e-19)
sum a = (5.0557668729117415e-20,1.274131806723846e-19,8.392217156376865e-21)
sum e = 7.856860432660755e-10
sum de = -2.3781442610899546e-24
Info: cfl dt = 0.040112568931102044 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1003e+04 | 2592 | 1 | 8.360e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1727.2329983066388 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.854313252858233, dt = 0.0016000226401864381 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.70 us (2.1%)
patch tree reduce : 1.42 us (0.7%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.6%)
LB compute : 201.37 us (92.1%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1389606897718554e-19,-2.332389018785729e-19,5.831566109903169e-19)
sum a = (-2.6588785401702895e-19,2.8554689206136394e-19,7.396235970705726e-21)
sum e = 7.85678478687681e-10
sum de = -1.137373342260413e-24
Info: cfl dt = 0.04011256869560718 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1087e+04 | 2592 | 1 | 8.338e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.08251981727184 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 523 [SPH][rank=0]
Info: time since start : 180.65814641100002 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000267324 s
sph::RenderFieldGetter compute custom field took : 0.000233574 s
rho_t_ampl=0.00069563, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000247702, eps_t_phi=3.36753e-12 rad
vx_t_ampl=-4.71239e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 19.22s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 18.85591327549842, dt = 0.04011256869560718 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.17 us (3.8%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 245.31 us (91.4%)
LB move op cnt : 0
LB apply : 3.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2466553598351145e-19,-2.2165564504391573e-19,5.83452496217549e-19)
sum a = (-1.673556111779495e-19,7.237747910706727e-20,-6.721548768633211e-20)
sum e = 7.856859119546008e-10
sum de = -4.03250548619601e-24
Info: cfl dt = 0.04011256389657042 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0258e+04 | 2592 | 1 | 8.566e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1685.752732970335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.89602584419403, dt = 0.04011256389657042 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (1.9%)
patch tree reduce : 1.26 us (0.5%)
gen split merge : 821.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 217.56 us (93.0%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2934041142339505e-19,-2.2303633540889367e-19,5.792598767275513e-19)
sum a = (3.7480505741149135e-19,-5.1809198586297865e-20,6.852538036937043e-20)
sum e = 7.856856550736507e-10
sum de = 4.1359030627651384e-24
Info: cfl dt = 0.04011256122372332 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0669e+04 | 2592 | 1 | 8.451e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1708.6370144515934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.9361384080906, dt = 0.04011256122372332 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (2.1%)
patch tree reduce : 1.46 us (0.7%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 198.97 us (92.4%)
LB move op cnt : 0
LB apply : 2.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0355383136079626e-19,-2.2761508423604156e-19,5.847310623646337e-19)
sum a = (4.5713544723220435e-20,-1.914018813710236e-19,3.711623834246389e-20)
sum e = 7.856854430809629e-10
sum de = 3.2053248736429822e-24
Info: cfl dt = 0.04011256065719387 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0939e+04 | 2592 | 1 | 8.378e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1723.6511360420297 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.97625096931432, dt = 0.04011256065719387 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (1.8%)
patch tree reduce : 1.25 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 204.31 us (92.9%)
LB move op cnt : 0
LB apply : 2.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0833715733812533e-19,-2.3809493901168926e-19,5.855899391602286e-19)
sum a = (1.4108429007676875e-19,-1.2905730616077647e-19,-5.477177390745363e-20)
sum e = 7.856852287819546e-10
sum de = -4.1359030627651384e-25
Info: cfl dt = 0.040112562185039224 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1637e+04 | 2592 | 1 | 8.193e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1762.5384807918676 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.016363529971514, dt = 0.040112562185039224 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.54 us (1.7%)
patch tree reduce : 1.44 us (0.5%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 253.34 us (93.7%)
LB move op cnt : 0
LB apply : 2.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0081627688527918e-19,-2.420196982342418e-19,5.815499712408644e-19)
sum a = (2.0938841038786965e-19,-5.613134500766382e-20,-9.930621263206806e-20)
sum e = 7.856850132037637e-10
sum de = -4.8596860987490376e-24
Info: cfl dt = 0.040112565794617625 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0998e+04 | 2592 | 1 | 8.362e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1726.9501410115142 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.056476092156554, dt = 0.040112565794617625 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (2.0%)
patch tree reduce : 1.10 us (0.5%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.6%)
LB compute : 208.32 us (92.4%)
LB move op cnt : 0
LB apply : 2.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.073366328277448e-20,-2.428051430357407e-19,5.766733490314688e-19)
sum a = (-1.699288466573371e-19,3.5646202838354064e-20,-2.517340940253207e-19)
sum e = 7.856847965874144e-10
sum de = 2.9985297205047253e-24
Info: cfl dt = 0.04011257147271148 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.1472e+04 | 2592 | 1 | 6.250e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2310.485342416125 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.096588657951173, dt = 0.04011257147271148 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.70 us (1.8%)
patch tree reduce : 881.00 ns (0.4%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 190.33 us (92.9%)
LB move op cnt : 0
LB apply : 2.68 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0545993171589819e-19,-2.395253358729963e-19,5.635185104821352e-19)
sum a = (1.534706560050087e-19,-7.949341432914915e-20,1.3714712635919977e-20)
sum e = 7.856845791783918e-10
sum de = 3.101927297073854e-25
Info: cfl dt = 0.04011257920553457 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5173e+04 | 2592 | 1 | 5.738e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2516.6827387217822 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.136701229423885, dt = 0.04011257920553457 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (2.0%)
patch tree reduce : 1.15 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 183.75 us (92.5%)
LB move op cnt : 0
LB apply : 2.71 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (63.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.281394177377366e-20,-2.4502386028097894e-19,5.693925600937862e-19)
sum a = (1.9576307922881345e-19,9.223893601008155e-20,-2.2329924508479676e-19)
sum e = 7.856843612201191e-10
sum de = -1.5509636485369269e-24
Info: cfl dt = 0.040112588978740815 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5056e+04 | 2592 | 1 | 5.753e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2510.1474758474847 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.17681380862942, dt = 0.040112588978740815 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (1.9%)
patch tree reduce : 992.00 ns (0.5%)
gen split merge : 531.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 540.00 ns (0.3%)
LB compute : 181.55 us (94.0%)
LB move op cnt : 0
LB apply : 1.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.404259376038218e-20,-2.378846106966435e-19,5.556818286804815e-19)
sum a = (1.5307957679422057e-20,3.9328734357930633e-20,6.664000785900975e-20)
sum e = 7.856841429537823e-10
sum de = 1.34416849539867e-24
Info: cfl dt = 0.040112600777432846 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5139e+04 | 2592 | 1 | 5.742e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2514.800865907154 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.21692639760816, dt = 0.0016005947267707654 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (1.6%)
patch tree reduce : 781.00 ns (0.4%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.4%)
LB compute : 202.17 us (93.9%)
LB move op cnt : 0
LB apply : 2.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.769376185437917e-20,-2.38886545775543e-19,5.616035993667172e-19)
sum a = (5.296658521237554e-20,1.3155652748608715e-19,2.0844713301497087e-19)
sum e = 7.856781331216479e-10
sum de = 5.583469134732937e-24
Info: cfl dt = 0.040112601289725686 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4644e+04 | 2592 | 1 | 5.806e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.24644333918174 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 533 [SPH][rank=0]
Info: time since start : 181.605102372 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00029662700000000005 s
sph::RenderFieldGetter compute custom field took : 0.000220324 s
rho_t_ampl=0.000682147, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000254319, eps_t_phi=3.52518e-12 rad
vx_t_ampl=-7.34366e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 19.58s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 19.21852699233493, dt = 0.040112601289725686 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.11 us (3.7%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 251.90 us (91.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.544587798732792e-20,-2.3352974650172204e-19,5.700784439717076e-19)
sum a = (9.62252041334216e-21,-3.4005827481739096e-20,6.88005392148796e-20)
sum e = 7.856840051917229e-10
sum de = -9.305781891221561e-25
Info: cfl dt = 0.040112615169823514 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0428e+04 | 2592 | 1 | 8.518e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1695.2051956509608 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.258639593624654, dt = 0.040112615169823514 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.46 us (2.0%)
patch tree reduce : 1.49 us (0.7%)
gen split merge : 1.00 us (0.5%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.4%)
LB compute : 204.96 us (92.5%)
LB move op cnt : 0
LB apply : 2.86 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.593226221587117e-20,-2.3821941065125733e-19,5.700374194554292e-19)
sum a = (1.5574811729136327e-19,-2.3619092955162596e-19,-1.1568655384889614e-19)
sum e = 7.856837398978159e-10
sum de = -4.1359030627651384e-25
Info: cfl dt = 0.040112631052199574 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0806e+04 | 2592 | 1 | 8.414e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1716.271179972473 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.29875220879448, dt = 0.040112631052199574 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (2.1%)
patch tree reduce : 1.62 us (0.7%)
gen split merge : 821.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 199.96 us (92.4%)
LB move op cnt : 0
LB apply : 2.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.708532746426014e-20,-2.5174615041263584e-19,5.616967975192624e-19)
sum a = (2.7280239737415734e-20,-1.0856241557446001e-20,9.212094294905731e-20)
sum e = 7.856835227933528e-10
sum de = 5.686866711302065e-24
Info: cfl dt = 0.040112648911370875 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0794e+04 | 2592 | 1 | 8.417e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1715.5786061805852 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.33886483984668, dt = 0.040112648911370875 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (1.9%)
patch tree reduce : 1.32 us (0.6%)
gen split merge : 852.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 209.47 us (92.5%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (54.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.837030201399265e-20,-2.476615909663474e-19,5.695598652856253e-19)
sum a = (2.794967532764722e-19,-9.370177263453323e-20,2.4436886491976125e-20)
sum e = 7.856833056690645e-10
sum de = 6.824240053562478e-24
Info: cfl dt = 0.040112668730414525 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0917e+04 | 2592 | 1 | 8.384e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1722.4703323724425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.37897748875805, dt = 0.040112668730414525 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (2.0%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.4%)
LB compute : 203.61 us (91.9%)
LB move op cnt : 0
LB apply : 3.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.213229881647775e-20,-2.530865826235621e-19,5.691826006214986e-19)
sum a = (7.334871349227585e-20,1.8218961245641887e-19,-1.9499611115187906e-20)
sum e = 7.856830894103352e-10
sum de = 2.1713491079516976e-24
Info: cfl dt = 0.040112690491790726 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.2003e+04 | 2592 | 1 | 6.171e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2340.0562358090747 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.419090157488466, dt = 0.040112690491790726 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.59 us (1.7%)
patch tree reduce : 891.00 ns (0.4%)
gen split merge : 560.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.4%)
LB compute : 194.75 us (93.9%)
LB move op cnt : 0
LB apply : 2.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.308206261410613e-20,-2.4024012350615955e-19,5.67519213669293e-19)
sum a = (-5.909897014792762e-20,3.2781979317748155e-20,1.1804203133167222e-19)
sum e = 7.856828742314077e-10
sum de = 2.68833699079734e-24
Info: cfl dt = 0.04011271417746459 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6060e+04 | 2592 | 1 | 5.627e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2566.119184371702 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.459202847980258, dt = 0.04011271417746459 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.87 us (1.9%)
patch tree reduce : 1.56 us (0.8%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 187.84 us (92.5%)
LB move op cnt : 0
LB apply : 2.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.832055221071385e-20,-2.4192562560895767e-19,5.750127825996219e-19)
sum a = (1.5389131263510017e-19,-1.6884708159599961e-19,8.608480633010429e-20)
sum e = 7.856826603486288e-10
sum de = -7.237830359838992e-24
Info: cfl dt = 0.04011273976891442 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3767e+04 | 2592 | 1 | 5.922e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2438.37145988233 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.499315562157722, dt = 0.04011273976891442 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (1.7%)
patch tree reduce : 1.14 us (0.5%)
gen split merge : 812.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.3%)
LB compute : 216.23 us (93.5%)
LB move op cnt : 0
LB apply : 2.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.775155437966591e-20,-2.5274479911161275e-19,5.778249345177994e-19)
sum a = (2.40563010333554e-21,4.862294373209452e-20,-4.985241572503354e-21)
sum e = 7.856824479737364e-10
sum de = 8.995589161514176e-24
Info: cfl dt = 0.04011276724714116 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.2219e+04 | 2592 | 1 | 6.139e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2352.10733122726 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.539428301926637, dt = 0.04011276724714116 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (1.6%)
patch tree reduce : 911.00 ns (0.4%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.3%)
LB compute : 190.80 us (94.2%)
LB move op cnt : 0
LB apply : 2.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.096234756403588e-20,-2.464271445079247e-19,5.757984281167964e-19)
sum a = (-3.662670423726037e-21,-1.858064087553246e-20,1.4780938180000266e-19)
sum e = 7.856822373138463e-10
sum de = -1.6543612251060553e-24
Info: cfl dt = 0.040112796592678024 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5997e+04 | 2592 | 1 | 5.635e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2562.5696730148484 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.57954106917378, dt = 0.0015996399976572206 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 us (1.7%)
patch tree reduce : 931.00 ns (0.5%)
gen split merge : 751.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.4%)
LB compute : 186.88 us (93.4%)
LB move op cnt : 0
LB apply : 2.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (58.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.095248842426811e-20,-2.4781358603776713e-19,5.79099377497931e-19)
sum a = (2.2930715909868485e-19,1.243867898278556e-19,1.4907360091831578e-20)
sum e = 7.856777888552992e-10
sum de = -4.342698215903395e-24
Info: cfl dt = 0.040112797801065345 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.8500e+04 | 2592 | 1 | 6.733e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.53560961195768 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 543 [SPH][rank=0]
Info: time since start : 182.538690032 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00028379800000000004 s
sph::RenderFieldGetter compute custom field took : 0.000215027 s
rho_t_ampl=0.000663165, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000259927, eps_t_phi=3.68328e-12 rad
vx_t_ampl=-9.64286e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 19.94s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 19.581140709171436, dt = 0.040112797801065345 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.68 us (3.5%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 255.31 us (92.0%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.1228090233325676e-20,-2.427081948280243e-19,5.7959105572420195e-19)
sum a = (1.3386082700691695e-19,3.57387718806365e-20,5.629808174883312e-20)
sum e = 7.856821052663331e-10
sum de = 2.68833699079734e-24
Info: cfl dt = 0.04011282905840716 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0683e+04 | 2592 | 1 | 8.448e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1709.4144811910844 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.6212535069725, dt = 0.04011282905840716 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (2.1%)
patch tree reduce : 1.33 us (0.6%)
gen split merge : 1.02 us (0.5%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.4%)
LB compute : 195.36 us (92.6%)
LB move op cnt : 0
LB apply : 2.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.808631102733008e-20,-2.430462811625607e-19,5.826794798780216e-19)
sum a = (1.226969944098803e-19,4.542315502619824e-20,1.6770493679866392e-19)
sum e = 7.856818542633336e-10
sum de = 3.1019272970738538e-24
Info: cfl dt = 0.04011286215109029 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1479e+04 | 2592 | 1 | 8.234e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1753.757432704606 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.66136633603091, dt = 0.04011286215109029 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (1.9%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.4%)
LB compute : 232.56 us (93.2%)
LB move op cnt : 0
LB apply : 2.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.327833720058159e-20,-2.410354274474262e-19,5.916410269561801e-19)
sum a = (1.1326508403204833e-20,-9.042321190518969e-20,3.418885629680291e-20)
sum e = 7.856816505544257e-10
sum de = -2.274746684520826e-24
Info: cfl dt = 0.04011289704902771 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1431e+04 | 2592 | 1 | 8.247e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1751.1007017802694 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.701479198182, dt = 0.04011289704902771 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (2.0%)
patch tree reduce : 1.56 us (0.7%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 204.72 us (92.4%)
LB move op cnt : 0
LB apply : 2.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (45.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.5168005656070573e-20,-2.473978589775596e-19,5.9033458496296905e-19)
sum a = (-8.026161365944292e-20,2.0197083748045144e-19,7.647100722130156e-20)
sum e = 7.856814488246054e-10
sum de = 4.239300639334267e-24
Info: cfl dt = 0.040112933731067314 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1555e+04 | 2592 | 1 | 8.214e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1758.0255604866109 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.741592095231027, dt = 0.040112933731067314 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 us (2.2%)
patch tree reduce : 1.47 us (0.7%)
gen split merge : 1.01 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 188.07 us (91.8%)
LB move op cnt : 0
LB apply : 3.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.008114364034193e-20,-2.3341472320443145e-19,5.942500911915157e-19)
sum a = (-1.221021596438916e-19,-2.1388730884815817e-19,-2.1648706833750653e-20)
sum e = 7.856812497816718e-10
sum de = -5.790264287871194e-24
Info: cfl dt = 0.04011297217553205 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1180e+04 | 2592 | 1 | 8.313e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1737.0868160974094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.781705028962094, dt = 0.04011297217553205 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.88 us (2.2%)
patch tree reduce : 1.55 us (0.7%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 209.19 us (92.2%)
LB move op cnt : 0
LB apply : 3.39 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.602949130022899e-20,-2.5033300704592235e-19,5.914137624228453e-19)
sum a = (-1.9041120952487638e-19,-6.639377237413614e-20,-1.0248115547139295e-19)
sum e = 7.856810535950364e-10
sum de = -1.1994118882018901e-23
Info: cfl dt = 0.04011301236033749 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0936e+04 | 2592 | 1 | 8.379e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1723.5035390982373 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.821818001137625, dt = 0.04011301236033749 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.9%)
patch tree reduce : 1.42 us (0.6%)
gen split merge : 922.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 207.62 us (92.6%)
LB move op cnt : 0
LB apply : 2.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.470224791594277e-20,-2.500462703976764e-19,5.856817196851847e-19)
sum a = (2.4664117000038333e-19,2.6512950259375905e-20,-9.208494472714647e-21)
sum e = 7.856808604340758e-10
sum de = -7.651420666115506e-24
Info: cfl dt = 0.040113054263000845 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0857e+04 | 2592 | 1 | 8.400e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1719.1453307078834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.861931013497962, dt = 0.040113054263000845 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (2.1%)
patch tree reduce : 1.53 us (0.7%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 211.05 us (92.4%)
LB move op cnt : 0
LB apply : 2.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.592715941818876e-20,-2.4712508944398464e-19,5.871830625484841e-19)
sum a = (9.846980162055025e-20,-5.676268619124964e-20,-2.813422380826181e-21)
sum e = 7.856806704620441e-10
sum de = -4.652890945610781e-24
Info: cfl dt = 0.04011309786065095 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0717e+04 | 2592 | 1 | 8.438e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1711.3072890053577 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.90204406776096, dt = 0.04011309786065095 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (2.1%)
patch tree reduce : 1.72 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 207.10 us (92.4%)
LB move op cnt : 0
LB apply : 3.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.531917913250969e-20,-2.5106258338873723e-19,5.87198470398094e-19)
sum a = (1.124894983703172e-19,-1.930981636985873e-19,-1.9163585682650737e-20)
sum e = 7.856804838358313e-10
sum de = 1.6543612251060553e-24
Info: cfl dt = 0.04011314313003846 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0867e+04 | 2592 | 1 | 8.397e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1719.6915014142858 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.942157165621612, dt = 0.0015972603863332324 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.88 us (2.1%)
patch tree reduce : 1.56 us (0.7%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 214.07 us (92.6%)
LB move op cnt : 0
LB apply : 2.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.4734203506288756e-20,-2.5411234395690034e-19,5.868399333115497e-19)
sum a = (2.6253246011606503e-20,-6.88705522818602e-20,4.6962204011821064e-20)
sum e = 7.856774744110743e-10
sum de = -5.686866711302065e-24
Info: cfl dt = 0.04011314496659675 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0350e+04 | 2592 | 1 | 8.540e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.32861396551819 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 553 [SPH][rank=0]
Info: time since start : 183.609590574 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000326771 s
sph::RenderFieldGetter compute custom field took : 0.000242908 s
rho_t_ampl=0.000639468, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000264421, eps_t_phi=3.94484e-12 rad
vx_t_ampl=-1.15725e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 20.31s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 19.943754426007946, dt = 0.04011314496659675 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.26 us (3.8%)
patch tree reduce : 1.20 us (0.4%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 247.18 us (91.4%)
LB move op cnt : 0
LB apply : 3.65 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.37482895295119e-20,-2.5676773893435265e-19,5.887765450612263e-19)
sum a = (1.1248621199039462e-19,1.0664480968027362e-19,-6.232942629988564e-20)
sum e = 7.856803677488517e-10
sum de = -1.7577588016751838e-24
Info: cfl dt = 0.040113191940333276 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5784e+04 | 2592 | 1 | 5.661e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2550.77262818035 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.983867570974542, dt = 0.040113191940333276 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (1.7%)
patch tree reduce : 1.25 us (0.6%)
gen split merge : 741.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 180.09 us (85.5%)
LB move op cnt : 0
LB apply : 2.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (59.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.762905011365018e-20,-2.489740889479316e-19,5.840842973153595e-19)
sum a = (9.264305001779901e-20,2.282381228172253e-19,2.0284950099557324e-20)
sum e = 7.856801498274463e-10
sum de = -4.342698215903395e-24
Info: cfl dt = 0.04011324054645267 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5931e+04 | 2592 | 1 | 5.643e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2558.92502558216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.023980762914874, dt = 0.04011324054645267 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (1.9%)
patch tree reduce : 1.13 us (0.6%)
gen split merge : 751.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 180.94 us (92.7%)
LB move op cnt : 0
LB apply : 2.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.4079759797253484e-20,-2.3738384855593893e-19,5.865549555669643e-19)
sum a = (-1.298284388418996e-19,-7.898265344171718e-21,2.7169428209297524e-20)
sum e = 7.856799746526565e-10
sum de = 6.203854594147708e-25
Info: cfl dt = 0.04011329075131807 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6421e+04 | 2592 | 1 | 5.584e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2586.2330582919526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.064094003461328, dt = 0.04011329075131807 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.9%)
patch tree reduce : 641.00 ns (0.3%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.4%)
LB compute : 181.16 us (93.7%)
LB move op cnt : 0
LB apply : 2.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.37482895295119e-20,-2.4243131731954616e-19,5.877828901034931e-19)
sum a = (1.759314195859469e-19,7.49587219281608e-20,1.4254314912130238e-20)
sum e = 7.856798030084583e-10
sum de = -4.756288522179909e-24
Info: cfl dt = 0.040113342530394384 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5969e+04 | 2592 | 1 | 5.639e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2561.0556307804186 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.104207294212646, dt = 0.040113342530394384 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.98 us (1.5%)
patch tree reduce : 981.00 ns (0.4%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.5%)
LB compute : 245.27 us (94.6%)
LB move op cnt : 0
LB apply : 2.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.0668497437605546e-20,-2.377630146395077e-19,5.88095644472695e-19)
sum a = (-2.3047382397120413e-20,7.052214433557424e-20,1.2983478941976588e-19)
sum e = 7.856796354090549e-10
sum de = 0
Info: cfl dt = 0.04011339585862756 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5163e+04 | 2592 | 1 | 5.739e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2516.18213443523 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.14432063674304, dt = 0.04011339585862756 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (2.0%)
patch tree reduce : 901.00 ns (0.4%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 186.68 us (92.4%)
LB move op cnt : 0
LB apply : 2.76 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.605816051065238e-20,-2.35036140898739e-19,5.956219183588051e-19)
sum a = (1.9974617169499197e-19,2.627720705897179e-20,8.78699611126165e-20)
sum e = 7.856794719677296e-10
sum de = 4.549493369041652e-24
Info: cfl dt = 0.04011345071069311 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5839e+04 | 2592 | 1 | 5.655e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2553.811347951111 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.18443403260167, dt = 0.04011345071069311 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (1.7%)
patch tree reduce : 781.00 ns (0.4%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.2%)
LB compute : 192.05 us (94.4%)
LB move op cnt : 0
LB apply : 1.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3214987773172478e-20,-2.348603195728805e-19,5.983050098278224e-19)
sum a = (-2.0371118907159625e-19,-4.2474884705971704e-20,9.667703031987516e-20)
sum e = 7.856793127960012e-10
sum de = 4.1359030627651384e-25
Info: cfl dt = 0.04011350706099633 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5590e+04 | 2592 | 1 | 5.685e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2539.984214646105 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.22454748331236, dt = 0.04011350706099633 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (2.0%)
patch tree reduce : 1.38 us (0.7%)
gen split merge : 871.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 181.34 us (92.5%)
LB move op cnt : 0
LB apply : 2.45 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.93182493938612e-20,-2.3795157068756626e-19,6.023597055344956e-19)
sum a = (-1.9360064123974953e-20,1.3843819260189039e-19,3.7308503514484113e-20)
sum e = 7.856791579980346e-10
sum de = 1.0339757656912846e-23
Info: cfl dt = 0.04011356488361221 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6278e+04 | 2592 | 1 | 5.601e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2578.321302057095 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.264660990373358, dt = 0.04011356488361221 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (2.0%)
patch tree reduce : 1.07 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.5%)
LB compute : 176.26 us (92.6%)
LB move op cnt : 0
LB apply : 2.42 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.651168093996974e-20,-2.287723007662834e-19,6.026655427013051e-19)
sum a = (9.486299965550823e-20,1.4546029429566493e-19,5.959835540375618e-20)
sum e = 7.856790076714958e-10
sum de = -4.1359030627651384e-24
Info: cfl dt = 0.04011362415233108 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5561e+04 | 2592 | 1 | 5.689e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2538.3361742738202 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.30477455525697, dt = 0.0015935875874859562 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (1.8%)
patch tree reduce : 921.00 ns (0.5%)
gen split merge : 650.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 630.00 ns (0.3%)
LB compute : 178.56 us (94.0%)
LB move op cnt : 0
LB apply : 2.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (57.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.417835119493117e-20,-2.2839888584757917e-19,6.032075806107149e-19)
sum a = (-2.471554884582686e-19,-5.573006486075853e-20,6.377231877832411e-20)
sum e = 7.85677212205845e-10
sum de = -3.1019272970738538e-24
Info: cfl dt = 0.040113626536095515 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6169e+04 | 2592 | 1 | 5.614e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.18584966302471 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 563 [SPH][rank=0]
Info: time since start : 184.564826212 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000291759 s
sph::RenderFieldGetter compute custom field took : 0.000241536 s
rho_t_ampl=0.000611911, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000267729, eps_t_phi=4.28058e-12 rad
vx_t_ampl=-1.31068e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 20.67s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 20.306368142844455, dt = 0.040113626536095515 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.18 us (3.7%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 251.38 us (91.3%)
LB move op cnt : 0
LB apply : 3.59 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.426096479743586e-20,-2.3079013803875335e-19,6.057690453776515e-19)
sum a = (-3.7886045023596684e-19,-8.38495446147732e-21,1.0822696095082514e-19)
sum e = 7.85678915094271e-10
sum de = -1.4475660719677984e-24
Info: cfl dt = 0.04011368727155313 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5405e+04 | 2592 | 1 | 5.709e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2529.6602108603 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.34648176938055, dt = 0.04011368727155313 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (2.1%)
patch tree reduce : 1.02 us (0.5%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 591.00 ns (0.3%)
LB compute : 178.37 us (93.4%)
LB move op cnt : 0
LB apply : 2.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.222431745431026e-20,-2.301751741957388e-19,6.110020463005276e-19)
sum a = (-5.674920850327609e-20,-9.249948271364166e-20,4.263209663826469e-20)
sum e = 7.856787437569937e-10
sum de = -7.444625512977249e-24
Info: cfl dt = 0.04011374940784146 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5609e+04 | 2592 | 1 | 5.683e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2541.057333227978 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.386595456652103, dt = 0.04011374940784146 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (1.7%)
patch tree reduce : 1.03 us (0.5%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 205.67 us (94.2%)
LB move op cnt : 0
LB apply : 2.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.766939488160116e-20,-2.3557264242110177e-19,6.113965536049825e-19)
sum a = (1.1109607328313925e-20,-1.0086767792125593e-19,-1.0262372605248248e-20)
sum e = 7.856786078053728e-10
sum de = 4.549493369041652e-24
Info: cfl dt = 0.040113812908857606 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4416e+04 | 2592 | 1 | 5.836e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2474.5646456640084 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.426709206059943, dt = 0.040113812908857606 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (2.1%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 701.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 183.49 us (92.6%)
LB move op cnt : 0
LB apply : 2.68 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.586188592417692e-20,-2.397866030768422e-19,6.0992399296815e-19)
sum a = (-4.2643244280541166e-19,1.047868977963999e-19,6.886830103068905e-20)
sum e = 7.856784763919812e-10
sum de = -5.583469134732937e-24
Info: cfl dt = 0.04011387774744168 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5757e+04 | 2592 | 1 | 5.665e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2549.2872816165686 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.4668230189688, dt = 0.04011387774744168 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.89 us (2.0%)
patch tree reduce : 1.10 us (0.6%)
gen split merge : 751.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.4%)
LB compute : 182.10 us (93.4%)
LB move op cnt : 0
LB apply : 2.44 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.189001491108604e-20,-2.3145275439064547e-19,6.142736840951368e-19)
sum a = (-1.389349976073952e-19,4.8619834267887974e-20,-9.902371413023501e-21)
sum e = 7.856783498406698e-10
sum de = -8.271806125530277e-24
Info: cfl dt = 0.04011394389611095 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5742e+04 | 2592 | 1 | 5.667e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2548.4686972618297 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.50693689671624, dt = 0.04011394389611095 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (1.8%)
patch tree reduce : 881.00 ns (0.5%)
gen split merge : 550.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.3%)
LB compute : 175.22 us (93.7%)
LB move op cnt : 0
LB apply : 2.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.150879484006566e-20,-2.3063157020748844e-19,6.122965623616243e-19)
sum a = (8.230245559137103e-20,-1.321270176867411e-19,1.2564820411378954e-19)
sum e = 7.856782282040508e-10
sum de = -2.481541837659083e-24
Info: cfl dt = 0.040114011327161345 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5535e+04 | 2592 | 1 | 5.692e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2536.948074905084 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.54705084061235, dt = 0.040114011327161345 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (2.0%)
patch tree reduce : 1.33 us (0.7%)
gen split merge : 671.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.6%)
LB compute : 174.05 us (92.4%)
LB move op cnt : 0
LB apply : 2.40 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.381209306136096e-20,-2.395520377098674e-19,6.200555499355625e-19)
sum a = (-2.478669897115092e-19,3.365957173304942e-20,8.732528743685901e-21)
sum e = 7.856781115314247e-10
sum de = 2.274746684520826e-24
Info: cfl dt = 0.04011408001267716 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5600e+04 | 2592 | 1 | 5.684e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2540.5401177395543 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.587164851939512, dt = 0.04011408001267716 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (1.9%)
patch tree reduce : 1.22 us (0.7%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.4%)
LB compute : 174.01 us (93.1%)
LB move op cnt : 0
LB apply : 2.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.987591812297862e-20,-2.3488373502982896e-19,6.180608689292429e-19)
sum a = (-1.4023311767681807e-19,-4.919851955753833e-20,3.033368095036571e-20)
sum e = 7.856779998652928e-10
sum de = 1.6543612251060553e-24
Info: cfl dt = 0.04011414992453991 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5531e+04 | 2592 | 1 | 5.693e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2536.687518995428 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.62727893195219, dt = 0.04011414992453991 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (1.6%)
patch tree reduce : 1.02 us (0.5%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.3%)
LB compute : 198.13 us (94.2%)
LB move op cnt : 0
LB apply : 1.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.372098263240837e-20,-2.3851272005934846e-19,6.197109339286371e-19)
sum a = (6.956937658129788e-20,2.2118684808292697e-20,4.06037443419598e-20)
sum e = 7.856778932414587e-10
sum de = 1.1166938269465874e-23
Info: cfl dt = 0.04011422103444087 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4568e+04 | 2592 | 1 | 5.816e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2483.093071784577 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.66739308187673, dt = 0.001588777804229835 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.9%)
patch tree reduce : 1.26 us (0.7%)
gen split merge : 691.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.5%)
LB compute : 176.73 us (92.8%)
LB move op cnt : 0
LB apply : 2.59 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.002051883957255e-20,-2.3705233498124774e-19,6.19981431687714e-19)
sum a = (5.490563152620143e-19,8.579450384497543e-20,-3.68552951324548e-20)
sum e = 7.856770170863068e-10
sum de = -2.481541837659083e-24
Info: cfl dt = 0.0401142238748451 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6702e+04 | 2592 | 1 | 5.550e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.05420313391737 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 573 [SPH][rank=0]
Info: time since start : 185.368752473 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000300963 s
sph::RenderFieldGetter compute custom field took : 0.00024433 s
rho_t_ampl=0.000581391, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000269817, eps_t_phi=4.61986e-12 rad
vx_t_ampl=-1.42318e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 21.03s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 20.66898185968096, dt = 0.0401142238748451 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.96 us (4.0%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 226.06 us (90.7%)
LB move op cnt : 0
LB apply : 3.62 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.698956834206509e-20,-2.335564483385931e-19,6.18441477526477e-19)
sum a = (2.6950451512183874e-19,-1.1774119767372315e-19,5.635487080208905e-20)
sum e = 7.856778286099096e-10
sum de = 4.1359030627651384e-24
Info: cfl dt = 0.04011429619166501 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5322e+04 | 2592 | 1 | 5.719e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2525.057740030163 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.709096083555806, dt = 0.04011429619166501 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (1.8%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 751.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 185.65 us (93.0%)
LB move op cnt : 0
LB apply : 2.55 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.221774469446509e-20,-2.4235696297379754e-19,6.225716402375289e-19)
sum a = (-1.4318264365734216e-19,2.4121413077442784e-19,1.6880661454538113e-19)
sum e = 7.856777113837669e-10
sum de = -2.0679515313825692e-24
Info: cfl dt = 0.040114369656840794 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5704e+04 | 2592 | 1 | 5.671e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2546.3850293969335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.74921037974747, dt = 0.040114369656840794 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (1.8%)
patch tree reduce : 961.00 ns (0.5%)
gen split merge : 621.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.4%)
LB compute : 188.35 us (93.1%)
LB move op cnt : 0
LB apply : 2.65 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.611255900717364e-20,-2.2549085041357775e-19,6.315986724518148e-19)
sum a = (2.3269377360891337e-19,-3.2938134315511584e-20,8.076889976260834e-20)
sum e = 7.856776203826241e-10
sum de = 4.1359030627651384e-25
Info: cfl dt = 0.0401144442328656 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5897e+04 | 2592 | 1 | 5.647e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2557.1345796420537 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.78932474940431, dt = 0.0401144442328656 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (1.8%)
patch tree reduce : 1.34 us (0.7%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 661.00 ns (0.4%)
LB compute : 176.57 us (93.8%)
LB move op cnt : 0
LB apply : 2.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.924028448459896e-20,-2.32310088752951e-19,6.330728832598097e-19)
sum a = (3.3602413113497355e-20,-5.884435272845636e-20,-1.0024845157029262e-19)
sum e = 7.856775343526614e-10
sum de = -7.237830359838992e-24
Info: cfl dt = 0.04011451989084569 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5679e+04 | 2592 | 1 | 5.674e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2544.995387901927 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.829439193637178, dt = 0.04011451989084569 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.89 us (2.0%)
patch tree reduce : 1.07 us (0.6%)
gen split merge : 681.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.4%)
LB compute : 177.98 us (92.8%)
LB move op cnt : 0
LB apply : 2.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.202056189910971e-20,-2.3518895756513946e-19,6.254207595326564e-19)
sum a = (8.479106678775196e-20,2.0911883737226632e-20,-1.0573373706695403e-19)
sum e = 7.856774534461127e-10
sum de = 5.37667398159468e-24
Info: cfl dt = 0.040114596601667746 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5409e+04 | 2592 | 1 | 5.708e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2529.9540038970326 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.869553713528024, dt = 0.040114596601667746 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (1.7%)
patch tree reduce : 1.45 us (0.6%)
gen split merge : 631.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.6%)
LB compute : 214.07 us (93.8%)
LB move op cnt : 0
LB apply : 2.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.776141351943367e-20,-2.3274265851026185e-19,6.21069273525956e-19)
sum a = (4.808631102733008e-20,1.6095132965348943e-19,7.436148111881704e-20)
sum e = 7.856773776571926e-10
sum de = 5.37667398159468e-24
Info: cfl dt = 0.04011467433609096 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4791e+04 | 2592 | 1 | 5.787e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2495.537415776949 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.909668310129693, dt = 0.04011467433609096 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.04 us (2.0%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.3%)
LB compute : 184.68 us (93.7%)
LB move op cnt : 0
LB apply : 2.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.65585984677659e-20,-2.234808182934239e-19,6.276644836378877e-19)
sum a = (-1.2203150247555592e-20,5.314447336310727e-20,1.5875968320865945e-20)
sum e = 7.856773069757823e-10
sum de = 3.1019272970738538e-24
Info: cfl dt = 0.040114753064756294 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5163e+04 | 2592 | 1 | 5.739e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2516.260413128859 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.949782984465784, dt = 0.040114753064756294 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (1.6%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 194.82 us (93.8%)
LB move op cnt : 0
LB apply : 2.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.859615401977142e-20,-2.235099849152369e-19,6.271282805371129e-19)
sum a = (-7.362394781079272e-20,-1.9391868835921108e-20,2.0878026377377854e-19)
sum e = 7.856772413858358e-10
sum de = -9.926167350636332e-24
Info: cfl dt = 0.04011483275819677 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5509e+04 | 2592 | 1 | 5.696e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2535.5392037451684 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.98989773753054, dt = 0.04011483275819677 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (2.1%)
patch tree reduce : 1.39 us (0.7%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.5%)
LB compute : 181.04 us (92.7%)
LB move op cnt : 0
LB apply : 2.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.240835472997528e-20,-2.25750063629972e-19,6.393726199902029e-19)
sum a = (-1.5297071545928478e-19,-1.1598393438433412e-19,2.563058136527416e-19)
sum e = 7.856771808650389e-10
sum de = 1.8611563782443123e-24
Info: cfl dt = 0.04011491338684751 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4727e+04 | 2592 | 1 | 5.795e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2491.9514834019915 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.030012570288736, dt = 0.0015830062287314206 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (1.9%)
patch tree reduce : 1.30 us (0.7%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.2%)
LB compute : 183.59 us (93.2%)
LB move op cnt : 0
LB apply : 2.78 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.39726715731279e-20,-2.2786320592019706e-19,6.407315934322407e-19)
sum a = (2.593894485175985e-19,4.556963722739142e-20,1.176093438872634e-19)
sum e = 7.856768957868014e-10
sum de = 6.2038545941477076e-24
Info: cfl dt = 0.04011491658712886 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6842e+04 | 2592 | 1 | 5.533e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.98817461268561 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 583 [SPH][rank=0]
Info: time since start : 186.171706021 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000270569 s
sph::RenderFieldGetter compute custom field took : 0.000219793 s
rho_t_ampl=0.000548825, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000270683, eps_t_phi=4.90763e-12 rad
vx_t_ampl=-1.49448e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 21.39s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 21.031595576517468, dt = 0.04011491658712886 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.82 us (3.9%)
patch tree reduce : 1.60 us (0.6%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 227.51 us (90.8%)
LB move op cnt : 0
LB apply : 3.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.3088181269511354e-20,-2.25903701891353e-19,6.453397037644028e-19)
sum a = (-1.0607530635640308e-19,-2.4370676650247178e-20,-3.8725217179997143e-22)
sum e = 7.856771454429184e-10
sum de = -7.444625512977249e-24
Info: cfl dt = 0.04011499814865608 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2791e+04 | 2592 | 1 | 7.905e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1826.9451440364537 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.071710493104597, dt = 0.04011499814865608 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (2.1%)
patch tree reduce : 1.54 us (0.7%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 200.46 us (92.4%)
LB move op cnt : 0
LB apply : 2.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (58.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.497830382944029e-20,-2.282834517527982e-19,6.429574573400125e-19)
sum a = (1.4467055216729457e-20,8.339952880154517e-20,-3.2699531682715246e-20)
sum e = 7.856770838612929e-10
sum de = -3.7223127564886245e-24
Info: cfl dt = 0.04011508059284213 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4445e+04 | 2592 | 1 | 7.525e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1919.1242887075925 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.111825491253253, dt = 0.04011508059284213 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (2.0%)
patch tree reduce : 982.00 ns (0.4%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.4%)
LB compute : 204.78 us (93.2%)
LB move op cnt : 0
LB apply : 2.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (59.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.229661781260723e-20,-2.227853381423059e-19,6.409976094748195e-19)
sum a = (-5.32467491007763e-19,2.0694295860281588e-20,1.510245091573478e-19)
sum e = 7.856770386136491e-10
sum de = 1.8611563782443123e-24
Info: cfl dt = 0.040115163881811286 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2867e+04 | 2592 | 1 | 7.886e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1831.214769601536 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.151940571846094, dt = 0.040115163881811286 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (2.0%)
patch tree reduce : 1.40 us (0.6%)
gen split merge : 1.05 us (0.5%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.4%)
LB compute : 200.02 us (92.6%)
LB move op cnt : 0
LB apply : 2.94 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.439140413661663e-20,-2.2321092434228125e-19,6.507410347623898e-19)
sum a = (1.7324439320173963e-19,-5.599769300699363e-20,1.0117072766704521e-19)
sum e = 7.856769982236341e-10
sum de = -4.963083675318166e-24
Info: cfl dt = 0.040115247985774684 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7309e+04 | 2592 | 1 | 6.947e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2078.68908733164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.192055735727905, dt = 0.040115247985774684 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.87 us (1.7%)
patch tree reduce : 1.28 us (0.6%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 732.00 ns (0.3%)
LB compute : 207.27 us (93.8%)
LB move op cnt : 0
LB apply : 2.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (58.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.327312675405629e-20,-2.269939584306721e-19,6.537995772843742e-19)
sum a = (-2.8462966791806676e-19,-1.2260713245887198e-19,1.574590731245982e-19)
sum e = 7.856769627041439e-10
sum de = -5.790264287871194e-24
Info: cfl dt = 0.04011533287482705 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5376e+04 | 2592 | 1 | 5.712e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2528.1569432256715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.23217098371368, dt = 0.04011533287482705 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (1.7%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 550.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.4%)
LB compute : 183.25 us (93.5%)
LB move op cnt : 0
LB apply : 2.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.392473818760892e-20,-2.332425990559858e-19,6.612451108853116e-19)
sum a = (1.66639180354825e-19,-2.0861259365255021e-19,1.0528302514358178e-19)
sum e = 7.856769319982215e-10
sum de = 4.1359030627651384e-25
Info: cfl dt = 0.040115418519026835 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5332e+04 | 2592 | 1 | 5.718e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2525.7086822833253 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.272286316588506, dt = 0.040115418519026835 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (1.9%)
patch tree reduce : 1.37 us (0.7%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 188.96 us (92.6%)
LB move op cnt : 0
LB apply : 2.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.793321348428825e-20,-2.4334123376061314e-19,6.644220537354722e-19)
sum a = (2.772505125993823e-19,-1.2247266046789885e-19,2.311892331018104e-19)
sum e = 7.85676906044685e-10
sum de = 1.6543612251060553e-24
Info: cfl dt = 0.04011550488840501 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4923e+04 | 2592 | 1 | 5.770e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2502.9370679007816 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.31240173510753, dt = 0.04011550488840501 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (1.8%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 961.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.4%)
LB compute : 194.34 us (93.3%)
LB move op cnt : 0
LB apply : 2.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.434731888430311e-20,-2.46527789893054e-19,6.762217166592942e-19)
sum a = (2.7949243990282382e-19,-1.80951557479026e-19,1.8584401813316514e-19)
sum e = 7.856768847772554e-10
sum de = -1.4475660719677984e-23
Info: cfl dt = 0.0401155919529749 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5081e+04 | 2592 | 1 | 5.750e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2511.7411052537145 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.352517239995937, dt = 0.0401155919529749 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (2.0%)
patch tree reduce : 1.29 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.4%)
LB compute : 207.96 us (93.4%)
LB move op cnt : 0
LB apply : 2.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.30421719505951e-20,-2.549511924321413e-19,6.827674363612596e-19)
sum a = (-1.2509831113956745e-19,2.3662962436370463e-21,1.6760277536496292e-19)
sum e = 7.856768681251912e-10
sum de = 9.719372197498075e-24
Info: cfl dt = 0.04011567968274192 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4581e+04 | 2592 | 1 | 5.814e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2483.8576920678615 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.392632831948912, dt = 0.001576461405065288 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.4%)
patch tree reduce : 1.35 us (0.5%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 284.06 us (94.9%)
LB move op cnt : 0
LB apply : 2.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.166563286747004e-20,-2.512753764887249e-19,6.826657765421826e-19)
sum a = (2.661950278404185e-19,-3.481638388451172e-20,6.72281523416336e-20)
sum e = 7.856768472504735e-10
sum de = -2.0679515313825692e-25
Info: cfl dt = 0.04011568314329998 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6179e+04 | 2592 | 1 | 5.613e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.1094872063372 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 593 [SPH][rank=0]
Info: time since start : 187.050518188 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000290648 s
sph::RenderFieldGetter compute custom field took : 0.000216459 s
rho_t_ampl=0.000515123, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000270355, eps_t_phi=5.05107e-12 rad
vx_t_ampl=-1.52537e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 21.76s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 21.394209293353978, dt = 0.04011568314329998 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.75 us (3.9%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.4%)
LB compute : 228.40 us (90.9%)
LB move op cnt : 0
LB apply : 3.50 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.076799704416314e-20,-2.5270864893246425e-19,6.852835614402201e-19)
sum a = (-1.427965967158105e-19,1.7786619874084205e-19,3.2602320812267174e-19)
sum e = 7.856768602640918e-10
sum de = 1.2407709188295415e-24
Info: cfl dt = 0.04011577152553547 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4239e+04 | 2592 | 1 | 7.570e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1907.6518690114026 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.434324976497276, dt = 0.04011577152553547 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.54 us (2.1%)
patch tree reduce : 1.36 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.4%)
LB compute : 201.97 us (92.5%)
LB move op cnt : 0
LB apply : 2.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (59.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.476797551439456e-20,-2.4129176508138824e-19,7.035531041976731e-19)
sum a = (3.168655888548455e-19,3.7628256760996993e-19,-3.5960680038533305e-20)
sum e = 7.856768504383401e-10
sum de = -2.481541837659083e-24
Info: cfl dt = 0.04011586051906013 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3084e+04 | 2592 | 1 | 7.835e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1843.3351664379466 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.47444074802281, dt = 0.04011586051906013 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.32 us (1.9%)
patch tree reduce : 1.60 us (0.7%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.4%)
LB compute : 213.30 us (92.8%)
LB move op cnt : 0
LB apply : 3.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.274923003304468e-20,-2.222336371128012e-19,6.948498790963971e-19)
sum a = (5.6723430960758285e-21,1.195329037651915e-19,-7.112384587607687e-20)
sum e = 7.85676847337409e-10
sum de = 4.756288522179909e-24
Info: cfl dt = 0.04011595008661281 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3187e+04 | 2592 | 1 | 7.810e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1849.0347845566982 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.51455660854187, dt = 0.04011595008661281 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.21 us (1.9%)
patch tree reduce : 1.48 us (0.7%)
gen split merge : 841.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.4%)
LB compute : 204.51 us (92.7%)
LB move op cnt : 0
LB apply : 2.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.871729597246727e-20,-2.225840473720473e-19,6.912913781171682e-19)
sum a = (-2.1412387845757603e-19,2.6331804612920125e-19,2.0820119636594115e-19)
sum e = 7.856768485126048e-10
sum de = 9.512577044359818e-24
Info: cfl dt = 0.040116040198319734 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2649e+04 | 2592 | 1 | 7.939e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1819.110115942014 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.554672558628482, dt = 0.040116040198319734 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.23 us (1.7%)
patch tree reduce : 1.36 us (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 232.86 us (93.7%)
LB move op cnt : 0
LB apply : 2.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.204028017864525e-20,-2.0913166195641736e-19,7.052462804061781e-19)
sum a = (-3.399061674185324e-20,1.6888513860864034e-20,1.453169538813569e-19)
sum e = 7.856768538777415e-10
sum de = -1.8611563782443123e-24
Info: cfl dt = 0.04011613082429086 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3075e+04 | 2592 | 1 | 7.837e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1842.84973681241 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.594788598826803, dt = 0.04011613082429086 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (1.5%)
patch tree reduce : 1.61 us (0.6%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 244.83 us (93.9%)
LB move op cnt : 0
LB apply : 2.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.97003776737615e-20,-2.134047774507644e-19,7.098145009393931e-19)
sum a = (-1.1960081372531063e-19,-1.0954402901501005e-20,9.232454772675687e-20)
sum e = 7.856768633362866e-10
sum de = 2.895132143935597e-24
Info: cfl dt = 0.04011622193468618 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3237e+04 | 2592 | 1 | 7.799e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1851.866985850379 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.634904729651094, dt = 0.04011622193468618 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.65 us (1.8%)
patch tree reduce : 1.58 us (0.6%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 235.98 us (93.4%)
LB move op cnt : 0
LB apply : 2.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.594449952668161e-20,-2.1439890737734774e-19,7.124552878370332e-19)
sum a = (-1.1976184634151753e-20,1.2286637135010938e-19,7.827490343653139e-20)
sum e = 7.856768767881011e-10
sum de = 1.0132962503774589e-23
Info: cfl dt = 0.040116313499724186 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3119e+04 | 2592 | 1 | 7.826e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1845.317951026674 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.67502095158578, dt = 0.040116313499724186 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (1.8%)
patch tree reduce : 1.20 us (0.5%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 230.99 us (93.1%)
LB move op cnt : 0
LB apply : 2.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.467595687656205e-20,-2.067864190841594e-19,7.153135790782145e-19)
sum a = (-1.291495959891397e-19,-5.526440664934426e-20,4.6999722381523693e-20)
sum e = 7.856768941293724e-10
sum de = -2.895132143935597e-24
Info: cfl dt = 0.040116405489690796 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3187e+04 | 2592 | 1 | 7.810e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1849.0890921682242 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.715137265085502, dt = 0.040116405489690796 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (1.8%)
patch tree reduce : 1.64 us (0.7%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 230.79 us (93.3%)
LB move op cnt : 0
LB apply : 2.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.214261206068548e-20,-2.125794852927041e-19,7.165717165152002e-19)
sum a = (-1.7021250232440563e-19,-2.018010577661205e-20,1.2128324231222199e-19)
sum e = 7.856769152531528e-10
sum de = 1.0960143116327617e-23
Info: cfl dt = 0.040116497874948545 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3079e+04 | 2592 | 1 | 7.836e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1843.0763981438847 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.755253670575193, dt = 0.0015693396152904882 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.18 us (1.6%)
patch tree reduce : 1.58 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 244.37 us (93.8%)
LB move op cnt : 0
LB apply : 2.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.308908947839126e-20,-2.119000262437087e-19,7.182520450153874e-19)
sum a = (-3.1391911818065564e-20,-8.436779132365968e-20,-7.051642362985134e-21)
sum e = 7.856768636742231e-10
sum de = -3.9291079096268815e-24
Info: cfl dt = 0.04011650149647647 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3943e+04 | 2592 | 1 | 7.636e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.98366034456659 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 603 [SPH][rank=0]
Info: time since start : 188.06121607 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00027368300000000004 s
sph::RenderFieldGetter compute custom field took : 0.00022124500000000001 s
rho_t_ampl=0.000481168, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000268893, eps_t_phi=5.35083e-12 rad
vx_t_ampl=-1.51762e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 22.12s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 21.756823010190484, dt = 0.04011650149647647 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.44 us (3.5%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 276.00 us (92.2%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.372664718337364e-20,-2.1533881203520834e-19,7.178684572847182e-19)
sum a = (-4.880726062284816e-20,1.1587364809560378e-20,-8.429274885960706e-20)
sum e = 7.856769309064007e-10
sum de = -4.1359030627651384e-24
Info: cfl dt = 0.040116594254951655 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8404e+04 | 2592 | 1 | 9.126e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1582.5705922843074 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.79693951168696, dt = 0.040116594254951655 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.81 us (1.8%)
patch tree reduce : 1.43 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 251.28 us (93.7%)
LB move op cnt : 0
LB apply : 2.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.627030524345794e-20,-2.1295495419885995e-19,7.129375977979277e-19)
sum a = (2.0475173911458615e-19,5.9195148110349646e-21,1.0547004230514494e-19)
sum e = 7.856769645584621e-10
sum de = 2.895132143935597e-24
Info: cfl dt = 0.04011668735490503 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3116e+04 | 2592 | 1 | 7.827e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1845.1197327699906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.83705610594191, dt = 0.04011668735490503 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.32 us (1.8%)
patch tree reduce : 1.44 us (0.6%)
gen split merge : 801.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 230.70 us (93.7%)
LB move op cnt : 0
LB apply : 2.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.345342354535875e-20,-2.1282637458438864e-19,7.209750249593001e-19)
sum a = (-2.2987241644537023e-19,4.2091081103859834e-20,6.04262817711251e-20)
sum e = 7.85676996470789e-10
sum de = -1.1166938269465874e-23
Info: cfl dt = 0.040116780760595945 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3152e+04 | 2592 | 1 | 7.819e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1847.1305289381023 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.87717279329682, dt = 0.040116780760595945 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.63 us (1.9%)
patch tree reduce : 1.27 us (0.5%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.5%)
LB compute : 231.49 us (93.7%)
LB move op cnt : 0
LB apply : 2.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.128532100532957e-20,-2.1041335012622727e-19,7.224956296279819e-19)
sum a = (-2.0595989453362813e-19,7.053535404237246e-20,3.92014514876266e-21)
sum e = 7.856770317246874e-10
sum de = -2.274746684520826e-24
Info: cfl dt = 0.040116874442827806 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2861e+04 | 2592 | 1 | 7.888e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1830.9621866325483 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.917289574057413, dt = 0.040116874442827806 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (1.5%)
patch tree reduce : 1.39 us (0.6%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.4%)
LB compute : 233.29 us (93.9%)
LB move op cnt : 0
LB apply : 2.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.879798550836925e-20,-2.0701646567874067e-19,7.215194714514737e-19)
sum a = (1.2390514982892227e-19,-6.317152660504569e-20,8.481718523165365e-20)
sum e = 7.856770701783274e-10
sum de = 3.1019272970738538e-24
Info: cfl dt = 0.04011696837248224 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3325e+04 | 2592 | 1 | 7.778e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1856.7896971073828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.95740644850024, dt = 0.04011696837248224 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (1.6%)
patch tree reduce : 1.24 us (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 230.31 us (93.6%)
LB move op cnt : 0
LB apply : 2.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.729565577930587e-20,-2.122241454635741e-19,7.265447479887422e-19)
sum a = (1.7358781990365023e-19,3.115009459164437e-19,1.4698298339159007e-20)
sum e = 7.85677111709427e-10
sum de = -1.34416849539867e-23
Info: cfl dt = 0.04011706252057054 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3035e+04 | 2592 | 1 | 7.846e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1840.6215485857228 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.997523416872724, dt = 0.04011706252057054 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.82 us (1.5%)
patch tree reduce : 1.25 us (0.5%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 234.80 us (93.8%)
LB move op cnt : 0
LB apply : 2.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.94346350044717e-20,-1.922129673174361e-19,7.25727921958257e-19)
sum a = (1.777155130864227e-19,1.3423719453258289e-20,5.318388283088879e-20)
sum e = 7.856771561932544e-10
sum de = -5.37667398159468e-24
Info: cfl dt = 0.040117156858241354 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3234e+04 | 2592 | 1 | 7.799e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1851.7528038520634 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.037640479393296, dt = 0.040117156858241354 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (1.7%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 801.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 229.81 us (93.4%)
LB move op cnt : 0
LB apply : 2.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.234919989136867e-20,-1.976609636341089e-19,7.286334724277021e-19)
sum a = (-7.191667344100745e-20,-4.8130933904716494e-20,8.200595286186778e-21)
sum e = 7.85677203503171e-10
sum de = 9.305781891221561e-24
Info: cfl dt = 0.04011725135678904 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3192e+04 | 2592 | 1 | 7.809e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1849.4255682876344 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.077757636251537, dt = 0.04011725135678904 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (1.8%)
patch tree reduce : 1.35 us (0.5%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 237.20 us (93.7%)
LB move op cnt : 0
LB apply : 2.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.011820202837033e-20,-2.0081958553720777e-19,7.280601569688581e-19)
sum a = (1.4560306247032936e-20,9.203951147998406e-20,-2.321964200343179e-20)
sum e = 7.856772535110345e-10
sum de = -5.583469134732937e-24
Info: cfl dt = 0.04011734598766163 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3144e+04 | 2592 | 1 | 7.820e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1846.7425370438093 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.117874887608327, dt = 0.0015618394186667217 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.93 us (1.6%)
patch tree reduce : 1.43 us (0.6%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 233.32 us (93.7%)
LB move op cnt : 0
LB apply : 2.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.843557550800449e-20,-1.9787293513911594e-19,7.273936448381814e-19)
sum a = (-1.3653758345386614e-19,-2.732047221662431e-21,3.566599311394822e-20)
sum e = 7.856769320872685e-10
sum de = -2.895132143935597e-24
Info: cfl dt = 0.040117349673964076 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3761e+04 | 2592 | 1 | 7.678e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.23421333442306 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 613 [SPH][rank=0]
Info: time since start : 189.088402163 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000300983 s
sph::RenderFieldGetter compute custom field took : 0.00021695900000000002 s
rho_t_ampl=0.000447792, rho_t_phi=3.14159 rad
eps_t_ampl=-0.00026638, eps_t_phi=5.50537e-12 rad
vx_t_ampl=-1.47387e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 22.48s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 22.119436727026994, dt = 0.040117349673964076 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.21 us (3.5%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 270.07 us (92.1%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.373979270306399e-20,-1.9805039965493575e-19,7.288704549084267e-19)
sum a = (2.115598859217207e-19,3.589343071703258e-21,-1.5401474142211733e-19)
sum e = 7.856772869197922e-10
sum de = -6.203854594147708e-25
Info: cfl dt = 0.04011744440697534 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8748e+04 | 2592 | 1 | 9.016e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1601.7821427963322 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.159554076700957, dt = 0.04011744440697534 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (1.9%)
patch tree reduce : 1.22 us (0.5%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 217.35 us (92.5%)
LB move op cnt : 0
LB apply : 3.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.824779774797693e-20,-1.977772193238705e-19,7.188870329047102e-19)
sum a = (8.513120710973997e-20,1.7584795067088175e-19,3.548147401845454e-20)
sum e = 7.856773527174613e-10
sum de = 2.481541837659083e-24
Info: cfl dt = 0.04011753921995149 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0521e+04 | 2592 | 1 | 8.492e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1700.595029103682 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.19967152110793, dt = 0.04011753921995149 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.42 us (2.0%)
patch tree reduce : 1.37 us (0.6%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 201.49 us (92.7%)
LB move op cnt : 0
LB apply : 2.76 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.723559273181935e-20,-1.8726696553393884e-19,7.2411151427435915e-19)
sum a = (8.259001383459761e-20,-6.424768765547804e-20,2.2706940959791797e-20)
sum e = 7.856774101040721e-10
sum de = 1.5923226791645783e-23
Info: cfl dt = 0.04011763407948157 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0538e+04 | 2592 | 1 | 8.488e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1701.5276621159708 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.239789060327883, dt = 0.04011763407948157 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (1.9%)
patch tree reduce : 1.51 us (0.7%)
gen split merge : 872.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 213.37 us (92.8%)
LB move op cnt : 0
LB apply : 2.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.431728736055984e-20,-1.94659677169804e-19,7.247662216073355e-19)
sum a = (-1.1839430149622995e-19,-4.8130125147157417e-20,-5.792484717554976e-20)
sum e = 7.856774696795829e-10
sum de = -5.790264287871194e-24
Info: cfl dt = 0.040117728957742904 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0547e+04 | 2592 | 1 | 8.485e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1702.0727366712504 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.279906694407366, dt = 0.040117728957742904 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (1.9%)
patch tree reduce : 1.28 us (0.6%)
gen split merge : 852.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.4%)
LB compute : 212.45 us (93.1%)
LB move op cnt : 0
LB apply : 2.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.309849451371908e-20,-1.9626877093940192e-19,7.208250300026478e-19)
sum a = (-4.944752959126667e-19,-2.0716839656305257e-19,7.238905506744734e-21)
sum e = 7.856775312884207e-10
sum de = 2.274746684520826e-24
Info: cfl dt = 0.040117823827077556 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0497e+04 | 2592 | 1 | 8.499e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1699.2661245828228 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.32002442336511, dt = 0.040117823827077556 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (1.8%)
patch tree reduce : 1.17 us (0.5%)
gen split merge : 761.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.4%)
LB compute : 215.96 us (93.3%)
LB move op cnt : 0
LB apply : 2.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.002709159941773e-20,-2.0776206312367815e-19,7.224225500224577e-19)
sum a = (-2.771502780117433e-19,-1.20394294752714e-19,-7.623622826952769e-20)
sum e = 7.856775947977369e-10
sum de = -7.031035206700735e-24
Info: cfl dt = 0.04011791866002845 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0660e+04 | 2592 | 1 | 8.454e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1708.3300615826731 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.360142247192186, dt = 0.04011791866002845 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.72 us (2.1%)
patch tree reduce : 1.13 us (0.5%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 205.34 us (92.6%)
LB move op cnt : 0
LB apply : 2.81 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.70402263542238e-20,-2.1086194098566074e-19,7.17689690862422e-19)
sum a = (-2.290656101743745e-19,-9.342637664473842e-20,5.153981373153843e-20)
sum e = 7.85677660073118e-10
sum de = 1.2200914035157158e-23
Info: cfl dt = 0.040118013429346316 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0578e+04 | 2592 | 1 | 8.477e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1703.788447751144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.400260165852217, dt = 0.040118013429346316 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (2.0%)
patch tree reduce : 1.60 us (0.7%)
gen split merge : 931.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 200.88 us (92.4%)
LB move op cnt : 0
LB apply : 2.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0507213888503262e-19,-2.1406821539763716e-19,7.223204202316549e-19)
sum a = (1.5918813547533385e-19,1.4938272031684665e-19,-6.60332436720462e-20)
sum e = 7.856777269802906e-10
sum de = 8.271806125530277e-25
Info: cfl dt = 0.04011810810799686 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9922e+04 | 2592 | 1 | 8.663e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1667.2140361370045 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.440378179281563, dt = 0.04011810810799686 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.63 us (2.1%)
patch tree reduce : 1.73 us (0.8%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 201.97 us (92.3%)
LB move op cnt : 0
LB apply : 3.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.134821632829872e-20,-2.032005677911239e-19,7.173128926754186e-19)
sum a = (1.395002549540806e-19,1.1726745830542893e-19,-2.819177214815078e-19)
sum e = 7.856777953848772e-10
sum de = 1.6336817097922297e-23
Info: cfl dt = 0.04011820266916922 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0460e+04 | 2592 | 1 | 8.509e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1697.236898291835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.48049628738956, dt = 0.0015541564739436353 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (2.0%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 912.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.4%)
LB compute : 210.95 us (92.6%)
LB move op cnt : 0
LB apply : 2.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (56.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.157169016303482e-20,-2.036688769300929e-19,7.125443100136413e-19)
sum a = (2.2952406017357573e-19,-5.969005638681712e-20,-2.7415373273493614e-21)
sum e = 7.856770362410841e-10
sum de = -8.478601278668534e-24
Info: cfl dt = 0.0401182063295951 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0909e+04 | 2592 | 1 | 8.386e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.71844910292894 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 623 [SPH][rank=0]
Info: time since start : 190.17504727800002 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000274765 s
sph::RenderFieldGetter compute custom field took : 0.00021611900000000002 s
rho_t_ampl=0.000415761, rho_t_phi=3.14159 rad
eps_t_ampl=-0.00026292, eps_t_phi=5.66613e-12 rad
vx_t_ampl=-1.3975e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 22.84s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 22.482050443863503, dt = 0.0401182063295951 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.10 us (3.5%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 268.78 us (91.9%)
LB move op cnt : 0
LB apply : 3.66 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.238954465931965e-20,-2.0619815707801587e-19,7.126512661904726e-19)
sum a = (2.8768969842348795e-20,-1.3586418366785303e-19,-8.133174874612962e-20)
sum e = 7.856778398474337e-10
sum de = 6.617444900424222e-24
Info: cfl dt = 0.04011830073635335 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9802e+04 | 2592 | 1 | 8.698e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1660.5408389245263 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.522168650193098, dt = 0.04011830073635335 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (2.3%)
patch tree reduce : 1.55 us (0.7%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 204.19 us (92.3%)
LB move op cnt : 0
LB apply : 2.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.497263927847503e-20,-2.1318500079344123e-19,7.078119254762807e-19)
sum a = (3.914103135653556e-19,-1.5334762215665677e-20,7.497530842459577e-21)
sum e = 7.856779248759952e-10
sum de = -2.0679515313825692e-24
Info: cfl dt = 0.04011839497596071 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0294e+04 | 2592 | 1 | 8.556e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1687.9529486195293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.56228695092945, dt = 0.04011839497596071 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (2.3%)
patch tree reduce : 1.45 us (0.7%)
gen split merge : 1.09 us (0.5%)
split / merge op : 0/0
apply split merge : 1.07 us (0.5%)
LB compute : 202.32 us (92.0%)
LB move op cnt : 0
LB apply : 3.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.195483430065793e-20,-2.1136516791130725e-19,7.098945542563167e-19)
sum a = (1.5484600600261242e-20,-8.737693428996702e-20,1.4600794566268936e-20)
sum e = 7.856779970108064e-10
sum de = -1.6543612251060553e-24
Info: cfl dt = 0.040118489018031486 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0601e+04 | 2592 | 1 | 8.470e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1705.064503587565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.60240534590541, dt = 0.040118489018031486 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (2.0%)
patch tree reduce : 1.63 us (0.7%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.5%)
LB compute : 207.06 us (92.6%)
LB move op cnt : 0
LB apply : 2.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.910599701221275e-20,-2.163230828220239e-19,7.106228018426198e-19)
sum a = (-5.852631844641639e-20,9.484330705081585e-20,-8.0746383238559e-20)
sum e = 7.856780701037107e-10
sum de = 5.790264287871194e-24
Info: cfl dt = 0.04011858283673339 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0940e+04 | 2592 | 1 | 8.378e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1723.9583487677814 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.64252383492344, dt = 0.04011858283673339 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.10 us (1.8%)
patch tree reduce : 1.44 us (0.6%)
gen split merge : 882.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 212.99 us (93.1%)
LB move op cnt : 0
LB apply : 3.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.316796259653342e-20,-2.0886135720778437e-19,7.054707790250587e-19)
sum a = (-5.58684586840221e-22,2.274859141001779e-19,5.470991084281725e-20)
sum e = 7.856781440220682e-10
sum de = -4.1359030627651384e-25
Info: cfl dt = 0.0401186764064762 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0806e+04 | 2592 | 1 | 8.414e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1716.5309619220402 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.682642417760174, dt = 0.0401186764064762 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.88 us (2.1%)
patch tree reduce : 1.53 us (0.7%)
gen split merge : 971.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 216.34 us (92.4%)
LB move op cnt : 0
LB apply : 2.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.172195543059402e-20,-1.9707598800788796e-19,7.103828255118499e-19)
sum a = (1.6942849531412286e-19,6.321888385322707e-20,1.2583911484436242e-20)
sum e = 7.856782186365195e-10
sum de = 5.997059441009451e-24
Info: cfl dt = 0.04011876970193193 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0514e+04 | 2592 | 1 | 8.494e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1700.2584913669973 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.72276109416665, dt = 0.04011876970193193 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (2.0%)
patch tree reduce : 1.56 us (0.7%)
gen split merge : 851.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 203.65 us (92.9%)
LB move op cnt : 0
LB apply : 2.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.133699487521109e-20,-1.978392497449094e-19,7.10042656890371e-19)
sum a = (-9.350243836755616e-20,1.1247432453801838e-19,-1.320482134426949e-19)
sum e = 7.85678293817569e-10
sum de = -8.68539643180679e-24
Info: cfl dt = 0.04011886269804096 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0555e+04 | 2592 | 1 | 8.483e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1702.55817737787 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.76287986386858, dt = 0.04011886269804096 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.19 us (1.9%)
patch tree reduce : 1.74 us (0.8%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 204.67 us (92.6%)
LB move op cnt : 0
LB apply : 2.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.024308446542873e-20,-1.923275798172364e-19,7.018438012899812e-19)
sum a = (5.687902051021838e-20,-1.1717893144626417e-19,-1.0283204971115291e-19)
sum e = 7.856783694369118e-10
sum de = -8.271806125530277e-25
Info: cfl dt = 0.040118955370018125 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0410e+04 | 2592 | 1 | 8.523e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1694.4699317558257 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.80299872656662, dt = 0.040118955370018125 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.21 us (1.8%)
patch tree reduce : 1.77 us (0.8%)
gen split merge : 872.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 217.23 us (92.8%)
LB move op cnt : 0
LB apply : 2.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.511633178618905e-20,-2.0164734248021e-19,6.983043465076809e-19)
sum a = (2.5302331981005224e-19,-2.916749475764906e-20,-5.84790586822618e-20)
sum e = 7.856784453677809e-10
sum de = 6.2038545941477076e-24
Info: cfl dt = 0.04011904769335858 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5171e+04 | 2592 | 1 | 5.738e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2516.9385131431036 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.84311768193664, dt = 0.001546478763369663 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.6%)
patch tree reduce : 861.00 ns (0.4%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 611.00 ns (0.3%)
LB compute : 210.57 us (94.5%)
LB move op cnt : 0
LB apply : 2.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.05811274930155e-20,-1.9992815498320537e-19,6.991036077191272e-19)
sum a = (4.957339794230185e-20,7.944386990526732e-20,2.3517572380881087e-20)
sum e = 7.856771585890211e-10
sum de = 2.274746684520826e-24
Info: cfl dt = 0.04011905124480514 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.8350e+04 | 2592 | 1 | 6.759e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.3722642461526 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 633 [SPH][rank=0]
Info: time since start : 191.209287087 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000280753 s
sph::RenderFieldGetter compute custom field took : 0.00023984300000000003 s
rho_t_ampl=0.000385757, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000258637, eps_t_phi=6.01474e-12 rad
vx_t_ampl=-1.29253e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 23.21s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 22.84466416070001, dt = 0.04011905124480514 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.56 us (4.1%)
patch tree reduce : 1.51 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 235.92 us (90.7%)
LB move op cnt : 0
LB apply : 3.57 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.933230312243147e-20,-1.9666108254266104e-19,7.001105134349147e-19)
sum a = (2.278118562339066e-19,-1.142466332854905e-20,-6.83171329238392e-20)
sum e = 7.856784940063453e-10
sum de = 0
Info: cfl dt = 0.040119143177277 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9740e+04 | 2592 | 1 | 8.716e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1657.1251991217102 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.884783211944814, dt = 0.040119143177277 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (2.1%)
patch tree reduce : 1.08 us (0.5%)
gen split merge : 711.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.5%)
LB compute : 193.52 us (92.6%)
LB move op cnt : 0
LB apply : 2.75 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (57.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.6245938270679944e-20,-1.9893320346164138e-19,6.955275279736175e-19)
sum a = (-1.2707609565673086e-19,-7.34512074661116e-20,-9.827378790731344e-20)
sum e = 7.856785852146348e-10
sum de = -8.68539643180679e-24
Info: cfl dt = 0.04011923471521753 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1215e+04 | 2592 | 1 | 8.304e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1739.3473201391375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.924902355122093, dt = 0.04011923471521753 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (1.9%)
patch tree reduce : 1.07 us (0.5%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.6%)
LB compute : 208.29 us (92.9%)
LB move op cnt : 0
LB apply : 2.85 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.845812606302265e-20,-2.0312867823031723e-19,6.9098394114497675e-19)
sum a = (1.7169691905569028e-20,-1.5819932024128158e-19,1.5450380266072142e-19)
sum e = 7.856786613707592e-10
sum de = 3.308722450212111e-24
Info: cfl dt = 0.040119325831834904 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0875e+04 | 2592 | 1 | 8.395e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1720.4135414869072 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.96502158983731, dt = 0.040119325831834904 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (2.1%)
patch tree reduce : 1.43 us (0.7%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.6%)
LB compute : 196.99 us (92.5%)
LB move op cnt : 0
LB apply : 2.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.468536191188987e-20,-2.1117209309085513e-19,7.022531512895878e-19)
sum a = (-1.3323312844170236e-19,-4.2256273044656244e-20,-7.027949896778662e-20)
sum e = 7.856787373059286e-10
sum de = -1.4475660719677984e-24
Info: cfl dt = 0.04011941650381718 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0862e+04 | 2592 | 1 | 8.399e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1719.6830167566377 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.005140915669145, dt = 0.04011941650381718 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (2.0%)
patch tree reduce : 1.36 us (0.6%)
gen split merge : 861.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 205.31 us (92.8%)
LB move op cnt : 0
LB apply : 2.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (58.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.330225006891964e-20,-2.1053289219591146e-19,6.949245015390239e-19)
sum a = (-3.0804224928408494e-19,-1.8352018432406902e-20,5.613579128868129e-20)
sum e = 7.856788129399012e-10
sum de = -4.342698215903395e-24
Info: cfl dt = 0.04011950670817562 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1212e+04 | 2592 | 1 | 8.304e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1739.1911705833056 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.045260332172962, dt = 0.04011950670817562 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (1.8%)
patch tree reduce : 851.00 ns (0.4%)
gen split merge : 531.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 205.35 us (93.4%)
LB move op cnt : 0
LB apply : 2.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.920832889425298e-20,-2.107986781721509e-19,6.997124956353249e-19)
sum a = (-2.4688929168453886e-20,7.642373810609384e-22,-5.999461887863927e-20)
sum e = 7.856788881585154e-10
sum de = -4.342698215903395e-24
Info: cfl dt = 0.040119596422167 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1114e+04 | 2592 | 1 | 8.331e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1733.6943098163486 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.08537983888114, dt = 0.040119596422167 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (2.1%)
patch tree reduce : 1.11 us (0.5%)
gen split merge : 871.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.6%)
LB compute : 186.79 us (92.2%)
LB move op cnt : 0
LB apply : 2.87 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.420645865207171e-20,-2.1038582669437558e-19,6.949759883535213e-19)
sum a = (1.722243830332659e-19,3.4609688559771047e-22,-1.6130204047517285e-19)
sum e = 7.856789628489795e-10
sum de = 6.203854594147708e-25
Info: cfl dt = 0.040119685623433245 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0585e+04 | 2592 | 1 | 8.475e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1704.2722652811472 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.125499435303304, dt = 0.040119685623433245 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.70 us (2.2%)
patch tree reduce : 1.48 us (0.7%)
gen split merge : 581.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 199.83 us (92.4%)
LB move op cnt : 0
LB apply : 2.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.353886942334607e-20,-2.1037761074456911e-19,6.864723947647518e-19)
sum a = (-1.0393176505189406e-19,-3.1714644596401116e-20,-6.958772097195433e-20)
sum e = 7.856790369009003e-10
sum de = 3.101927297073854e-25
Info: cfl dt = 0.040119774289948285 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0739e+04 | 2592 | 1 | 8.432e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1712.8468606036095 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.16561912092674, dt = 0.040119774289948285 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 us (2.0%)
patch tree reduce : 1.44 us (0.7%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.6%)
LB compute : 204.82 us (92.6%)
LB move op cnt : 0
LB apply : 2.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.291819772241661e-20,-2.122882298720646e-19,6.855203259388328e-19)
sum a = (1.558565678288087e-19,-8.96350624194332e-20,1.0165070949802325e-19)
sum e = 7.856791102065554e-10
sum de = 9.615974620928947e-24
Info: cfl dt = 0.04011986239997942 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0884e+04 | 2592 | 1 | 8.393e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1720.9025004784642 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.205738895216687, dt = 0.001538982319832627 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (2.1%)
patch tree reduce : 1.41 us (0.6%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 207.09 us (92.7%)
LB move op cnt : 0
LB apply : 2.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (59.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.7646844326583e-20,-2.1360072785364879e-19,6.891117881736316e-19)
sum a = (8.373038766773619e-20,5.615154950454142e-20,2.8107651935295276e-20)
sum e = 7.856772821490131e-10
sum de = -1.9645539548134407e-24
Info: cfl dt = 0.04011986576846522 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0741e+04 | 2592 | 1 | 8.432e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.70797924908425 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 643 [SPH][rank=0]
Info: time since start : 192.437011774 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00031617500000000003 s
sph::RenderFieldGetter compute custom field took : 0.00024217700000000002 s
rho_t_ampl=0.000358368, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000253665, eps_t_phi=6.11244e-12 rad
vx_t_ampl=-1.16343e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 23.57s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 23.20727787753652, dt = 0.04011986576846522 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.78 us (3.9%)
patch tree reduce : 1.53 us (0.6%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.4%)
LB compute : 231.60 us (91.3%)
LB move op cnt : 0
LB apply : 3.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.446891494143892e-20,-2.112287831445198e-19,6.901828726637046e-19)
sum a = (-7.565082262804981e-20,-5.766228295004993e-20,-5.998743200465108e-20)
sum e = 7.856791566565809e-10
sum de = -3.1019272970738538e-24
Info: cfl dt = 0.040119953275943525 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5981e+04 | 2592 | 1 | 5.637e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2562.1705088113276 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.247397743304983, dt = 0.040119953275943525 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (1.7%)
patch tree reduce : 1.04 us (0.5%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.3%)
LB compute : 204.43 us (93.7%)
LB move op cnt : 0
LB apply : 2.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.099566546770173e-20,-2.1583526080226451e-19,6.860089982232575e-19)
sum a = (4.3465660856169194e-20,-2.616857037891353e-21,-2.1433012762419338e-20)
sum e = 7.856792421400691e-10
sum de = -2.0679515313825692e-24
Info: cfl dt = 0.04012004018573947 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6846e+04 | 2592 | 1 | 5.533e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2610.3652759527877 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.287517696580927, dt = 0.04012004018573947 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (1.9%)
patch tree reduce : 1.46 us (0.7%)
gen split merge : 751.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 185.67 us (92.3%)
LB move op cnt : 0
LB apply : 2.74 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.691069522392294e-20,-2.1482428817857792e-19,6.859225056391963e-19)
sum a = (-8.777427816248261e-20,4.231886831224432e-20,-6.671184797652771e-20)
sum e = 7.856793126306584e-10
sum de = 0
Info: cfl dt = 0.04012012647511182 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6777e+04 | 2592 | 1 | 5.541e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2606.496666739672 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.32763773676667, dt = 0.04012012647511182 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (1.9%)
patch tree reduce : 1.13 us (0.5%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.2%)
LB compute : 195.97 us (93.9%)
LB move op cnt : 0
LB apply : 2.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.27012966475257e-20,-2.1222619945102572e-19,6.823377235168409e-19)
sum a = (-2.928493149019535e-20,6.475598536264574e-20,2.5055606462145616e-20)
sum e = 7.856793818826108e-10
sum de = 6.2038545941477076e-24
Info: cfl dt = 0.0401202121236952 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5644e+04 | 2592 | 1 | 5.679e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2543.377475148695 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.36775786324178, dt = 0.0401202121236952 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (1.7%)
patch tree reduce : 751.00 ns (0.4%)
gen split merge : 591.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.4%)
LB compute : 194.53 us (93.9%)
LB move op cnt : 0
LB apply : 2.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.313509879730752e-20,-2.0917746587658844e-19,6.851838207021638e-19)
sum a = (2.1294263027415025e-19,-1.3578472002831853e-19,-1.3758913768212177e-19)
sum e = 7.856794498868604e-10
sum de = -5.0664812518872945e-24
Info: cfl dt = 0.040120297111483516 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5983e+04 | 2592 | 1 | 5.637e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2562.304218818948 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.407878075365478, dt = 0.040120297111483516 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (2.0%)
patch tree reduce : 1.22 us (0.6%)
gen split merge : 811.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 180.16 us (92.5%)
LB move op cnt : 0
LB apply : 2.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.934544864212183e-20,-2.1865702876329797e-19,6.764010328011405e-19)
sum a = (1.1186837256494779e-20,-4.468164710237047e-20,-4.5897825675407274e-20)
sum e = 7.856795165536833e-10
sum de = -1.002956492720546e-23
Info: cfl dt = 0.040120381418824264 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6321e+04 | 2592 | 1 | 5.596e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2581.116323137041 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.44799837247696, dt = 0.040120381418824264 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (1.9%)
patch tree reduce : 1.37 us (0.7%)
gen split merge : 822.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 520.00 ns (0.3%)
LB compute : 193.90 us (93.7%)
LB move op cnt : 0
LB apply : 2.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (62.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.253323716703368e-20,-2.1861225183685268e-19,6.763989358688619e-19)
sum a = (3.6978346888977454e-20,1.1522125033128347e-20,-6.145896537064942e-20)
sum e = 7.856795817960061e-10
sum de = 2.0679515313825692e-25
Info: cfl dt = 0.040120465026422136 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5672e+04 | 2592 | 1 | 5.675e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2544.957781748111 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.488118753895783, dt = 0.040120465026422136 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (2.0%)
patch tree reduce : 951.00 ns (0.5%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 180.40 us (93.1%)
LB move op cnt : 0
LB apply : 2.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.117924863892679e-20,-2.1702369794177097e-19,6.736210141682003e-19)
sum a = (2.6781038627174384e-19,5.1279029122125816e-20,-6.446538224762698e-20)
sum e = 7.856796455297747e-10
sum de = 2.274746684520826e-24
Info: cfl dt = 0.04012054791534258 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6543e+04 | 2592 | 1 | 5.569e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2593.4997537758754 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.528239218922206, dt = 0.04012054791534258 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (1.9%)
patch tree reduce : 1.27 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 186.00 us (92.7%)
LB move op cnt : 0
LB apply : 2.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.5864718199659554e-20,-2.141643420103729e-19,6.709743182892666e-19)
sum a = (-3.7055248179166046e-19,-5.248528460277505e-21,-3.774394410713924e-21)
sum e = 7.856797076742837e-10
sum de = 6.824240053562478e-24
Info: cfl dt = 0.040120630067015314 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6126e+04 | 2592 | 1 | 5.619e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2570.287410222075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.56835976683755, dt = 0.0015318275354765376 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (1.7%)
patch tree reduce : 1.17 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 751.00 ns (0.4%)
LB compute : 195.18 us (93.9%)
LB move op cnt : 0
LB apply : 2.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.911868842746315e-20,-2.1531272639457278e-19,6.7218601441070655e-19)
sum a = (-1.0832401181843497e-19,-1.6992766561455243e-19,-1.4954940867692692e-19)
sum e = 7.85677392083365e-10
sum de = 7.858215819253763e-24
Info: cfl dt = 0.04012063318877694 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.7627e+04 | 2592 | 1 | 6.889e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.05340873854412 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 653 [SPH][rank=0]
Info: time since start : 193.24382123 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000287514 s
sph::RenderFieldGetter compute custom field took : 0.00022090600000000002 s
rho_t_ampl=0.000334079, rho_t_phi=3.14159 rad
eps_t_ampl=-0.00024815, eps_t_phi=7.03526e-12 rad
vx_t_ampl=-1.015e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 23.93s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 23.569891594373026, dt = 0.04012063318877694 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.66 us (3.6%)
patch tree reduce : 1.37 us (0.5%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.4%)
LB compute : 244.31 us (91.7%)
LB move op cnt : 0
LB apply : 3.52 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.311164003340944e-20,-2.2225089060739477e-19,6.660743463511975e-19)
sum a = (1.7943634377338864e-21,3.2479852486532946e-19,5.099275685613074e-20)
sum e = 7.856797466388585e-10
sum de = -4.756288522179909e-24
Info: cfl dt = 0.040120714554783714 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6247e+04 | 2592 | 1 | 5.605e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2577.0211652685894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.610012227561803, dt = 0.040120714554783714 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (2.0%)
patch tree reduce : 1.49 us (0.8%)
gen split merge : 891.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 182.13 us (92.2%)
LB move op cnt : 0
LB apply : 2.52 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.085389702659043e-20,-1.9930004562050044e-19,6.72143151524499e-19)
sum a = (3.58230200271911e-19,-9.819885500083862e-20,7.436786293431414e-20)
sum e = 7.856798166533021e-10
sum de = 3.101927297073854e-25
Info: cfl dt = 0.04012079514777769 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6802e+04 | 2592 | 1 | 5.538e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2607.9761928765365 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.65013294211659, dt = 0.04012079514777769 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (1.5%)
patch tree reduce : 791.00 ns (0.4%)
gen split merge : 531.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 451.00 ns (0.2%)
LB compute : 198.54 us (94.6%)
LB move op cnt : 0
LB apply : 2.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.925909455525459e-20,-2.1171886455047596e-19,6.755957622981886e-19)
sum a = (2.8762890039492e-19,-9.060100136824307e-20,1.380913123521937e-19)
sum e = 7.856798736438115e-10
sum de = -2.274746684520826e-24
Info: cfl dt = 0.04012087494939212 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6286e+04 | 2592 | 1 | 5.600e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2579.201803505469 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.690253737264367, dt = 0.04012087494939212 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.70 us (1.7%)
patch tree reduce : 912.00 ns (0.4%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 200.44 us (93.7%)
LB move op cnt : 0
LB apply : 2.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.9386809267795624e-20,-2.1520530285085313e-19,6.824144243027633e-19)
sum a = (8.428414268469252e-20,-7.331140794518583e-20,1.2084139254213158e-19)
sum e = 7.856799286193147e-10
sum de = -4.342698215903395e-24
Info: cfl dt = 0.040120953942539346 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5630e+04 | 2592 | 1 | 5.681e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2542.6437865957264 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.730374612213758, dt = 0.040120953942539346 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (2.2%)
patch tree reduce : 861.00 ns (0.4%)
gen split merge : 701.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 184.70 us (92.6%)
LB move op cnt : 0
LB apply : 2.60 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.972202001989976e-20,-2.1780914274326987e-19,6.869166553094668e-19)
sum a = (2.4764187268681187e-19,-6.505378786828727e-20,-2.3419547670421142e-21)
sum e = 7.856799816505344e-10
sum de = 7.134432783269864e-24
Info: cfl dt = 0.04012103211053206 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6618e+04 | 2592 | 1 | 5.560e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2597.7319484861173 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.7704955661563, dt = 0.04012103211053206 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (1.8%)
patch tree reduce : 891.00 ns (0.5%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 511.00 ns (0.3%)
LB compute : 185.49 us (94.3%)
LB move op cnt : 0
LB apply : 2.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6875560902497264e-20,-2.2023921529727966e-19,6.843515769651768e-19)
sum a = (3.218894110879159e-19,1.5109832617323253e-19,-1.0991932299331832e-19)
sum e = 7.856800326778988e-10
sum de = -3.101927297073854e-25
Info: cfl dt = 0.040121109437065205 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6812e+04 | 2592 | 1 | 5.537e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2608.540239108148 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.81061659826683, dt = 0.040121109437065205 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (1.6%)
patch tree reduce : 651.00 ns (0.3%)
gen split merge : 441.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.5%)
LB compute : 198.46 us (94.1%)
LB move op cnt : 0
LB apply : 2.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3103250855804434e-21,-2.0984131462095153e-19,6.777834342556085e-19)
sum a = (1.1044044048858262e-19,1.2469888760475708e-19,-4.661113625874001e-20)
sum e = 7.856800816450668e-10
sum de = 5.169878828456423e-25
Info: cfl dt = 0.04012118590621852 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6793e+04 | 2592 | 1 | 5.539e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2607.5067908432293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.850737707703896, dt = 0.04012118590621852 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (1.9%)
patch tree reduce : 1.22 us (0.6%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.5%)
LB compute : 185.72 us (93.1%)
LB move op cnt : 0
LB apply : 2.60 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2183064477479362e-21,-2.0537841068607495e-19,6.771833375365838e-19)
sum a = (-6.263182856471136e-20,3.8673348683739297e-20,1.1740694883502925e-19)
sum e = 7.856801284993775e-10
sum de = -4.446095792472524e-24
Info: cfl dt = 0.040121261502458844 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6551e+04 | 2592 | 1 | 5.568e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2594.0161495574544 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.890858893610115, dt = 0.040121261502458844 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (1.6%)
patch tree reduce : 1.06 us (0.5%)
gen split merge : 621.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 591.00 ns (0.3%)
LB compute : 193.87 us (94.5%)
LB move op cnt : 0
LB apply : 1.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.114072028873563e-21,-2.055476592520883e-19,6.851841524750231e-19)
sum a = (9.139422564721498e-20,-5.579507998231303e-20,-4.5428334154487834e-20)
sum e = 7.856801731917092e-10
sum de = 6.203854594147708e-25
Info: cfl dt = 0.04012133621064232 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5513e+04 | 2592 | 1 | 5.695e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2536.192912060477 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.930980155112575, dt = 0.0015251560969566924 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (1.8%)
patch tree reduce : 842.00 ns (0.4%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.4%)
LB compute : 178.65 us (86.7%)
LB move op cnt : 0
LB apply : 2.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.7422462282967e-21,-2.075233897818001e-19,6.818482886888949e-19)
sum a = (6.259896476548547e-20,-4.356045237706139e-20,6.16431695679993e-20)
sum e = 7.856774768738663e-10
sum de = 9.305781891221561e-25
Info: cfl dt = 0.04012133903290163 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6497e+04 | 2592 | 1 | 5.575e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.49349877669948 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 663 [SPH][rank=0]
Info: time since start : 194.034605494 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000294684 s
sph::RenderFieldGetter compute custom field took : 0.000247604 s
rho_t_ampl=0.000313265, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000242243, eps_t_phi=7.98073e-12 rad
vx_t_ampl=-8.5223e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 24.30s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 23.932505311209532, dt = 0.04012133903290163 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.97 us (3.9%)
patch tree reduce : 1.49 us (0.6%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 231.72 us (91.1%)
LB move op cnt : 0
LB apply : 3.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.425348382871077e-21,-2.09260652368379e-19,6.844031455725208e-19)
sum a = (9.60986785064019e-20,3.6840858103934744e-20,3.5198699081141605e-20)
sum e = 7.856802008230903e-10
sum de = -1.9645539548134407e-24
Info: cfl dt = 0.04012141280368735 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2682e+04 | 2592 | 1 | 7.931e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1821.1813311444785 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.972626650242432, dt = 0.04012141280368735 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.08 us (1.8%)
patch tree reduce : 1.25 us (0.6%)
gen split merge : 570.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.4%)
LB compute : 206.39 us (93.4%)
LB move op cnt : 0
LB apply : 2.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (58.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.228165587515705e-21,-2.0618418996334485e-19,6.85284873325541e-19)
sum a = (3.138492826073006e-21,1.0842743008662396e-21,1.2670000274411739e-19)
sum e = 7.856802484633657e-10
sum de = -2.3781442610899546e-24
Info: cfl dt = 0.04012148565664762 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3692e+04 | 2592 | 1 | 7.693e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1877.4342678502635 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.01274806304612, dt = 0.04012148565664762 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.18 us (2.0%)
patch tree reduce : 851.00 ns (0.4%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.4%)
LB compute : 198.66 us (93.2%)
LB move op cnt : 0
LB apply : 2.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.9624336831101985e-22,-2.068472171127273e-19,6.922038464565251e-19)
sum a = (5.1979028045637384e-20,-1.3844034607935918e-19,-6.53326866148187e-20)
sum e = 7.8568028650335e-10
sum de = 5.583469134732937e-24
Info: cfl dt = 0.04012155757798278 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4743e+04 | 2592 | 1 | 7.460e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1936.0437616644476 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.05286954870277, dt = 0.04012155757798278 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (1.9%)
patch tree reduce : 1.49 us (0.7%)
gen split merge : 801.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 212.84 us (92.9%)
LB move op cnt : 0
LB apply : 2.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.532858416783751e-21,-2.1521167021195316e-19,6.857302789129337e-19)
sum a = (-4.934762364161995e-19,-1.0510007311437464e-19,1.6772553992295822e-21)
sum e = 7.856803220397861e-10
sum de = 2.1713491079516976e-24
Info: cfl dt = 0.040121628554110236 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4065e+04 | 2592 | 1 | 7.609e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1898.2519231091412 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.092991106280753, dt = 0.040121628554110236 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (2.0%)
patch tree reduce : 1.12 us (0.5%)
gen split merge : 782.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.6%)
LB compute : 199.93 us (92.8%)
LB move op cnt : 0
LB apply : 2.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7421554074087086e-20,-2.1875171758481755e-19,6.871418447544456e-19)
sum a = (3.2895184154156084e-19,1.0513083157646262e-19,8.21252274392062e-20)
sum e = 7.856803552219265e-10
sum de = -3.7223127564886245e-24
Info: cfl dt = 0.040121698571876536 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2922e+04 | 2592 | 1 | 7.873e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1834.5872908799208 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.133112734834864, dt = 0.040121698571876536 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (2.0%)
patch tree reduce : 1.56 us (0.7%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.5%)
LB compute : 200.19 us (92.7%)
LB move op cnt : 0
LB apply : 2.73 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4384939025614352e-21,-2.103244124695722e-19,6.920507002009493e-19)
sum a = (-8.210362960605436e-20,-7.319053078365808e-20,-8.685182781511612e-20)
sum e = 7.856803860222921e-10
sum de = 5.2732764050255514e-24
Info: cfl dt = 0.040121767618528016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3390e+04 | 2592 | 1 | 7.763e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1860.6485013881365 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.17323443340674, dt = 0.040121767618528016 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.8%)
patch tree reduce : 1.58 us (0.6%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 236.77 us (93.6%)
LB move op cnt : 0
LB apply : 2.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.093413245805245e-21,-2.1683493649496722e-19,6.851762281099048e-19)
sum a = (-8.982333604421718e-20,7.643239052823378e-20,1.8900189842550312e-20)
sum e = 7.856804144171766e-10
sum de = 3.412120026781239e-24
Info: cfl dt = 0.04012183568171203 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3696e+04 | 2592 | 1 | 7.692e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1877.6994549721987 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.21335620102527, dt = 0.04012183568171203 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.46 us (1.6%)
patch tree reduce : 1.39 us (0.5%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.4%)
LB compute : 255.39 us (94.3%)
LB move op cnt : 0
LB apply : 2.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2668994601582659e-20,-2.107711547402992e-19,6.880560173599333e-19)
sum a = (3.2722156251231743e-19,-3.868295107507561e-20,-6.950940988279423e-21)
sum e = 7.856804403862681e-10
sum de = 1.34416849539867e-24
Info: cfl dt = 0.04012190274947813 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3826e+04 | 2592 | 1 | 7.663e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1884.9260662360225 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.253478036706984, dt = 0.04012190274947813 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (1.7%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 250.01 us (93.8%)
LB move op cnt : 0
LB apply : 2.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.823930092152902e-21,-2.1462607838949672e-19,6.872585349698963e-19)
sum a = (2.384252201939095e-19,2.1045717708347617e-19,4.2023837228152474e-20)
sum e = 7.856804639129842e-10
sum de = -3.2053248736429822e-24
Info: cfl dt = 0.04012196881027904 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3736e+04 | 2592 | 1 | 7.683e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1879.9469869746808 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.293599939456463, dt = 0.0015190885895783879 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.16 us (1.6%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 238.73 us (93.9%)
LB move op cnt : 0
LB apply : 2.27 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.440364144742708e-21,-2.0930707248478556e-19,6.883048535458981e-19)
sum a = (-7.671560972296882e-20,-9.015515771702615e-21,-1.283651737379676e-19)
sum e = 7.856775290293631e-10
sum de = -2.1713491079516976e-24
Info: cfl dt = 0.04012197129160156 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3598e+04 | 2592 | 1 | 7.715e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.88622487863394 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 673 [SPH][rank=0]
Info: time since start : 195.03628780100001 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00027051800000000003 s
sph::RenderFieldGetter compute custom field took : 0.000223519 s
rho_t_ampl=0.000296189, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000236092, eps_t_phi=8.79785e-12 rad
vx_t_ampl=-6.80162e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 24.66s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 24.29511902804604, dt = 0.04012197129160156 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.80 us (3.1%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 293.94 us (92.8%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.654454473919563e-21,-2.0983679584855797e-19,6.830251717291555e-19)
sum a = (1.9701683316928134e-19,-2.2265860711654105e-19,3.7000678607419547e-20)
sum e = 7.856804780054931e-10
sum de = 8.271806125530277e-25
Info: cfl dt = 0.04012203629651813 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5714e+04 | 2592 | 1 | 7.258e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1990.1773119327256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.335240999337643, dt = 0.04012203629651813 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (2.0%)
patch tree reduce : 951.00 ns (0.4%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.4%)
LB compute : 207.21 us (93.2%)
LB move op cnt : 0
LB apply : 2.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.733894047158239e-20,-2.230603670620776e-19,6.87827116289477e-19)
sum a = (-1.523105638923346e-19,-9.152881317498228e-20,-1.6173444065344287e-20)
sum e = 7.856804995239026e-10
sum de = 6.2038545941477076e-24
Info: cfl dt = 0.0401221002710761 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5412e+04 | 2592 | 1 | 5.708e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2530.605828466796 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.375363035634162, dt = 0.0401221002710761 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (1.5%)
patch tree reduce : 1.26 us (0.6%)
gen split merge : 631.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.5%)
LB compute : 213.08 us (93.9%)
LB move op cnt : 0
LB apply : 2.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.0586792043980764e-21,-2.2409434434522237e-19,6.861114767049857e-19)
sum a = (-6.255295544656922e-20,-1.3204795200727535e-19,2.472873726423224e-20)
sum e = 7.856805157806231e-10
sum de = -2.0679515313825692e-25
Info: cfl dt = 0.0401221632061097 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5944e+04 | 2592 | 1 | 5.642e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2560.246873775988 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.41548513590524, dt = 0.0401221632061097 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.05 us (1.8%)
patch tree reduce : 1.15 us (0.5%)
gen split merge : 762.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 751.00 ns (0.3%)
LB compute : 208.94 us (93.6%)
LB move op cnt : 0
LB apply : 2.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (62.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.375112180499453e-21,-2.3020988658367116e-19,6.879241878477225e-19)
sum a = (-2.406303811219671e-19,4.964556992638309e-20,-6.913883007663984e-20)
sum e = 7.856805293456636e-10
sum de = 4.03250548619601e-24
Info: cfl dt = 0.04012222509166742 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.9412e+04 | 2592 | 1 | 6.577e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2196.249531080039 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.45560729911135, dt = 0.04012222509166742 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 us (1.7%)
patch tree reduce : 1.13 us (0.5%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.4%)
LB compute : 197.86 us (93.8%)
LB move op cnt : 0
LB apply : 2.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (57.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.801628119123289e-21,-2.2457395041517523e-19,6.83267099216484e-19)
sum a = (8.583038443827089e-20,-1.4771276433157298e-20,-9.901493305261359e-21)
sum e = 7.856805404373563e-10
sum de = 2.7917345673664684e-24
Info: cfl dt = 0.040122285918243475 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.2295e+04 | 2592 | 1 | 6.128e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2356.9089316170875 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.495729524203018, dt = 0.040122285918243475 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.23 us (1.9%)
patch tree reduce : 1.11 us (0.5%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.4%)
LB compute : 204.24 us (93.2%)
LB move op cnt : 0
LB apply : 2.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.037544787121222e-23,-2.2645293813591584e-19,6.840581955509502e-19)
sum a = (-2.429850723365025e-19,1.0604952881388527e-19,-5.161730125921379e-20)
sum e = 7.856805490587763e-10
sum de = -5.7385654995866295e-24
Info: cfl dt = 0.04012234567673808 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.8792e+04 | 2592 | 1 | 6.682e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2161.674907263583 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.53585181012126, dt = 0.04012234567673808 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.19 us (1.9%)
patch tree reduce : 1.29 us (0.6%)
gen split merge : 641.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 206.29 us (93.2%)
LB move op cnt : 0
LB apply : 2.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6021102122623984e-20,-2.1978199769054937e-19,6.811503215598977e-19)
sum a = (-9.012896937701801e-20,1.6945650656799429e-19,-3.6719527103611197e-20)
sum e = 7.856805552169525e-10
sum de = -5.169878828456423e-26
Info: cfl dt = 0.04012240435845775 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4507e+04 | 2592 | 1 | 5.824e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2480.1480920004547 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.575974155798, dt = 0.04012240435845775 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (1.8%)
patch tree reduce : 982.00 ns (0.4%)
gen split merge : 611.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.4%)
LB compute : 220.63 us (93.9%)
LB move op cnt : 0
LB apply : 2.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6612650508690102e-20,-2.1170181645462754e-19,6.799759126678672e-19)
sum a = (-7.077547801288823e-20,-4.4640259255220354e-20,-1.9103644398421902e-19)
sum e = 7.856805589221231e-10
sum de = 3.1019272970738538e-24
Info: cfl dt = 0.040122461955115256 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.8542e+04 | 2592 | 1 | 6.725e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2147.7940533355613 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.616096560156457, dt = 0.040122461955115256 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (1.9%)
patch tree reduce : 1.27 us (0.6%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.3%)
LB compute : 199.97 us (93.4%)
LB move op cnt : 0
LB apply : 2.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.931076842513611e-20,-2.177894244637343e-19,6.692152773428029e-19)
sum a = (2.083039050134151e-19,4.534778090777348e-20,-1.7148665036667838e-19)
sum e = 7.856805601876102e-10
sum de = 1.7577588016751838e-24
Info: cfl dt = 0.04012251845882925 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.4109e+04 | 2592 | 1 | 5.876e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2458.0193770958504 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.65621902211157, dt = 0.0015137227709800527 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.93 us (1.8%)
patch tree reduce : 901.00 ns (0.4%)
gen split merge : 431.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.4%)
LB compute : 202.66 us (94.1%)
LB move op cnt : 0
LB apply : 2.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.312087184093872e-20,-2.1591742030032926e-19,6.693478870205835e-19)
sum a = (8.557733318423151e-21,-1.8209376706344945e-19,3.012536947169927e-20)
sum e = 7.856775453120651e-10
sum de = -1.3958672836832342e-24
Info: cfl dt = 0.04012252056917919 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5273e+04 | 2592 | 1 | 5.725e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.18112957725526 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 683 [SPH][rank=0]
Info: time since start : 195.889703343 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000288585 s
sph::RenderFieldGetter compute custom field took : 0.000262537 s
rho_t_ampl=0.000283003, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000229845, eps_t_phi=9.69225e-12 rad
vx_t_ampl=-5.03749e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 25.02s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 24.65773274488255, dt = 0.04012252056917919 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.05 us (3.1%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 301.39 us (92.8%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2803736178408829e-20,-2.2339619401041723e-19,6.707091851295176e-19)
sum a = (-1.2937327522262094e-19,-2.009023098818217e-20,-1.715484996097444e-19)
sum e = 7.856805601865678e-10
sum de = -9.305781891221561e-25
Info: cfl dt = 0.040122575932685416 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2082e+04 | 2592 | 1 | 8.079e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1787.7827106761072 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.697855265451732, dt = 0.040122575932685416 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (2.0%)
patch tree reduce : 1.28 us (0.6%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 1.29 us (0.6%)
LB compute : 207.91 us (92.8%)
LB move op cnt : 0
LB apply : 2.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1004897275231016e-20,-2.2095523532291387e-19,6.597803854475386e-19)
sum a = (-1.806687362443597e-20,9.510123652505283e-20,-3.042588884017879e-20)
sum e = 7.856805549636525e-10
sum de = 1.137373342260413e-24
Info: cfl dt = 0.04012263018642599 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2362e+04 | 2592 | 1 | 8.009e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1803.3906886713953 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.737977841384417, dt = 0.04012263018642599 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.05 us (1.7%)
patch tree reduce : 1.32 us (0.5%)
gen split merge : 901.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.4%)
LB compute : 226.51 us (93.1%)
LB move op cnt : 0
LB apply : 3.42 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.93764960235879e-20,-2.1482962854595212e-19,6.613907200947141e-19)
sum a = (9.695642366619777e-20,-4.0812371215854756e-20,-1.2548019117824363e-19)
sum e = 7.856805491713077e-10
sum de = -1.0856745539758488e-24
Info: cfl dt = 0.04012268332581407 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2459e+04 | 2592 | 1 | 7.985e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1808.8053194156118 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.778100471570845, dt = 0.04012268332581407 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (1.8%)
patch tree reduce : 1.51 us (0.6%)
gen split merge : 801.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.4%)
LB compute : 229.51 us (93.6%)
LB move op cnt : 0
LB apply : 2.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3349275245558693e-20,-2.1918962770950265e-19,6.544492038102544e-19)
sum a = (-6.767642174588631e-20,-3.73121455247086e-20,-6.584169978855079e-20)
sum e = 7.856805407815806e-10
sum de = -1.2924697071141057e-24
Info: cfl dt = 0.04012273534455592 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1515e+04 | 2592 | 1 | 8.225e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1756.222785764957 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.81822315489666, dt = 0.04012273534455592 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.80 us (2.2%)
patch tree reduce : 1.31 us (0.6%)
gen split merge : 772.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 204.37 us (92.4%)
LB move op cnt : 0
LB apply : 2.82 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9322270754865173e-20,-2.206179705833581e-19,6.530038828670445e-19)
sum a = (-1.427685597870959e-19,7.931418627254076e-20,-1.1255439843963503e-19)
sum e = 7.85680530065444e-10
sum de = 9.822769774067204e-25
Info: cfl dt = 0.04012278623680793 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1882e+04 | 2592 | 1 | 8.130e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1776.6556999851068 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.858345890241218, dt = 0.04012278623680793 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (1.7%)
patch tree reduce : 1.20 us (0.5%)
gen split merge : 561.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 221.71 us (93.7%)
LB move op cnt : 0
LB apply : 2.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (59.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6475076656381298e-20,-2.1508945795858187e-19,6.475507661758475e-19)
sum a = (7.619471850523839e-21,-2.0019835703246575e-19,1.3070975724703326e-20)
sum e = 7.856805170523461e-10
sum de = 1.0339757656912846e-25
Info: cfl dt = 0.040122835997128015 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1602e+04 | 2592 | 1 | 8.202e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1761.072112225346 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.898468676478025, dt = 0.040122835997128015 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.33 us (1.8%)
patch tree reduce : 1.25 us (0.5%)
gen split merge : 711.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 223.60 us (93.5%)
LB move op cnt : 0
LB apply : 2.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3241278812553194e-20,-2.2873430199842843e-19,6.505954308079037e-19)
sum a = (-3.668355860992117e-19,1.3708235227572163e-19,5.527175399796377e-20)
sum e = 7.856805017756864e-10
sum de = -8.271806125530277e-25
Info: cfl dt = 0.040122884620475016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1773e+04 | 2592 | 1 | 8.158e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1770.6061321862642 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.938591512475153, dt = 0.040122884620475016 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (2.1%)
patch tree reduce : 1.45 us (0.7%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 200.50 us (92.8%)
LB move op cnt : 0
LB apply : 2.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (59.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.550157321821341e-20,-2.1647610488716947e-19,6.536597004691109e-19)
sum a = (1.6643378160966314e-19,6.627503745733332e-20,-6.236807172432447e-20)
sum e = 7.856804842711936e-10
sum de = -2.6366382025127757e-24
Info: cfl dt = 0.0401229321022073 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1498e+04 | 2592 | 1 | 8.229e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1755.2764195570978 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.97871439709563, dt = 0.0401229321022073 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (1.7%)
patch tree reduce : 1.46 us (0.6%)
gen split merge : 802.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.4%)
LB compute : 221.64 us (93.7%)
LB move op cnt : 0
LB apply : 2.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.81379848972116e-20,-2.1522748591533061e-19,6.487972859849029e-19)
sum a = (5.2752970517407223e-20,1.2292616805979464e-19,1.06096474432498e-19)
sum e = 7.856804645772306e-10
sum de = -1.809457589959748e-24
Info: cfl dt = 0.04012297843808152 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0627e+04 | 2592 | 1 | 8.463e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1706.739484308717 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25.018837329197837, dt = 0.0015091325212210904 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (2.2%)
patch tree reduce : 1.49 us (0.7%)
gen split merge : 761.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.5%)
LB compute : 207.48 us (92.7%)
LB move op cnt : 0
LB apply : 2.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.0249483997475377e-20,-2.1390964756637222e-19,6.523370453983496e-19)
sum a = (-2.4936393576624876e-19,-5.619442649259395e-20,-4.324361129044264e-20)
sum e = 7.856775265217777e-10
sum de = -2.5849394142282115e-25
Info: cfl dt = 0.040122980158605395 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1503e+04 | 2592 | 1 | 8.228e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.03101666494942 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 693 [SPH][rank=0]
Info: time since start : 196.94133002700002 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000295295 s
sph::RenderFieldGetter compute custom field took : 0.000247985 s
rho_t_ampl=0.000273749, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000223643, eps_t_phi=1.01843e-11 rad
vx_t_ampl=-3.27742e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 25.38s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 25.020346461719058, dt = 0.040122980158605395 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.33 us (3.5%)
patch tree reduce : 1.47 us (0.5%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 271.01 us (92.2%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.0471768746690125e-20,-2.1629679178264317e-19,6.504892958505458e-19)
sum a = (4.0642003226680266e-19,1.2336916180342245e-20,1.7212883039243003e-20)
sum e = 7.856804514256153e-10
sum de = -4.1359030627651384e-25
Info: cfl dt = 0.04012302530411044 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1217e+04 | 2592 | 1 | 8.303e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1739.6041115806984 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25.060469441877665, dt = 0.04012302530411044 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.16 us (1.9%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 611.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 207.77 us (93.2%)
LB move op cnt : 0
LB apply : 2.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.09288564325715e-20,-2.1443074418284782e-19,6.523927761535514e-19)
sum a = (-1.5962275922009633e-19,-4.308482590779599e-20,2.4146811326327385e-20)
sum e = 7.856804216391826e-10
sum de = -9.564275832644382e-25
Info: cfl dt = 0.04012306929352408 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.1689e+04 | 2592 | 1 | 8.179e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1765.913822548231 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25.100592467181777, dt = 0.04012306929352408 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.42 us (1.7%)
patch tree reduce : 1.29 us (0.5%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.5%)
LB compute : 235.84 us (93.4%)
LB move op cnt : 0
LB apply : 2.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.8796082476710155e-20,-2.1727243582216196e-19,6.535007254276361e-19)
sum a = (1.0199444408752753e-19,6.641383565937643e-20,4.7274612134723105e-20)
sum e = 7.856803958038812e-10
sum de = -3.877409121342317e-25
Info: cfl dt = 0.04012311212666904 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0690e+04 | 2592 | 1 | 8.446e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1710.273004399428 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25.1407155364753, dt = 0.04012311212666904 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.54 us (2.2%)
patch tree reduce : 1.60 us (0.8%)
gen split merge : 851.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 193.08 us (91.9%)
LB move op cnt : 0
LB apply : 2.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.941182460775574e-20,-2.1240202077688427e-19,6.558615091682524e-19)
sum a = (6.352736709361701e-20,-1.134062956693471e-20,8.021942214857743e-20)
sum e = 7.856803677040553e-10
sum de = -1.370017889540952e-24
Info: cfl dt = 0.040123153800841124 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.0530e+04 | 2592 | 1 | 8.490e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1701.356942894857 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25.18083864860197, dt = 0.040123153800841124 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (2.0%)
patch tree reduce : 1.40 us (0.7%)
gen split merge : 751.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.6%)
LB compute : 191.01 us (92.4%)
LB move op cnt : 0
LB apply : 2.75 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7638822639518684e-20,-2.1441821485939293e-19,6.597410895340405e-19)
sum a = (4.761800188836107e-20,-1.7560124110309923e-19,1.5726609913112854e-19)
sum e = 7.856803376431936e-10
sum de = -1.7577588016751838e-24
Info: cfl dt = 0.040123194313778865 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2874e+04 | 2592 | 1 | 7.885e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1831.9336502713134 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25.22096180240281, dt = 0.040123194313778865 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.33 us (1.9%)
patch tree reduce : 1.52 us (0.7%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 210.33 us (93.0%)
LB move op cnt : 0
LB apply : 2.85 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6109012785553257e-20,-2.2476291726072417e-19,6.675967856236503e-19)
sum a = (-3.9497028461650073e-19,-3.364631966276001e-19,5.645686206594766e-20)
sum e = 7.856803056708846e-10
sum de = 1.2666203129718236e-24
Info: cfl dt = 0.04012323366360787 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3118e+04 | 2592 | 1 | 7.827e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1845.56616129359 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25.26108499671659, dt = 0.04012323366360787 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (2.0%)
patch tree reduce : 1.40 us (0.7%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.5%)
LB compute : 198.68 us (92.7%)
LB move op cnt : 0
LB apply : 2.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.076754293972319e-20,-2.4148915327548876e-19,6.678396231885668e-19)
sum a = (8.10569176007096e-20,8.442897447487476e-20,-1.5409573672011666e-19)
sum e = 7.856802718401627e-10
sum de = 5.169878828456423e-26
Info: cfl dt = 0.040123271848839154 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3207e+04 | 2592 | 1 | 7.806e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1850.504540450086 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25.301208230380198, dt = 0.040123271848839154 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (1.8%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.4%)
LB compute : 208.43 us (93.0%)
LB move op cnt : 0
LB apply : 2.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.799174099065637e-20,-2.296577747566761e-19,6.574327724935683e-19)
sum a = (-1.3301458417685014e-19,-1.2124703331809654e-19,1.1644534449369949e-19)
sum e = 7.856802362057676e-10
sum de = -1.7577588016751838e-24
Info: cfl dt = 0.04012330886836685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3314e+04 | 2592 | 1 | 7.780e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1856.503520758608 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25.341331502229036, dt = 0.04012330886836685 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.45 us (1.9%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 891.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.4%)
LB compute : 200.57 us (87.4%)
LB move op cnt : 0
LB apply : 2.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.7690669737198735e-20,-2.386486940286456e-19,6.675324416909052e-19)
sum a = (2.771174142125174e-19,-2.998523851182466e-20,-2.2631447104081877e-19)
sum e = 7.856801988240034e-10
sum de = 1.0339757656912846e-24
Info: cfl dt = 0.040123344721465865 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2770e+04 | 2592 | 1 | 7.910e-02 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1826.1751594401635 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25.381454811097402, dt = 0.0015053674581650967 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (1.8%)
patch tree reduce : 1.55 us (0.7%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.4%)
LB compute : 197.41 us (92.9%)
LB move op cnt : 0
LB apply : 2.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.898669251222035e-20,-2.3686603831938595e-19,6.603154262777033e-19)
sum a = (4.0288224428013505e-19,-1.3687782647522673e-19,-3.586534851059415e-20)
sum e = 7.856774769119185e-10
sum de = 1.1632227364026952e-24
Info: cfl dt = 0.04012334604404713 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3202e+04 | 2592 | 1 | 7.807e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.4176303769228 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 703 [SPH][rank=0]
Info: time since start : 197.978542946 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00033044700000000004 s
sph::RenderFieldGetter compute custom field took : 0.000245913 s
rho_t_ampl=0.000268369, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000217615, eps_t_phi=1.09055e-11 rad
vx_t_ampl=-1.56579e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 25.75s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 25.382960178555567, dt = 0.04012334604404713 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.90 us (3.4%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 264.19 us (92.1%)
LB move op cnt : 0
LB apply : 3.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2780731518950703e-20,-2.4243624688943005e-19,6.590197364441738e-19)
sum a = (1.5097629364376325e-20,1.5319850266766926e-19,-9.463674255530654e-20)
sum e = 7.856801746821823e-10
sum de = 5.040631857745012e-25
Info: cfl dt = 0.04012338068990519 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6292e+04 | 2592 | 1 | 5.599e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2579.728888135302 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25.423083524599615, dt = 0.04012338068990519 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (1.9%)
patch tree reduce : 981.00 ns (0.5%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.4%)
LB compute : 184.58 us (92.8%)
LB move op cnt : 0
LB apply : 2.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9888760494021545e-20,-2.3046725121135895e-19,6.54043537905044e-19)
sum a = (4.789668690579667e-19,-2.108541358333446e-20,-1.6521579496318508e-21)
sum e = 7.856801247436119e-10
sum de = -8.142559154818866e-25
Info: cfl dt = 0.04012341416553794 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.9612e+04 | 2592 | 1 | 6.543e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2207.4614334070825 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25.46320690528952, dt = 0.04012341416553794 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (1.7%)
patch tree reduce : 1.44 us (0.6%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 210.91 us (93.3%)
LB move op cnt : 0
LB apply : 2.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.651805943707275e-21,-2.348003431392932e-19,6.558426756305706e-19)
sum a = (-6.137643143428216e-20,-3.097520911381847e-20,1.0294096799013997e-19)
sum e = 7.85680082662557e-10
sum de = 2.3264454728053903e-25
Info: cfl dt = 0.04012344647490466 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5007e+04 | 2592 | 1 | 5.759e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2508.0767952234287 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25.50333031945506, dt = 0.04012344647490466 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (1.7%)
patch tree reduce : 1.12 us (0.5%)
gen split merge : 892.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 691.00 ns (0.3%)
LB compute : 203.48 us (93.9%)
LB move op cnt : 0
LB apply : 2.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (56.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.69336132694818e-21,-2.362512798751165e-19,6.620713387052399e-19)
sum a = (-3.828879088311003e-19,5.1690904955861605e-20,2.818056428078048e-20)
sum e = 7.856800388268241e-10
sum de = -9.04728794979874e-26
Info: cfl dt = 0.04012347761873455 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6227e+04 | 2592 | 1 | 5.607e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2576.076882128546 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25.543453765929964, dt = 0.04012347761873455 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 us (1.9%)
patch tree reduce : 972.00 ns (0.5%)
gen split merge : 440.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.4%)
LB compute : 178.68 us (93.3%)
LB move op cnt : 0
LB apply : 1.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.652088057655239e-20,-2.3251774688430966e-19,6.617022184171349e-19)
sum a = (2.249789967406344e-19,-1.1180706103951698e-19,-8.562695610099968e-20)
sum e = 7.856799935506501e-10
sum de = 4.52364397489937e-26
Info: cfl dt = 0.04012350759818101 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6451e+04 | 2592 | 1 | 5.580e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2588.584274499274 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25.5835772435487, dt = 0.04012350759818101 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (1.9%)
patch tree reduce : 1.28 us (0.7%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.4%)
LB compute : 181.71 us (92.8%)
LB move op cnt : 0
LB apply : 2.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.290044681643343e-21,-2.40286338223821e-19,6.559833878449243e-19)
sum a = (3.7276092909964065e-19,-1.125816197075223e-19,8.124763238804733e-20)
sum e = 7.856799468962871e-10
sum de = 8.982664464443035e-25
Info: cfl dt = 0.04012353641476102 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6669e+04 | 2592 | 1 | 5.554e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2600.7491976350075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25.62370075114688, dt = 0.04012353641476102 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (1.9%)
patch tree reduce : 1.12 us (0.6%)
gen split merge : 772.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 641.00 ns (0.3%)
LB compute : 180.93 us (93.0%)
LB move op cnt : 0
LB apply : 2.65 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2628531048785775e-20,-2.4481229957346227e-19,6.625911270912703e-19)
sum a = (-1.0394655376154571e-19,2.775242577769967e-20,2.2345918877336156e-20)
sum e = 7.85679898928801e-10
sum de = 2.5849394142282115e-25
Info: cfl dt = 0.04012356407035254 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6238e+04 | 2592 | 1 | 5.606e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2576.7389794881537 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25.663824287561642, dt = 0.04012356407035254 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.56 us (1.8%)
patch tree reduce : 982.00 ns (0.5%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 611.00 ns (0.3%)
LB compute : 181.75 us (93.4%)
LB move op cnt : 0
LB apply : 2.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1075100339126733e-21,-2.4088343237600647e-19,6.62306052475552e-19)
sum a = (-1.2813430999180469e-19,-5.2604852347302385e-20,-4.800600211326455e-20)
sum e = 7.856798497141054e-10
sum de = -1.0258978300218214e-24
Info: cfl dt = 0.04012359056719137 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6389e+04 | 2592 | 1 | 5.587e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2585.1518677297895 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25.703947851631995, dt = 0.04012359056719137 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (1.8%)
patch tree reduce : 1.35 us (0.6%)
gen split merge : 660.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 195.43 us (93.2%)
LB move op cnt : 0
LB apply : 2.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.726141358128679e-21,-2.4460546303708426e-19,6.589684943973913e-19)
sum a = (9.331347152200727e-20,1.8394677184292704e-19,-7.789185719519131e-20)
sum e = 7.856797993187801e-10
sum de = 3.4775513057038908e-25
Info: cfl dt = 0.040123615907867796 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5964e+04 | 2592 | 1 | 5.639e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2561.437351485526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25.744071442199186, dt = 0.001502453192887998 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (1.8%)
patch tree reduce : 1.28 us (0.6%)
gen split merge : 781.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.4%)
LB compute : 198.16 us (93.7%)
LB move op cnt : 0
LB apply : 2.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.147392530980809e-21,-2.3958592850281907e-19,6.582519016212617e-19)
sum a = (-1.6254435097127842e-19,1.9551344272891237e-19,9.073869240183753e-20)
sum e = 7.856774033409199e-10
sum de = 7.674038885990003e-26
Info: cfl dt = 0.040123616834491706 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5323e+04 | 2592 | 1 | 5.719e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.57753264756381 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 713 [SPH][rank=0]
Info: time since start : 198.780599569 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000316466 s
sph::RenderFieldGetter compute custom field took : 0.000252031 s
rho_t_ampl=0.00026671, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000211881, eps_t_phi=1.13087e-11 rad
vx_t_ampl=5.70736e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 26.11s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 25.745573895392074, dt = 0.040123616834491706 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.56 us (3.3%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 263.49 us (92.1%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.859155976948159e-21,-2.3173661545645915e-19,6.620193459011764e-19)
sum a = (-1.2151061125782548e-19,-9.13825435935839e-20,1.7870991223780998e-19)
sum e = 7.85679767200026e-10
sum de = 7.981000441429603e-25
Info: cfl dt = 0.040123640982677636 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5725e+04 | 2592 | 1 | 5.669e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2548.1045735858893 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25.785697512226566, dt = 0.040123640982677636 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (2.0%)
patch tree reduce : 1.09 us (0.6%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 178.19 us (92.2%)
LB move op cnt : 0
LB apply : 2.75 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2915678494522036e-20,-2.4115579111209106e-19,6.709547000183277e-19)
sum a = (-4.472270117655969e-20,-1.284979427952706e-19,5.821068551430981e-20)
sum e = 7.856797030409394e-10
sum de = -3.2311742677852644e-26
Info: cfl dt = 0.04012366397703482 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6726e+04 | 2592 | 1 | 5.547e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2603.8985302471488 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25.825821153209244, dt = 0.04012366397703482 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (1.8%)
patch tree reduce : 781.00 ns (0.4%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 501.00 ns (0.3%)
LB compute : 178.08 us (94.1%)
LB move op cnt : 0
LB apply : 2.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3152503247693644e-20,-2.470558700668651e-19,6.708728921479482e-19)
sum a = (-4.31217411972702e-19,-1.2092727882156584e-19,-9.40664439198397e-20)
sum e = 7.856796497055332e-10
sum de = -3.2311742677852644e-26
Info: cfl dt = 0.040123685825295914 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6488e+04 | 2592 | 1 | 5.576e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2590.66397847992 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25.86594481718628, dt = 0.040123685825295914 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (1.8%)
patch tree reduce : 1.17 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.6%)
LB compute : 177.97 us (92.8%)
LB move op cnt : 0
LB apply : 2.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.8203345005122704e-20,-2.5175498255867784e-19,6.640436415189339e-19)
sum a = (9.453271847328799e-20,-2.5923678590025693e-19,8.369852609018751e-20)
sum e = 7.856795952308562e-10
sum de = -1.809457589959748e-25
Info: cfl dt = 0.040123706531389455 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6933e+04 | 2592 | 1 | 5.523e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2615.441984175764 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25.906068503011575, dt = 0.040123706531389455 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.19 us (2.0%)
patch tree reduce : 1.21 us (0.6%)
gen split merge : 821.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.5%)
LB compute : 190.51 us (92.9%)
LB move op cnt : 0
LB apply : 2.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3884176884909772e-20,-2.6493542003571345e-19,6.709682295206285e-19)
sum a = (-6.408112211057335e-20,6.530920120789602e-20,3.7056749592069506e-20)
sum e = 7.856795399209468e-10
sum de = 2.5849394142282115e-26
Info: cfl dt = 0.040123726099639476 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6187e+04 | 2592 | 1 | 5.612e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2573.8920336248993 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25.946192209542964, dt = 0.040123726099639476 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (1.6%)
patch tree reduce : 892.00 ns (0.4%)
gen split merge : 450.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 490.00 ns (0.2%)
LB compute : 194.94 us (94.7%)
LB move op cnt : 0
LB apply : 1.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.964355769924793e-20,-2.5580092704087584e-19,6.715193639153016e-19)
sum a = (-1.9444195449993245e-19,-1.4021232105387043e-19,5.790977292811945e-20)
sum e = 7.856794838431059e-10
sum de = 1.3829425866120931e-24
Info: cfl dt = 0.04012374453470225 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6158e+04 | 2592 | 1 | 5.615e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2572.288021755678 (tsim/hr) [sph::Model][rank=0]
---------------- t = 25.986315935642605, dt = 0.04012374453470225 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (1.9%)
patch tree reduce : 1.55 us (0.8%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.6%)
LB compute : 185.84 us (92.9%)
LB move op cnt : 0
LB apply : 2.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.0062203648837405e-20,-2.655483298912764e-19,6.742612713486529e-19)
sum a = (-1.5609318718323516e-19,-3.0348683888935605e-19,8.958913724217485e-21)
sum e = 7.856794270664402e-10
sum de = 2.1971985020939798e-25
Info: cfl dt = 0.04012376184156291 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.0594e+04 | 2592 | 1 | 6.385e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2262.199955868542 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26.026439680177308, dt = 0.04012376184156291 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (2.1%)
patch tree reduce : 1.46 us (0.7%)
gen split merge : 911.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.13 us (0.6%)
LB compute : 186.04 us (92.0%)
LB move op cnt : 0
LB apply : 2.86 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.5525399472652184e-20,-2.8100027209105694e-19,6.73638690784589e-19)
sum a = (5.462292069336067e-20,1.46708621216163e-20,1.3726911253511024e-19)
sum e = 7.856793696601944e-10
sum de = -1.6802106192483375e-25
Info: cfl dt = 0.040123778025531624 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5470e+04 | 2592 | 1 | 5.700e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2533.9336575458055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26.06656344201887, dt = 0.040123778025531624 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (1.9%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 561.00 ns (0.3%)
LB compute : 172.15 us (93.8%)
LB move op cnt : 0
LB apply : 1.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9128460953331656e-20,-2.7403478984512842e-19,6.817205901151357e-19)
sum a = (3.433149649932384e-19,7.471060987207147e-20,-7.887174618261041e-22)
sum e = 7.856793116934178e-10
sum de = -1.0598251598335667e-24
Info: cfl dt = 0.04012379309223943 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5577e+04 | 2592 | 1 | 5.687e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2539.886727130891 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26.106687220044403, dt = 0.0015003921841802992 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (1.9%)
patch tree reduce : 962.00 ns (0.5%)
gen split merge : 681.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 179.72 us (92.8%)
LB move op cnt : 0
LB apply : 2.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.279807162744356e-20,-2.7271181652754097e-19,6.789497058668797e-19)
sum a = (2.0539874516184597e-20,-1.6970557822134618e-21,-1.9290387732914927e-19)
sum e = 7.856773142732633e-10
sum de = -1.2407709188295415e-24
Info: cfl dt = 0.04012379363420547 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5107e+04 | 2592 | 1 | 5.746e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.9978134349035 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 723 [SPH][rank=0]
Info: time since start : 199.583230348 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000279211 s
sph::RenderFieldGetter compute custom field took : 0.000245852 s
rho_t_ampl=0.000268533, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000206542, eps_t_phi=1.20641e-11 rad
vx_t_ampl=1.55566e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 26.47s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 26.108187612228583, dt = 0.04012379363420547 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.62 us (3.8%)
patch tree reduce : 1.51 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.4%)
LB compute : 233.74 us (91.2%)
LB move op cnt : 0
LB apply : 3.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2269786054887293e-20,-2.7283752055958e-19,6.710655464594846e-19)
sum a = (6.280600670060861e-20,-4.946435688346405e-20,-9.051922846718137e-20)
sum e = 7.856792750619386e-10
sum de = 1.2149215246872594e-24
Info: cfl dt = 0.040123807552416235 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5196e+04 | 2592 | 1 | 5.735e-02 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2518.65661545947 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26.14831140586279, dt = 0.040123807552416235 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (1.8%)
patch tree reduce : 781.00 ns (0.4%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 181.43 us (92.7%)
LB move op cnt : 0
LB apply : 2.82 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.890371141917496e-20,-2.757790359890428e-19,6.694876006178237e-19)
sum a = (1.2337891824381763e-19,1.9580944799553372e-20,9.671257669603699e-20)
sum e = 7.856792033642532e-10
sum de = 7.237830359838992e-25
Info: cfl dt = 0.04012382036138151 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5584e+04 | 2592 | 1 | 5.686e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2540.2742098439376 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26.188435213415204, dt = 0.04012382036138151 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.54 us (2.2%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 580.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.6%)
LB compute : 188.39 us (92.5%)
LB move op cnt : 0
LB apply : 2.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.268670220061621e-20,-2.7361043603762405e-19,6.771243051309176e-19)
sum a = (1.36642747611389e-19,-6.711827633075213e-20,3.09150782835968e-19)
sum e = 7.856791443212089e-10
sum de = -5.169878828456423e-25
Info: cfl dt = 0.040123832072173994 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.3897e+04 | 2592 | 1 | 5.905e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2446.2823831764363 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26.228559033776584, dt = 0.040123832072173994 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (1.9%)
patch tree reduce : 641.00 ns (0.3%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.3%)
LB compute : 182.33 us (93.7%)
LB move op cnt : 0
LB apply : 2.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.691746224651028e-20,-2.780427355594715e-19,6.937905354368402e-19)
sum a = (1.2123455534432796e-19,-1.3927755136463887e-19,-6.006280969496513e-20)
sum e = 7.856790847868213e-10
sum de = -1.550963648536927e-25
Info: cfl dt = 0.04012384269161884 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6225e+04 | 2592 | 1 | 5.607e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2575.987107666615 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26.268682865848756, dt = 0.04012384269161884 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (2.0%)
patch tree reduce : 731.00 ns (0.4%)
gen split merge : 550.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.5%)
LB compute : 184.41 us (93.1%)
LB move op cnt : 0
LB apply : 1.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.242662408229168e-20,-2.8507599939130343e-19,6.839734526163758e-19)
sum a = (5.095203431982815e-19,6.120279247009096e-20,-5.244300325376164e-20)
sum e = 7.856790250371418e-10
sum de = -2.455692443516801e-24
Info: cfl dt = 0.04012385222690018 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6432e+04 | 2592 | 1 | 5.582e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2587.5559829688195 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26.308806708540374, dt = 0.04012385222690018 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (1.9%)
patch tree reduce : 1.48 us (0.7%)
gen split merge : 841.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.5%)
LB compute : 191.59 us (92.6%)
LB move op cnt : 0
LB apply : 2.69 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5861712696378392e-20,-2.7859587438019236e-19,6.820221052609894e-19)
sum a = (6.901726475430283e-20,1.2782495380674781e-19,-3.457492968559405e-20)
sum e = 7.856789651370372e-10
sum de = -9.822769774067204e-25
Info: cfl dt = 0.040123860685496525 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6587e+04 | 2592 | 1 | 5.564e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2596.1646445900024 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26.348930560767275, dt = 0.040123860685496525 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (1.9%)
patch tree reduce : 651.00 ns (0.3%)
gen split merge : 701.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 541.00 ns (0.3%)
LB compute : 185.16 us (93.9%)
LB move op cnt : 0
LB apply : 2.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.816416828774942e-21,-2.7213423525614583e-19,6.809932935707812e-19)
sum a = (3.4207928614234477e-20,-9.531220671117719e-20,1.3944682520111988e-19)
sum e = 7.856789051524053e-10
sum de = -9.564275832644382e-25
Info: cfl dt = 0.04012386807517679 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6491e+04 | 2592 | 1 | 5.575e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2590.835318849991 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26.389054421452773, dt = 0.04012386807517679 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (1.8%)
patch tree reduce : 761.00 ns (0.4%)
gen split merge : 591.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.4%)
LB compute : 190.38 us (93.5%)
LB move op cnt : 0
LB apply : 2.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0509842992441335e-20,-2.8043275535817473e-19,6.900796519133431e-19)
sum a = (-3.9757145432523035e-19,-1.5168425176864985e-19,1.081259455874758e-19)
sum e = 7.856788451485815e-10
sum de = -1.0339757656912846e-25
Info: cfl dt = 0.04012387440399578 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6198e+04 | 2592 | 1 | 5.611e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2574.494141664417 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26.42917828952795, dt = 0.04012387440399578 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 us (1.9%)
patch tree reduce : 1.61 us (0.8%)
gen split merge : 691.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.6%)
LB compute : 179.74 us (92.2%)
LB move op cnt : 0
LB apply : 2.75 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4253029724270815e-20,-2.8765190505437816e-19,6.9378972635308e-19)
sum a = (-3.217070170022122e-19,1.1562221435668253e-19,-1.1734309942341085e-19)
sum e = 7.856787851899776e-10
sum de = -2.507391231801365e-24
Info: cfl dt = 0.0401238796802895 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6496e+04 | 2592 | 1 | 5.575e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2591.1024598079457 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26.469302163931946, dt = 0.0014991651331435207 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (1.8%)
patch tree reduce : 982.00 ns (0.5%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 581.00 ns (0.3%)
LB compute : 198.27 us (94.3%)
LB move op cnt : 0
LB apply : 2.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3111834296151598e-20,-2.8211599807477607e-19,6.890904638477813e-19)
sum a = (2.729322093810996e-19,6.2689494262415554e-21,-1.8515611722673215e-19)
sum e = 7.856772187493024e-10
sum de = 4.652890945610781e-25
Info: cfl dt = 0.04012387985730181 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5473e+04 | 2592 | 1 | 5.700e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.68356052089511 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 733 [SPH][rank=0]
Info: time since start : 200.53644907 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000321314 s
sph::RenderFieldGetter compute custom field took : 0.00024953700000000003 s
rho_t_ampl=0.000273526, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000201686, eps_t_phi=1.24762e-11 rad
vx_t_ampl=2.89987e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 26.83s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 26.47080132906509, dt = 0.04012387985730181 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.79 us (3.4%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 263.80 us (92.0%)
LB move op cnt : 0
LB apply : 3.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.746710928856338e-21,-2.819444901225659e-19,6.816104505894111e-19)
sum a = (-5.3480903670260804e-20,-8.697866612309819e-20,8.99255087096444e-20)
sum e = 7.856787475640039e-10
sum de = -2.5849394142282115e-25
Info: cfl dt = 0.04012388405537259 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5090e+04 | 2592 | 1 | 5.749e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2512.734893976092 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26.51092520892239, dt = 0.04012388405537259 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (1.6%)
patch tree reduce : 1.11 us (0.5%)
gen split merge : 861.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 219.73 us (93.9%)
LB move op cnt : 0
LB apply : 2.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0460547293602492e-20,-2.873056027700353e-19,6.907372823294886e-19)
sum a = (3.018589254597327e-19,-7.696326925994771e-20,3.2664464895113835e-21)
sum e = 7.856786750051465e-10
sum de = -1.5509636485369269e-24
Info: cfl dt = 0.040123887214053154 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5278e+04 | 2592 | 1 | 5.725e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2523.24229493289 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26.551049092977763, dt = 0.040123887214053154 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (1.8%)
patch tree reduce : 681.00 ns (0.3%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 511.00 ns (0.3%)
LB compute : 190.74 us (94.2%)
LB move op cnt : 0
LB apply : 2.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.63332005664271e-21,-2.901953577157173e-19,6.89129795777611e-19)
sum a = (-1.0449537920861816e-19,1.0111063896193925e-19,-5.802489481704141e-20)
sum e = 7.856786157408582e-10
sum de = 4.652890945610781e-25
Info: cfl dt = 0.04012388934726179 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6228e+04 | 2592 | 1 | 5.607e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2576.1756581155005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26.591172980191818, dt = 0.04012388934726179 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (1.7%)
patch tree reduce : 1.16 us (0.6%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.5%)
LB compute : 195.26 us (93.4%)
LB move op cnt : 0
LB apply : 2.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.5180697071320976e-21,-2.8255986476307085e-19,6.8557198788566225e-19)
sum a = (5.974687994966614e-19,-5.446152862934974e-20,-1.8657949022718956e-20)
sum e = 7.856785565986931e-10
sum de = 4.652890945610781e-25
Info: cfl dt = 0.040123890464363765 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5484e+04 | 2592 | 1 | 5.699e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2534.6973462176106 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26.631296869539078, dt = 0.040123890464363765 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.28 us (2.1%)
patch tree reduce : 1.09 us (0.5%)
gen split merge : 882.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 191.27 us (92.8%)
LB move op cnt : 0
LB apply : 2.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.459572144510004e-20,-2.8786449275562065e-19,6.856131358713336e-19)
sum a = (-5.0782785753814793e-20,1.426867083871489e-19,-1.736648626398864e-19)
sum e = 7.856784978128269e-10
sum de = 1.809457589959748e-24
Info: cfl dt = 0.04012389057503959 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6124e+04 | 2592 | 1 | 5.620e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2570.3994063006753 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26.671420760003443, dt = 0.04012389057503959 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (1.8%)
patch tree reduce : 791.00 ns (0.4%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 651.00 ns (0.3%)
LB compute : 191.65 us (94.1%)
LB move op cnt : 0
LB apply : 2.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9521096740181842e-20,-2.7819041725724286e-19,6.755352857144189e-19)
sum a = (-3.808257054296754e-20,-1.884063637230379e-20,1.1122020703300966e-20)
sum e = 7.856784394395532e-10
sum de = -2.6366382025127757e-24
Info: cfl dt = 0.04012388968922126 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5096e+04 | 2592 | 1 | 5.748e-02 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2513.1103531290396 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26.71154465057848, dt = 0.04012388968922126 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (1.6%)
patch tree reduce : 1.44 us (0.7%)
gen split merge : 841.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 190.03 us (92.9%)
LB move op cnt : 0
LB apply : 2.68 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8127671653003877e-20,-2.8218336886318915e-19,6.796887287897481e-19)
sum a = (7.501162173310614e-20,9.358993823299511e-21,3.1174327682834796e-19)
sum e = 7.856783815355962e-10
sum de = -1.1890721305449773e-24
Info: cfl dt = 0.040123887817087714 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5985e+04 | 2592 | 1 | 5.637e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2562.6210571457696 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26.7516685402677, dt = 0.040123887817087714 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (1.9%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 190.99 us (92.6%)
LB move op cnt : 0
LB apply : 2.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.348118454690223e-20,-2.812422318128576e-19,6.982281281164015e-19)
sum a = (-3.696437977430645e-20,-1.1747444889086577e-19,4.717208001962905e-20)
sum e = 7.856783241563059e-10
sum de = -2.3781442610899546e-24
Info: cfl dt = 0.04012388496905988 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6240e+04 | 2592 | 1 | 5.606e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2576.8444271481408 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26.79179242808479, dt = 0.04012388496905988 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (1.7%)
patch tree reduce : 631.00 ns (0.3%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.3%)
LB compute : 187.81 us (94.5%)
LB move op cnt : 0
LB apply : 1.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9719922725498507e-20,-2.8850266665683853e-19,6.948130427186696e-19)
sum a = (2.1114991002637765e-22,-4.934984708303632e-20,4.8277357781348046e-20)
sum e = 7.85678267355639e-10
sum de = -2.8434333556510326e-24
Info: cfl dt = 0.04012388115579552 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5992e+04 | 2592 | 1 | 5.636e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2563.004161561714 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26.83191631305385, dt = 0.0014987328477467088 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (1.6%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.6%)
LB compute : 190.22 us (93.4%)
LB move op cnt : 0
LB apply : 2.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0508653906919997e-20,-2.8720701137235758e-19,6.949075715994567e-19)
sum a = (2.125310111888459e-19,3.3057901040073297e-21,-3.8033697104307175e-20)
sum e = 7.856771254232336e-10
sum de = -2.223047896236262e-24
Info: cfl dt = 0.040123880994958894 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6110e+04 | 2592 | 1 | 5.621e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.98199783505953 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 743 [SPH][rank=0]
Info: time since start : 201.337346341 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00027400300000000004 s
sph::RenderFieldGetter compute custom field took : 0.00022971900000000003 s
rho_t_ampl=0.000281318, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000197381, eps_t_phi=1.31322e-11 rad
vx_t_ampl=4.06546e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 27.20s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 26.833415045901596, dt = 0.040123880994958894 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.41 us (3.5%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 276.18 us (91.9%)
LB move op cnt : 0
LB apply : 3.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (75.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.910253740449163e-20,-2.870385844013249e-19,6.933168334565484e-19)
sum a = (1.5303931864016883e-19,-4.163964033683724e-20,8.880824460390597e-20)
sum e = 7.856782319549352e-10
sum de = -3.308722450212111e-24
Info: cfl dt = 0.040123876196575876 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3335e+04 | 2592 | 1 | 7.776e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1857.6624789690795 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26.873538926896554, dt = 0.040123876196575876 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.04 us (1.9%)
patch tree reduce : 1.22 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 192.92 us (92.8%)
LB move op cnt : 0
LB apply : 2.63 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.4104407646672904e-20,-2.896058633171028e-19,6.994248599553489e-19)
sum a = (-4.9266121419539726e-20,-1.011275843584151e-19,-4.806703951981982e-20)
sum e = 7.856781645522987e-10
sum de = 1.2924697071141057e-24
Info: cfl dt = 0.04012387045055285 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3508e+04 | 2592 | 1 | 7.735e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1867.337769310234 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26.91366280309313, dt = 0.04012387045055285 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.63 us (2.1%)
patch tree reduce : 1.33 us (0.6%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.4%)
LB compute : 202.15 us (92.6%)
LB move op cnt : 0
LB apply : 2.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.827108328407648e-20,-2.9485564984469443e-19,6.947502408114628e-19)
sum a = (-1.1853232945297872e-19,-7.431763072289056e-20,1.3247773531453222e-20)
sum e = 7.856781099600098e-10
sum de = 1.0339757656912846e-25
Info: cfl dt = 0.040123863773119973 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4402e+04 | 2592 | 1 | 7.534e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1917.1363611144884 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26.953786673543682, dt = 0.040123863773119973 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (1.8%)
patch tree reduce : 1.39 us (0.6%)
gen split merge : 841.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.4%)
LB compute : 213.33 us (93.0%)
LB move op cnt : 0
LB apply : 2.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1913581323827022e-20,-2.9730215429831715e-19,6.965118864797414e-19)
sum a = (-3.1290444837955614e-20,-8.953790881297165e-20,3.148556850784873e-20)
sum e = 7.856780560130252e-10
sum de = -5.169878828456423e-25
Info: cfl dt = 0.040123856175783616 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4509e+04 | 2592 | 1 | 7.511e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1923.117043128967 (tsim/hr) [sph::Model][rank=0]
---------------- t = 26.9939105373168, dt = 0.040123856175783616 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.93 us (1.7%)
patch tree reduce : 1.39 us (0.6%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.5%)
LB compute : 215.92 us (93.6%)
LB move op cnt : 0
LB apply : 2.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2541279889041623e-20,-3.011987738927825e-19,6.981410943027498e-19)
sum a = (3.9559716158673467e-19,-2.930564595364492e-19,-1.578446384481303e-19)
sum e = 7.856780028953091e-10
sum de = -8.271806125530277e-25
Info: cfl dt = 0.04012384767031653 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4090e+04 | 2592 | 1 | 7.603e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1899.7299877740575 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27.034034393492583, dt = 0.04012384767031653 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (2.0%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 620.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 192.73 us (92.8%)
LB move op cnt : 0
LB apply : 2.66 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (59.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.6904857445159145e-20,-3.17042822297077e-19,6.880094310772654e-19)
sum a = (3.6725295634938056e-22,-5.57551042515359e-20,3.037259886285442e-20)
sum e = 7.85677950650012e-10
sum de = -3.774011544773189e-24
Info: cfl dt = 0.04012383826869631 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3786e+04 | 2592 | 1 | 7.672e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1882.8081722235586 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27.0741582411629, dt = 0.04012383826869631 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (2.0%)
patch tree reduce : 1.27 us (0.6%)
gen split merge : 881.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 201.83 us (92.3%)
LB move op cnt : 0
LB apply : 2.78 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.8846653874969605e-20,-3.1451682852907665e-19,6.930040962012077e-19)
sum a = (9.693999176658482e-20,-1.3998622838513353e-19,1.0936143264172688e-19)
sum e = 7.856778993200625e-10
sum de = -2.1713491079516976e-24
Info: cfl dt = 0.04012382798310059 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.3759e+04 | 2592 | 1 | 7.678e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1881.3131183497394 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27.114282079431593, dt = 0.04012382798310059 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (1.9%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 782.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.4%)
LB compute : 195.26 us (86.8%)
LB move op cnt : 0
LB apply : 2.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.4903452072302115e-20,-3.2182676447064155e-19,6.989767631083157e-19)
sum a = (-1.3760730011866902e-19,-3.902234682661242e-20,1.105444793279719e-20)
sum e = 7.856778489467845e-10
sum de = -1.809457589959748e-24
Info: cfl dt = 0.04012381682590165 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.2950e+04 | 2592 | 1 | 7.867e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1836.208899774822 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27.154405907414695, dt = 0.04012381682590165 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.8%)
patch tree reduce : 1.37 us (0.6%)
gen split merge : 772.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 208.65 us (88.0%)
LB move op cnt : 0
LB apply : 15.04 us (6.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.4635158004171113e-20,-3.2136030392037903e-19,6.9744808348026e-19)
sum a = (3.026180792218509e-20,-6.024930582020654e-20,-1.0231364217678116e-20)
sum e = 7.856777995696637e-10
sum de = -1.9645539548134407e-24
Info: cfl dt = 0.04012380480966109 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.8630e+04 | 2592 | 1 | 6.710e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2152.7582150266917 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27.194529724240596, dt = 0.0014990384975135385 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (1.9%)
patch tree reduce : 1.10 us (0.5%)
gen split merge : 732.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.4%)
LB compute : 206.57 us (93.5%)
LB move op cnt : 0
LB apply : 2.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.810393201246437e-20,-3.21879346549403e-19,6.970057122575749e-19)
sum a = (-3.370503032658021e-19,-1.7516222696015892e-19,-8.99974811223224e-20)
sum e = 7.856770417592157e-10
sum de = -5.635167923017501e-24
Info: cfl dt = 0.040123804344403664 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5411e+04 | 2592 | 1 | 5.708e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.54561117381043 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 753 [SPH][rank=0]
Info: time since start : 202.30832003900002 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000315925 s
sph::RenderFieldGetter compute custom field took : 0.00025525600000000004 s
rho_t_ampl=0.000291489, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000193679, eps_t_phi=1.35545e-11 rad
vx_t_ampl=5.03424e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 27.56s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 27.19602876273811, dt = 0.040123804344403664 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.35 us (3.4%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 281.17 us (92.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.411216949203942e-20,-3.289941536830642e-19,6.933348846935142e-19)
sum a = (2.7061284675073205e-19,-8.352812125343805e-20,9.093903975354059e-20)
sum e = 7.856777690352806e-10
sum de = -4.652890945610781e-25
Info: cfl dt = 0.04012379145517126 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.8554e+04 | 2592 | 1 | 6.723e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2148.508270424488 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27.236152567082513, dt = 0.04012379145517126 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (2.0%)
patch tree reduce : 1.40 us (0.6%)
gen split merge : 691.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.6%)
LB compute : 205.54 us (92.8%)
LB move op cnt : 0
LB apply : 2.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.720391801811479e-20,-3.305083532323973e-19,7.006136345408817e-19)
sum a = (-5.509944578213614e-20,-3.9121734144427605e-20,3.2350808497532977e-20)
sum e = 7.856777116336835e-10
sum de = -1.3958672836832342e-24
Info: cfl dt = 0.04012377772822529 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.4699e+04 | 2592 | 1 | 7.470e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1933.6833752199109 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27.276276358537686, dt = 0.04012377772822529 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (1.9%)
patch tree reduce : 1.36 us (0.6%)
gen split merge : 1.07 us (0.5%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.4%)
LB compute : 201.65 us (92.7%)
LB move op cnt : 0
LB apply : 2.88 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.855087968193655e-20,-3.311841151039798e-19,7.007362802040576e-19)
sum a = (-1.4353592949902055e-19,-1.3500017384632971e-19,-1.3291761583880238e-19)
sum e = 7.856776656038173e-10
sum de = -3.7223127564886245e-24
Info: cfl dt = 0.040123763181549026 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.9211e+04 | 2592 | 1 | 6.610e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2185.1277538665354 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27.316400136265912, dt = 0.040123763181549026 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (1.8%)
patch tree reduce : 1.09 us (0.5%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 691.00 ns (0.3%)
LB compute : 211.12 us (94.2%)
LB move op cnt : 0
LB apply : 2.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.089197127234163e-20,-3.3852876343347706e-19,6.920875285017157e-19)
sum a = (1.2729874789648631e-19,-8.312664373117608e-20,-1.1131639366136552e-19)
sum e = 7.856776206127398e-10
sum de = 2.8434333556510326e-24
Info: cfl dt = 0.04012374782836151 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5871e+04 | 2592 | 1 | 5.651e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2556.2997911552216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27.35652389944746, dt = 0.04012374782836151 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (1.7%)
patch tree reduce : 1.01 us (0.5%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.4%)
LB compute : 197.91 us (94.1%)
LB move op cnt : 0
LB apply : 2.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.14231757342798e-20,-3.4082388901191553e-19,6.880544587547743e-19)
sum a = (-2.3065621805690784e-19,1.7714281003522517e-20,-8.204867322189668e-20)
sum e = 7.856775767906306e-10
sum de = -2.7917345673664684e-24
Info: cfl dt = 0.0401237316820959 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6583e+04 | 2592 | 1 | 5.564e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2595.9691577755725 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27.39664764727582, dt = 0.0401237316820959 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (1.9%)
patch tree reduce : 1.27 us (0.7%)
gen split merge : 681.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 179.39 us (92.7%)
LB move op cnt : 0
LB apply : 2.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4869680064196308e-20,-3.380840751502017e-19,6.85349525122784e-19)
sum a = (8.589364725178075e-20,-9.699311301705231e-20,-2.4844916182383687e-20)
sum e = 7.856775341648645e-10
sum de = 7.754818242684634e-25
Info: cfl dt = 0.04012371475634109 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6536e+04 | 2592 | 1 | 5.570e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2593.30942462035 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27.436771378957918, dt = 0.04012371475634109 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (1.8%)
patch tree reduce : 1.13 us (0.5%)
gen split merge : 911.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 461.00 ns (0.2%)
LB compute : 195.91 us (94.0%)
LB move op cnt : 0
LB apply : 2.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.4883279688326625e-20,-3.4427869590553777e-19,6.855002688920839e-19)
sum a = (-4.011355333512787e-20,6.795727885505198e-20,-1.1817133856978376e-19)
sum e = 7.856774927621742e-10
sum de = -1.550963648536927e-25
Info: cfl dt = 0.0401236970648369 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5298e+04 | 2592 | 1 | 5.722e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2524.362417689787 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27.47689509371426, dt = 0.0401236970648369 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (1.9%)
patch tree reduce : 891.00 ns (0.5%)
gen split merge : 621.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.5%)
LB compute : 175.72 us (93.3%)
LB move op cnt : 0
LB apply : 1.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.069150209706367e-20,-3.3824469696891826e-19,6.788864965260391e-19)
sum a = (2.2388874020131533e-19,-2.5737161124512848e-19,-7.270546317269504e-20)
sum e = 7.856774526072991e-10
sum de = -6.048758229294015e-24
Info: cfl dt = 0.040123678621468525 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6502e+04 | 2592 | 1 | 5.574e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2591.4406275198803 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27.517018790779094, dt = 0.040123678621468525 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (1.6%)
patch tree reduce : 1.13 us (0.6%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.5%)
LB compute : 179.42 us (93.4%)
LB move op cnt : 0
LB apply : 1.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.498889795028945e-20,-3.550966370157219e-19,6.768814153932471e-19)
sum a = (2.0797115904625291e-19,-7.898978462940077e-20,-7.587056656895464e-20)
sum e = 7.856774137232471e-10
sum de = 1.5509636485369269e-24
Info: cfl dt = 0.040123659440261 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5845e+04 | 2592 | 1 | 5.654e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2554.8228390410495 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27.557142469400564, dt = 0.00150001017405188 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.48 us (1.8%)
patch tree reduce : 1.14 us (0.6%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.4%)
LB compute : 178.77 us (93.2%)
LB move op cnt : 0
LB apply : 2.90 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.4885376982727875e-20,-3.5163279257731253e-19,6.7670411097571445e-19)
sum a = (-6.781444970263506e-21,6.256153084417973e-20,-2.422388585292769e-20)
sum e = 7.856769734429906e-10
sum de = -5.686866711302065e-25
Info: cfl dt = 0.04012365870920134 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6676e+04 | 2592 | 1 | 5.553e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.24132774113237 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 763 [SPH][rank=0]
Info: time since start : 203.14460738900002 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000306712 s
sph::RenderFieldGetter compute custom field took : 0.00023964300000000002 s
rho_t_ampl=0.000303587, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000190611, eps_t_phi=1.38889e-11 rad
vx_t_ampl=5.7942e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 27.92s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 27.558642479574615, dt = 0.04012365870920134 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.57 us (3.9%)
patch tree reduce : 1.61 us (0.7%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.4%)
LB compute : 222.72 us (90.7%)
LB move op cnt : 0
LB apply : 3.52 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.457317089008187e-20,-3.49020325937599e-19,6.757708953204432e-19)
sum a = (-3.244396419078454e-19,-7.406632535818504e-20,1.4428638472207106e-19)
sum e = 7.856773899289981e-10
sum de = -4.8596860987490376e-24
Info: cfl dt = 0.04012363878210015 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5790e+04 | 2592 | 1 | 5.661e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2551.751567102981 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27.598766138283818, dt = 0.04012363878210015 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (1.9%)
patch tree reduce : 1.34 us (0.7%)
gen split merge : 771.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.5%)
LB compute : 181.90 us (92.6%)
LB move op cnt : 0
LB apply : 2.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5140806407809945e-20,-3.547279462681564e-19,6.84940814394992e-19)
sum a = (-1.9630368872607943e-19,-7.456690777498761e-20,5.3556714018705016e-20)
sum e = 7.856773458670679e-10
sum de = 2.223047896236262e-24
Info: cfl dt = 0.04012361814144016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6166e+04 | 2592 | 1 | 5.615e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2572.6958094192096 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27.638889777065916, dt = 0.04012361814144016 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (1.7%)
patch tree reduce : 651.00 ns (0.3%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.4%)
LB compute : 205.80 us (94.3%)
LB move op cnt : 0
LB apply : 2.05 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9943396560234595e-20,-3.5773272451112904e-19,6.852695012701476e-19)
sum a = (2.461358890872852e-19,-3.344841540431226e-21,9.84016648903216e-20)
sum e = 7.85677311027551e-10
sum de = -2.3781442610899546e-24
Info: cfl dt = 0.04012359680638898 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.1297e+04 | 2592 | 1 | 6.276e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2301.365780716031 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27.679013395207356, dt = 0.04012359680638898 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (1.7%)
patch tree reduce : 1.24 us (0.6%)
gen split merge : 791.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.4%)
LB compute : 210.25 us (93.5%)
LB move op cnt : 0
LB apply : 2.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.8647827889652934e-20,-3.564387124166094e-19,6.901174008394236e-19)
sum a = (1.860263571131613e-19,-2.0169088701418432e-19,-9.130128466574051e-20)
sum e = 7.856772774677329e-10
sum de = -2.481541837659083e-24
Info: cfl dt = 0.04012357479143319 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 3.5122e+04 | 2592 | 1 | 7.380e-02 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1957.237830720911 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27.719136992013745, dt = 0.04012357479143319 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.62 us (2.1%)
patch tree reduce : 1.18 us (0.5%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 202.87 us (92.9%)
LB move op cnt : 0
LB apply : 2.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.48459404236568e-20,-3.6851081826475174e-19,6.826482845851011e-19)
sum a = (-1.1258357099560133e-19,1.5900081181974625e-19,-3.056141622823927e-20)
sum e = 7.856772452663454e-10
sum de = -2.0679515313825692e-25
Info: cfl dt = 0.04012355211121891 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5418e+04 | 2592 | 1 | 5.707e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2531.0048905265053 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27.759260566805178, dt = 0.04012355211121891 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (1.6%)
patch tree reduce : 831.00 ns (0.4%)
gen split merge : 751.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 198.13 us (93.8%)
LB move op cnt : 0
LB apply : 2.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.452670746672566e-20,-3.548974002329149e-19,6.826406023355109e-19)
sum a = (1.9540938258964474e-19,-2.229225958537603e-20,-8.473993818097069e-20)
sum e = 7.856772144340954e-10
sum de = -7.237830359838992e-25
Info: cfl dt = 0.04012352878049816 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5939e+04 | 2592 | 1 | 5.642e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2560.0577656432365 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27.799384118916397, dt = 0.04012352878049816 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (1.7%)
patch tree reduce : 801.00 ns (0.4%)
gen split merge : 641.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 181.05 us (94.1%)
LB move op cnt : 0
LB apply : 2.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.8290066582530634e-20,-3.5943548010852074e-19,6.781536196126451e-19)
sum a = (-2.3986465460000372e-21,-1.8295587694658e-19,3.673878978751116e-21)
sum e = 7.856771849807403e-10
sum de = -1.34416849539867e-24
Info: cfl dt = 0.04012350481412391 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6200e+04 | 2592 | 1 | 5.610e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2574.6038397599314 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27.839507647696895, dt = 0.04012350481412391 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (1.7%)
patch tree reduce : 1.14 us (0.6%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.5%)
LB compute : 181.95 us (93.1%)
LB move op cnt : 0
LB apply : 2.28 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.4244532897822914e-20,-3.6999441340105573e-19,6.800747656822194e-19)
sum a = (-5.83739125775063e-20,-1.387961480556658e-20,4.695742292447972e-22)
sum e = 7.856771569141881e-10
sum de = 1.9645539548134407e-24
Info: cfl dt = 0.040123480227044636 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6483e+04 | 2592 | 1 | 5.576e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2590.3726710654505 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27.879631152511017, dt = 0.040123480227044636 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.16 us (1.9%)
patch tree reduce : 1.21 us (0.6%)
gen split merge : 801.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.5%)
LB compute : 202.31 us (93.4%)
LB move op cnt : 0
LB apply : 2.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (56.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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.068538344165845e-20,-3.6716155390778354e-19,6.800293226660091e-19)
sum a = (-9.162550463426721e-20,1.2211738482587673e-19,5.391665138133723e-20)
sum e = 7.856771302405218e-10
sum de = 5.169878828456423e-24
Info: cfl dt = 0.0401234550342987 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5445e+04 | 2592 | 1 | 5.704e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2532.5032465722893 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27.919754632738062, dt = 0.001501563673059536 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (1.7%)
patch tree reduce : 751.00 ns (0.4%)
gen split merge : 541.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.4%)
LB compute : 195.03 us (94.0%)
LB move op cnt : 0
LB apply : 2.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.0162849033966714e-20,-3.6424920510013373e-19,6.811825233227277e-19)
sum a = (2.525410435564122e-19,-9.003523052469477e-20,-2.989805799072573e-19)
sum e = 7.856769240401836e-10
sum de = 1.137373342260413e-24
Info: cfl dt = 0.040123454080072084 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6623e+04 | 2592 | 1 | 5.560e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.23167196694762 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 773 [SPH][rank=0]
Info: time since start : 203.96458643900002 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000329085 s
sph::RenderFieldGetter compute custom field took : 0.00023152100000000002 s
rho_t_ampl=0.000317139, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000188192, eps_t_phi=1.41216e-11 rad
vx_t_ampl=6.33939e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 28.28s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 27.92125619641112, dt = 0.040123454080072084 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.14 us (4.0%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.4%)
LB compute : 228.80 us (90.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.036048593376204e-20,-3.6801929906757945e-19,6.689214409225316e-19)
sum a = (5.0362950718703983e-20,-4.245075998148137e-20,1.5578790161633974e-19)
sum e = 7.856771142023422e-10
sum de = 7.237830359838992e-25
Info: cfl dt = 0.04012342827932317 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6243e+04 | 2592 | 1 | 5.605e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2577.008598927857 (tsim/hr) [sph::Model][rank=0]
---------------- t = 27.961379650491192, dt = 0.04012342827932317 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (1.8%)
patch tree reduce : 891.00 ns (0.5%)
gen split merge : 561.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 631.00 ns (0.3%)
LB compute : 182.33 us (94.2%)
LB move op cnt : 0
LB apply : 2.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.8385371600285727e-20,-3.687661289049879e-19,6.842956267625902e-19)
sum a = (1.884365059888904e-19,-1.2621832482209186e-19,1.1201451782149551e-19)
sum e = 7.856770851674294e-10
sum de = 3.5155176033503676e-24
Info: cfl dt = 0.04012340189933445 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6587e+04 | 2592 | 1 | 5.564e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2596.1517719194185 (tsim/hr) [sph::Model][rank=0]
---------------- t = 28.001503078770515, dt = 0.04012340189933445 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (1.8%)
patch tree reduce : 1.45 us (0.8%)
gen split merge : 631.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.5%)
LB compute : 178.03 us (92.7%)
LB move op cnt : 0
LB apply : 2.39 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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: 2.2727623456790123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.893136477187555e-20,-3.755120398923384e-19,6.879118611671009e-19)
sum a = (1.7550090381608765e-20,-1.5596234818256707e-20,3.014232413666231e-20)
sum e = 7.856770627785095e-10
sum de = -1.0339757656912846e-24
Info: cfl dt = 0.04012337495989443 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6512e+04 | 2592 | 1 | 5.573e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2591.9534456499996 (tsim/hr) [sph::Model][rank=0]
---------------- t = 28.041626480669848, dt = 0.04012337495989443 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (1.9%)
patch tree reduce : 1.11 us (0.5%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.4%)
LB compute : 195.11 us (93.2%)
LB move op cnt : 0
LB apply : 2.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (62.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.60229185403838e-20,-3.739148592499599e-19,6.874787774748268e-19)
sum a = (3.374717814908742e-19,-3.0185759036788916e-20,7.151913834734355e-20)
sum e = 7.856770417534341e-10
sum de = 2.3781442610899546e-24
Info: cfl dt = 0.0401233474763075 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5308e+04 | 2592 | 1 | 5.721e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2524.870498449374 (tsim/hr) [sph::Model][rank=0]
---------------- t = 28.08174985562974, dt = 0.0401233474763075 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (2.0%)
patch tree reduce : 991.00 ns (0.5%)
gen split merge : 621.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 631.00 ns (0.3%)
LB compute : 180.64 us (93.9%)
LB move op cnt : 0
LB apply : 1.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (60.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.611913176701882e-20,-3.754237184319188e-19,6.911784534295188e-19)
sum a = (1.3425642499009866e-19,1.8558323499531777e-19,-9.014862353285915e-20)
sum e = 7.856770221254975e-10
sum de = -4.446095792472524e-24
Info: cfl dt = 0.040123319463982385 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6688e+04 | 2592 | 1 | 5.552e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2601.792097328702 (tsim/hr) [sph::Model][rank=0]
---------------- t = 28.12187320310605, dt = 0.040123319463982385 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.23 us (2.1%)
patch tree reduce : 1.21 us (0.6%)
gen split merge : 831.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.5%)
LB compute : 189.70 us (92.6%)
LB move op cnt : 0
LB apply : 2.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.748626581481607e-20,-3.636475921755547e-19,6.84318065515438e-19)
sum a = (-1.1008551145694296e-20,-7.350373819518675e-20,-3.931996321980491e-20)
sum e = 7.856770038896899e-10
sum de = -3.308722450212111e-24
Info: cfl dt = 0.0401232909383843 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6296e+04 | 2592 | 1 | 5.599e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2579.909042838243 (tsim/hr) [sph::Model][rank=0]
---------------- t = 28.161996522570032, dt = 0.0401232909383843 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (2.0%)
patch tree reduce : 1.30 us (0.7%)
gen split merge : 681.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.4%)
LB compute : 178.05 us (92.7%)
LB move op cnt : 0
LB apply : 2.58 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (59.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.391725721888383e-20,-3.717965819911058e-19,6.837601264793297e-19)
sum a = (-7.546041799128478e-20,-1.609504567088225e-20,-1.8582920542418733e-19)
sum e = 7.856769870399536e-10
sum de = 2.895132143935597e-24
Info: cfl dt = 0.04012326191503008 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6064e+04 | 2592 | 1 | 5.627e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2567.0009089504456 (tsim/hr) [sph::Model][rank=0]
---------------- t = 28.202119813508418, dt = 0.04012326191503008 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (1.7%)
patch tree reduce : 992.00 ns (0.5%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.3%)
LB compute : 191.21 us (94.3%)
LB move op cnt : 0
LB apply : 2.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.962524503998189e-20,-3.712855499131431e-19,6.733648361235615e-19)
sum a = (-9.841496015559203e-20,-1.0354158446061598e-19,2.4836021269316222e-20)
sum e = 7.856769715685198e-10
sum de = -3.2053248736429822e-24
Info: cfl dt = 0.040123232409482755 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6626e+04 | 2592 | 1 | 5.559e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2598.293788612769 (tsim/hr) [sph::Model][rank=0]
---------------- t = 28.24224307542345, dt = 0.040123232409482755 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 us (1.6%)
patch tree reduce : 1.12 us (0.5%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.4%)
LB compute : 206.84 us (94.0%)
LB move op cnt : 0
LB apply : 2.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.506703608735021e-20,-3.7720010947945105e-19,6.785876256106041e-19)
sum a = (-6.471724202433959e-20,7.80376330713599e-20,-7.108298666875381e-20)
sum e = 7.856769574661851e-10
sum de = -2.0679515313825692e-25
Info: cfl dt = 0.04012320243734621 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6002e+04 | 2592 | 1 | 5.635e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2563.555172367465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 28.28236630783293, dt = 0.001503605414704623 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (2.0%)
patch tree reduce : 1.55 us (0.8%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.5%)
LB compute : 174.06 us (92.3%)
LB move op cnt : 0
LB apply : 2.61 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.577032139078438e-20,-3.7343874495867473e-19,6.765564545230131e-19)
sum a = (4.978635536128565e-19,-4.729316377288761e-20,-1.343561723128741e-19)
sum e = 7.856768949040787e-10
sum de = 5.0664812518872945e-24
Info: cfl dt = 0.04012320130540614 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6388e+04 | 2592 | 1 | 5.588e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.8739950347396 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 783 [SPH][rank=0]
Info: time since start : 204.757376679 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.00029993200000000004 s
sph::RenderFieldGetter compute custom field took : 0.00024624200000000003 s
rho_t_ampl=0.000331666, rho_t_phi=3.14159 rad
eps_t_ampl=-0.00018642, eps_t_phi=1.48956e-11 rad
vx_t_ampl=6.66971e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 28.65s, niter_max = -1, max_walltime = -1.00s) [SPH][rank=0]
---------------- t = 28.283869913247635, dt = 0.04012320130540614 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.04 us (4.1%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 671.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 224.01 us (90.7%)
LB move op cnt : 0
LB apply : 3.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.592240307610341e-20,-3.754313181854898e-19,6.711180858223473e-19)
sum a = (-1.1241617101829443e-19,-2.3379014076090097e-19,-8.378979737626785e-20)
sum e = 7.856769493466354e-10
sum de = 6.927637630131607e-24
Info: cfl dt = 0.0401231708697567 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6108e+04 | 2592 | 1 | 5.622e-02 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2569.446833146217 (tsim/hr) [sph::Model][rank=0]
---------------- t = 28.32399311455304, dt = 0.0401231708697567 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.04 us (2.0%)
patch tree reduce : 1.19 us (0.6%)
gen split merge : 701.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 185.74 us (92.5%)
LB move op cnt : 0
LB apply : 2.79 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.955294468168493e-20,-3.885533197195269e-19,6.687706158855015e-19)
sum a = (1.210782468992598e-19,-6.259264875407175e-20,9.082536019443707e-21)
sum e = 7.856769354096963e-10
sum de = -2.481541837659083e-24
Info: cfl dt = 0.040123139995281276 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6328e+04 | 2592 | 1 | 5.595e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2581.707439714099 (tsim/hr) [sph::Model][rank=0]
---------------- t = 28.364116285422796, dt = 0.040123139995281276 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (1.9%)
patch tree reduce : 1.00 us (0.5%)
gen split merge : 681.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 541.00 ns (0.3%)
LB compute : 182.14 us (93.5%)
LB move op cnt : 0
LB apply : 2.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.913274215603342e-20,-3.8762923076504377e-19,6.709982020007234e-19)
sum a = (2.0060021967737492e-19,5.785356053148191e-20,-1.6477323779382516e-19)
sum e = 7.856769254065198e-10
sum de = 1.0339757656912846e-24
Info: cfl dt = 0.040123108701845156 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6543e+04 | 2592 | 1 | 5.569e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2593.6937689676593 (tsim/hr) [sph::Model][rank=0]
---------------- t = 28.404239425418076, dt = 0.040123108701845156 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (1.6%)
patch tree reduce : 771.00 ns (0.4%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.4%)
LB compute : 199.82 us (94.0%)
LB move op cnt : 0
LB apply : 2.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.871582601030451e-20,-3.8289478968906323e-19,6.608991676937102e-19)
sum a = (2.794021671543252e-19,1.5729055916815615e-19,-1.0898944615440352e-19)
sum e = 7.856769167058282e-10
sum de = -5.37667398159468e-24
Info: cfl dt = 0.04012307700512813 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5527e+04 | 2592 | 1 | 5.693e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2537.0454876311414 (tsim/hr) [sph::Model][rank=0]
---------------- t = 28.44436253411992, dt = 0.04012307700512813 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 us (1.9%)
patch tree reduce : 1.47 us (0.7%)
gen split merge : 761.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.5%)
LB compute : 183.37 us (92.5%)
LB move op cnt : 0
LB apply : 2.37 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0147355286979708e-19,-3.7458908063095367e-19,6.57645285320757e-19)
sum a = (9.187208582783402e-20,1.9742018495509292e-19,-1.8463737606637134e-19)
sum e = 7.8567690930475e-10
sum de = -2.9985297205047253e-24
Info: cfl dt = 0.04012304492086012 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6704e+04 | 2592 | 1 | 5.550e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2602.637523749845 (tsim/hr) [sph::Model][rank=0]
---------------- t = 28.48448561112505, dt = 0.04012304492086012 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (2.0%)
patch tree reduce : 981.00 ns (0.5%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 511.00 ns (0.3%)
LB compute : 182.78 us (93.7%)
LB move op cnt : 0
LB apply : 2.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.014078252713453e-19,-3.658624068446349e-19,6.487194577281974e-19)
sum a = (1.208343358893801e-19,-6.260024850764273e-20,-8.919248323013399e-20)
sum e = 7.856769031848945e-10
sum de = 2.0679515313825692e-25
Info: cfl dt = 0.04012301246477967 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6624e+04 | 2592 | 1 | 5.559e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2598.2085556565626 (tsim/hr) [sph::Model][rank=0]
---------------- t = 28.52460865604591, dt = 0.04012301246477967 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (1.7%)
patch tree reduce : 1.05 us (0.5%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.4%)
LB compute : 185.51 us (93.5%)
LB move op cnt : 0
LB apply : 2.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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: 2.272762345679013
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0689279336214722e-19,-3.7358735095079933e-19,6.470555564731823e-19)
sum a = (-3.8361091241406996e-20,5.42607256811109e-20,8.887866312295403e-20)
sum e = 7.856768983269922e-10
sum de = 8.271806125530277e-25
Info: cfl dt = 0.0401229796526294 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5513e+04 | 2592 | 1 | 5.695e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2536.2961140299153 (tsim/hr) [sph::Model][rank=0]
---------------- t = 28.56473166851069, dt = 0.0401229796526294 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (1.9%)
patch tree reduce : 901.00 ns (0.5%)
gen split merge : 651.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.6%)
LB compute : 179.43 us (92.7%)
LB move op cnt : 0
LB apply : 2.52 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (61.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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0210125143501169e-19,-3.6906621647166937e-19,6.541940086775744e-19)
sum a = (-9.500457074061104e-20,1.4601421940845708e-19,-3.1456427002320034e-20)
sum e = 7.856768947102062e-10
sum de = -1.5509636485369269e-24
Info: cfl dt = 0.040122946500150775 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5750e+04 | 2592 | 1 | 5.666e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2549.464515764547 (tsim/hr) [sph::Model][rank=0]
---------------- t = 28.604854648163318, dt = 0.040122946500150775 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (1.8%)
patch tree reduce : 1.23 us (0.6%)
gen split merge : 661.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 451.00 ns (0.2%)
LB compute : 199.29 us (94.2%)
LB move op cnt : 0
LB apply : 2.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.716510879128221e-20,-3.613678715030034e-19,6.50517782953571e-19)
sum a = (2.551250111202345e-20,8.30287969039496e-20,-1.1390062958686525e-19)
sum e = 7.856768923127824e-10
sum de = -3.2053248736429822e-24
Info: cfl dt = 0.04012291302307919 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.6068e+04 | 2592 | 1 | 5.626e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2567.2141988152916 (tsim/hr) [sph::Model][rank=0]
---------------- t = 28.64497759466347, dt = 0.0015060354206717363 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 2592.0 min = 2592.0 factor = 1
- strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 2592
max = 2592
avg = 2592
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (1.9%)
patch tree reduce : 922.00 ns (0.5%)
gen split merge : 580.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.5%)
LB compute : 189.72 us (93.5%)
LB move op cnt : 0
LB apply : 2.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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: 2.2727623456790127
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.969233495175356e-20,-3.6250752644053387e-19,6.48692292406218e-19)
sum a = (1.5669410688704928e-19,-1.6336312171917983e-19,-2.4422206363413144e-20)
sum e = 7.856768853113469e-10
sum de = -9.098986738083304e-24
Info: cfl dt = 0.04012291176049168 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 4.5846e+04 | 2592 | 1 | 5.654e-02 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.89784767703028 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 793 [SPH][rank=0]
Info: time since start : 205.55182981500002 (s) [SPH][rank=0]
sph::RenderFieldGetter compute custom field took : 0.000310858 s
sph::RenderFieldGetter compute custom field took : 0.000248617 s
rho_t_ampl=0.000346693, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000185273, eps_t_phi=1.50844e-11 rad
vx_t_ampl=6.79051e-06, vx_t_phi=4.71239 rad
make gifs
469 from matplotlib.animation import PillowWriter
470 from shamrock.utils.plot import show_image_sequence
471
472 keep_list = []
show them the gifs (i have to unroll the loop otherwise the doc does not capture the gifs …)
476 ani0 = show_image_sequence(f"_to_trash/dump_dustywave_tva_{0:02d}_*.png")
477 writer = PillowWriter(fps=15, metadata=dict(artist="Me"), bitrate=1800)
478 ani0.save(f"_to_trash/dustywave_tva_scan_{0:04}.gif", writer=writer)
479 plt.show()
482 ani1 = show_image_sequence(f"_to_trash/dump_dustywave_tva_{1:02d}_*.png")
483 writer = PillowWriter(fps=15, metadata=dict(artist="Me"), bitrate=1800)
484 ani1.save(f"_to_trash/dustywave_tva_scan_{1:04}.gif", writer=writer)
485 plt.show()
488 ani2 = show_image_sequence(f"_to_trash/dump_dustywave_tva_{2:02d}_*.png")
489 writer = PillowWriter(fps=15, metadata=dict(artist="Me"), bitrate=1800)
490 ani2.save(f"_to_trash/dustywave_tva_scan_{2:04}.gif", writer=writer)
491 plt.show()
495 fig, axs = plt.subplots(1, len(all_case_plot), figsize=(12, 5), sharey=True)
496 for i, case in enumerate(all_case_plot):
497 for curve in case["curves"]:
498 axs[i].plot(curve["x"], curve["y"], curve["symbol"], label=curve["label"])
499 axs[i].set_xlabel(case["xlabel"])
500 if i == 0:
501 axs[i].set_ylabel(case["ylabel"])
502 axs[i].set_title(case["title"])
503
504 axs[0].legend(fontsize=11, loc="upper left")
505 plt.tight_layout()
506 plt.savefig("_to_trash/dustywave_tva_scan_all.png")
507 plt.savefig("_to_trash/dustywave_tva_scan_all.pdf")
508 plt.show()
![cs=1.00e-04 [code unit], cs=3.16e-03 [code unit], cs=1.00e-01 [code unit]](../../_images/sphx_glr_run_dustywave_tva_007.png)
Total running time of the script: (3 minutes 47.814 seconds)
Estimated memory usage: 968 MB
![cs=1.00e-04 [code unit]](../../_images/sphx_glr_run_dustywave_tva_001.png)
![cs=3.16e-03 [code unit]](../../_images/sphx_glr_run_dustywave_tva_002.png)
![cs=1.00e-01 [code unit]](../../_images/sphx_glr_run_dustywave_tva_003.png)