Note
Go to the end to download the full example code.
Test the pairing instability in SPH#
In SPH, normally the scheme should avoid this issue, this test is a way to explore that.
9 import os
10 import random
11
12 import matplotlib
13 import matplotlib.pyplot as plt
14 import numpy as np
15 from mpl_toolkits.mplot3d import Axes3D
16
17 import shamrock
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")
Setup parameters
29 gamma = 5.0 / 3.0
30 rho_g = 1
31 P_0 = 1.0
32 u_0 = P_0 / ((gamma - 1.0) * rho_g)
33 perturb = 3e-3
34
35 bmin = (-0.6, -0.6, -0.6)
36 bmax = (0.6, 0.6, 0.6)
37
38 dump_folder = "_to_trash"
39 sim_name = "pairing_instab"
40
41 N_target = 500
42 scheduler_split_val = int(2e7)
43 scheduler_merge_val = int(1)
44
45 os.makedirs(dump_folder, exist_ok=True)
Deduced quantities
50 xm, ym, zm = bmin
51 xM, yM, zM = bmax
52 vol_b = (xM - xm) * (yM - ym) * (zM - zm)
53
54 part_vol = vol_b / N_target
55
56 # lattice volume
57 HCP_PACKING_DENSITY = 0.74
58 part_vol_lattice = HCP_PACKING_DENSITY * part_vol
59
60 dr = (part_vol_lattice / ((4.0 / 3.0) * np.pi)) ** (1.0 / 3.0)
61
62 pmass = -1
Setup
67 ctx = shamrock.Context()
68 ctx.pdata_layout_new()
69
70 model = shamrock.get_Model_SPH(context=ctx, vector_type="f64_3", sph_kernel="M6")
71
72 cfg = model.gen_default_config()
73 cfg.set_artif_viscosity_VaryingCD10(
74 alpha_min=0.0, alpha_max=1, sigma_decay=0.1, alpha_u=1, beta_AV=2
75 )
76 cfg.set_boundary_periodic()
77 cfg.set_eos_adiabatic(gamma)
78 cfg.print_status()
79 model.set_solver_config(cfg)
80 model.init_scheduler(scheduler_split_val, scheduler_merge_val)
81
82
83 bmin, bmax = model.get_ideal_hcp_box(dr, bmin, bmax)
84 xm, ym, zm = bmin
85 xM, yM, zM = bmax
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
94 xc, yc, zc = model.get_closest_part_to((0, 0, 0))
95
96 if shamrock.sys.world_rank() == 0:
97 print("closest part to (0,0,0) is in :", xc, yc, zc)
98
99
100 vol_b = (xM - xm) * (yM - ym) * (zM - zm)
101
102 totmass = rho_g * vol_b
103
104 pmass = model.total_mass_to_part_mass(totmass)
105
106 model.set_value_in_a_box("uint", "f64", u_0, bmin, bmax)
107
108 tot_u = pmass * model.get_sum("uint", "f64")
109 if shamrock.sys.world_rank() == 0:
110 print("total u :", tot_u)
111
112 model.set_particle_mass(pmass)
113
114 model.set_cfl_cour(0.1)
115 model.set_cfl_force(0.1)
116
117
118 def periodic_modulo(x, xmin, xmax):
119 tmp = x - xmin
120 tmp = tmp % (xmax - xmin)
121 tmp += xmin
122 return tmp
123
124
125 random.seed(111)
126
127
128 def perturb_func(r):
129 x, y, z = r
130 x += perturb * (random.random() - 0.5) * 2
131 y += perturb * (random.random() - 0.5) * 2
132 z += perturb * (random.random() - 0.5) * 2
133
134 x = periodic_modulo(x, xm, xM)
135 y = periodic_modulo(y, ym, yM)
136 z = periodic_modulo(z, zm, zM)
137
138 return (x, y, z)
139
140
141 model.remap_positions(perturb_func)
----- 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,
"enable_particle_reordering": false,
"eos_config": {
"Tvec": "f64_3",
"eos_type": "adiabatic",
"gamma": 1.6666666666666667
},
"epsilon_h": 1e-06,
"ext_force_config": {
"force_list": []
},
"gpart_mass": 0.0,
"h_iter_per_subcycles": 50,
"h_max_subcycles_count": 100,
"htol_up_coarse_cycle": 1.1,
"htol_up_fine_cycle": 1.1,
"kernel_id": "M6<f64>",
"mhd_config": {
"mhd_type": "none"
},
"particle_killing": [],
"particle_reordering_step_freq": 1000,
"save_dt_to_fields": false,
"scheduler_config": {
"merge_load_value": 0,
"split_load_value": 0
},
"self_grav_config": {
"softening_length": 1e-09,
"softening_mode": "plummer",
"type": "none"
},
"show_ghost_zone_graph": false,
"show_neigh_stats": false,
"smoothing_length_config": {
"type": "density_based"
},
"time_state": {
"cfl_multiplier": 0.01,
"dt_sph": 0.0,
"time": 0.0
},
"tree_reduction_level": 3,
"type_id": "sycl::vec<f64,3>",
"unit_sys": null,
"use_two_stage_search": true
}
]
------------------------------------
SPH setup: generating particles ...
SPH setup: Nstep = 800 ( 8.0e+02 ) Ntotal = 800 ( 8.0e+02 ) rate = 6.861522e+05 N.s^-1
SPH setup: the generation step took : 0.001913594 s
SPH setup: final particle count = 800 begining 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 : 5.65 us (69.5%)
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1773.00 ns (0.3%)
patch tree reduce : 1142.00 ns (0.2%)
gen split merge : 752.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.1%)
LB compute : 524.04 us (97.7%)
LB move op cnt : 0
LB apply : 3.79 us (0.7%)
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (66.1%)
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1804.00 ns (0.3%)
patch tree reduce : 481.00 ns (0.1%)
gen split merge : 441.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 251.00 ns (0.0%)
LB compute : 525.03 us (98.4%)
LB move op cnt : 0
LB apply : 2.12 us (0.4%)
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (67.1%)
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1693.00 ns (0.3%)
patch tree reduce : 400.00 ns (0.1%)
gen split merge : 420.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.1%)
LB compute : 485.21 us (98.3%)
LB move op cnt : 0
LB apply : 2.28 us (0.5%)
Info: --------------------------------------------- [DataInserterUtility][rank=0]
SPH setup: injected 800 / 800 => 100.0% | ranks with patchs = 1 / 1 <- global loop ->
SPH setup: the injection step took : 0.008825436 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% | 1.00 GB | 5.04 MB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 0.012403028 s
closest part to (0,0,0) is in : 0.0 0.0 0.0
total u : 4.144508927267093
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 20.58 us (53.0%)
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.11 us (0.6%)
patch tree reduce : 2.79 us (0.4%)
gen split merge : 671.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.1%)
LB compute : 655.63 us (97.3%)
LB move op cnt : 0
LB apply : 4.03 us (0.6%)
Single timestep to iterate the smoothing length
145 model.timestep()
146
147 hmean = None
148 scatter_range = None
149
150
151 def make_plot(model, iplot):
152 # %%
153 # Recover data
154 dat = ctx.collect_data()
155
156 min_hpart = np.min(dat["hpart"])
157 max_hpart = np.max(dat["hpart"])
158 mean_hpart = np.mean(dat["hpart"])
159
160 global hmean
161 if hmean is None:
162 hmean = mean_hpart
163
164 global scatter_range
165 if scatter_range is None:
166 scatter_range = (min_hpart, max_hpart)
167
168 print(f"hpart min={min_hpart} max={max_hpart} delta={max_hpart - min_hpart}")
169
170 # Compute all pairwise distances
171 from scipy.spatial.distance import pdist
172
173 pairwise_distances = pdist(dat["xyz"]) # Returns condensed distance matrix
174 print(f"Number of particle pairs: {len(pairwise_distances)}")
175 print(
176 f"Distance min={np.min(pairwise_distances):.6f} max={np.max(pairwise_distances):.6f} mean={np.mean(pairwise_distances):.6f}"
177 )
178
179 # %%
180 # Plot particle distrib
181
182 fig = plt.figure(dpi=120, figsize=(10, 5))
183 ax = fig.add_subplot(121, projection="3d")
184 ax.set_xlim3d(bmin[0], bmax[0])
185 ax.set_ylim3d(bmin[1], bmax[1])
186 ax.set_zlim3d(bmin[2], bmax[2])
187 ax.set_aspect("equal")
188
189 cm = matplotlib.colormaps["viridis"]
190 sc = ax.scatter(
191 dat["xyz"][:, 0],
192 dat["xyz"][:, 1],
193 dat["xyz"][:, 2],
194 s=5,
195 vmin=scatter_range[0],
196 vmax=scatter_range[1],
197 c=dat["hpart"],
198 cmap=cm,
199 edgecolors="black",
200 linewidths=0.5,
201 )
202 cbar = plt.colorbar(sc, ax=ax, orientation="horizontal", pad=0.1, aspect=30)
203 cbar.set_label("hpart")
204 ax.set_title(f"t = {model.get_time():0.3f}")
205
206 ax = fig.add_subplot(122)
207
208 # Filter distances to the display range
209 max_dist = hmean * 3
210 filtered_distances = pairwise_distances[pairwise_distances <= max_dist] / hmean
211
212 # Create histogram and normalize by distance^2
213 bins = 500
214 counts, bin_edges = np.histogram(filtered_distances, bins=bins)
215 bin_centers = (bin_edges[:-1] + bin_edges[1:]) / 2
216
217 # Avoid division by zero for the first bin
218 normalized_counts = np.where(bin_centers > 0, counts / (bin_centers**2), 0)
219
220 normalized_counts = normalized_counts / len(dat["xyz"])
221
222 ax.bar(bin_centers, normalized_counts, width=bin_edges[1] - bin_edges[0], align="center")
223 ax.set_xlabel("distances / hmean")
224 ax.set_ylabel("counts / (r^2 * number of particles)")
225 ax.set_xlim(0, 3)
226 ax.set_ylim(0, 1.5)
227
228 plt.tight_layout()
229 plt.savefig(os.path.join(dump_folder, f"{sim_name}_{iplot:04}.png"))
230 plt.close(fig)
231
232
233 tcur = 0
234 for iplot in range(50):
235 model.evolve_until(tcur)
236 make_plot(model, iplot)
237 tcur += 0.5
---------------- t = 0, dt = 0 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 29.57 us (3.0%)
patch tree reduce : 2.65 us (0.3%)
gen split merge : 551.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.1%)
LB compute : 922.52 us (92.8%)
LB move op cnt : 0
LB apply : 15.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (10.5%)
Warning: High interface/patch volume 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.9100000000000001
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.093317902058534 unconverged cnt = 800
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.1237500000000002
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.10264969226438742 unconverged cnt = 800
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.2075
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.11291466149082617 unconverged cnt = 800
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.5162500000000003
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.12420612763990879 unconverged cnt = 800
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 2.6362499999999995
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.1366267404038997 unconverged cnt = 800
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.73625
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.15028941444428967 unconverged cnt = 800
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.876250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (0,0,0)
sum a = (-2.065805105279046e-17,1.5136455968610737e-16,1.3708126684682301e-17)
sum e = 4.144508927267093
sum de = 0
Info: CFL hydro = 0.000116514368534561 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.000116514368534561 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 | 5.1049e+03 | 800 | 1 | 1.567e-01 | 0.1% | 2.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 1 [SPH][rank=0]
Info: time since start : 842.365179668 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15041940297607606 max=0.15185705455690804 delta=0.0014376515808319779
Number of particle pairs: 319600
Distance min=0.162109 max=2.212052 mean=0.935005
---------------- t = 0, dt = 0.000116514368534561 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.86 us (1.5%)
patch tree reduce : 1302.00 ns (0.2%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.1%)
LB compute : 691.98 us (96.5%)
LB move op cnt : 0
LB apply : 4.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (72.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.876250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8547329814539726e-21,1.747661645300636e-20,1.3105999616583275e-21)
sum a = (1.0769986244923472e-16,2.0298572206164177e-17,-1.0693297424309865e-16)
sum e = 4.144508927701458
sum de = -4.552802091491864e-21
Info: CFL hydro = 0.003961166838517449 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.003961166838517449 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 | 1.8761e+04 | 800 | 1 | 4.264e-02 | 0.0% | 1.9% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.836837606203629 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.000116514368534561, dt = 0.003961166838517449 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.2%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1332.00 ns (0.3%)
LB compute : 405.98 us (95.8%)
LB move op cnt : 0
LB apply : 3.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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: 3.876250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.474762726233432e-19,6.384494098935567e-20,-4.3100015881963855e-19)
sum a = (3.963853415465826e-17,2.1472869771810038e-17,-2.084977310432448e-17)
sum e = 4.144509429284848
sum de = -1.4230153513872246e-19
Info: CFL hydro = 0.006506350545629052 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006506350545629052 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.0900e+04 | 800 | 1 | 3.828e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 372.5445776537169 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.004077681207052011, dt = 0.006506350545629052 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (1.0%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 406.08 us (95.8%)
LB move op cnt : 0
LB apply : 3.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 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: 3.876250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.332269558289881e-19,2.2504873627332995e-19,-4.1639633067544575e-19)
sum a = (-7.616158497188873e-17,7.668882061360728e-19,-2.1127770079048805e-16)
sum e = 4.144510275279209
sum de = 2.0328790734103208e-19
Info: CFL hydro = 0.008172723172304823 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008172723172304823 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 | 2.0813e+04 | 800 | 1 | 3.844e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 609.3739389100153 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.010584031752681062, dt = 0.008172723172304823 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (1.0%)
patch tree reduce : 962.00 ns (0.2%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 672.00 ns (0.2%)
LB compute : 383.79 us (96.1%)
LB move op cnt : 0
LB apply : 3.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.876250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.90933245706084e-19,1.318089104296375e-19,-2.789705632672726e-18)
sum a = (3.537271850802636e-17,-7.460384330317483e-17,-8.32553008786474e-17)
sum e = 4.144511012622247
sum de = -1.4772254600114998e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011572197055282705
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.048479969326662e-20,-1.1533279662593282e-19,-2.171102450769995e-18)
sum a = (-9.394380525166892e-18,6.11114039264683e-18,-1.2399623682962628e-16)
sum e = 4.144508920569341
sum de = -9.486769009248164e-20
Info: CFL hydro = 0.004614987186522554 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004614987186522554 cfl multiplier : 0.4022222222222222 [sph::Model][rank=0]
Info: Timestep 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.5431e+04 | 800 | 1 | 5.184e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 567.5257194779547 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.018756754924985887, dt = 0.004614987186522554 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (0.9%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 692.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 423.22 us (96.2%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 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: 3.876250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6925462361987544e-19,1.917220515340182e-19,-2.8750818587464682e-18)
sum a = (-7.496332214980111e-17,2.478007516077185e-17,8.833593524429888e-17)
sum e = 4.144509583979439
sum de = -1.4365678785432934e-18
Info: CFL hydro = 0.006867424672889536 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006867424672889536 cfl multiplier : 0.6014814814814815 [sph::Model][rank=0]
Info: Timestep 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.0807e+04 | 800 | 1 | 3.845e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 432.1063074842897 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.023371742111508442, dt = 0.006867424672889536 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.41 us (1.1%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 390.39 us (95.8%)
LB move op cnt : 0
LB apply : 3.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.876250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.668882061360728e-19,3.8793758865086494e-19,-1.7269962923337733e-18)
sum a = (1.0683711321733164e-16,-2.7320392343597593e-18,4.385641928840666e-17)
sum e = 4.1445103185810135
sum de = 3.2526065174565133e-19
Info: CFL hydro = 0.008324666271697253 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008324666271697253 cfl multiplier : 0.734320987654321 [sph::Model][rank=0]
Info: Timestep 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.0813e+04 | 800 | 1 | 3.844e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 643.1856659938243 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03023916678439798, dt = 0.008324666271697253 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (1.0%)
patch tree reduce : 651.00 ns (0.2%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 388.66 us (96.4%)
LB move op cnt : 0
LB apply : 3.04 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.387839754613296e-19,4.83798614417874e-19,-1.4498980147260125e-18)
sum a = (-1.202576568247129e-16,-1.1591994540875575e-16,2.327505705622981e-16)
sum e = 4.144510836849741
sum de = 1.6263032587282567e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.012604405955810253
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.7146147484716024e-19,-2.875830773010273e-19,-7.264468358906158e-19)
sum a = (-1.380398771044931e-17,3.000450106507385e-17,6.662341290807132e-17)
sum e = 4.1445089119164775
sum de = 3.7947076036992655e-19
Info: CFL hydro = 0.004626842540355608 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004626842540355608 cfl multiplier : 0.41144032921810697 [sph::Model][rank=0]
Info: Timestep 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.5829e+04 | 800 | 1 | 5.054e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 592.9617384085501 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03856383305609523, dt = 0.004626842540355608 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (1.0%)
patch tree reduce : 1313.00 ns (0.3%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 381.07 us (95.9%)
LB move op cnt : 0
LB apply : 3.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1083931104310426e-19,6.08118382209464e-19,-1.0634582546027572e-18)
sum a = (5.627042212523434e-17,-9.825755141118433e-19,-1.1582408438298875e-16)
sum e = 4.144509503082145
sum de = -1.2739375526704677e-18
Info: CFL hydro = 0.00680300839830441 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00680300839830441 cfl multiplier : 0.6076268861454047 [sph::Model][rank=0]
Info: Timestep 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.0495e+04 | 800 | 1 | 3.903e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 426.7292997217242 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04319067559645084, dt = 0.00680300839830441 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.94 us (1.2%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 1152.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 399.82 us (95.5%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.339359785286634e-19,6.260923245407781e-19,-2.1853318217822853e-18)
sum a = (6.494584495714867e-17,-1.6720559419410563e-16,-1.467152999364074e-16)
sum e = 4.1445100657983
sum de = -2.0057740190981832e-18
Info: CFL hydro = 0.008216372904545776 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008216372904545776 cfl multiplier : 0.7384179240969365 [sph::Model][rank=0]
Info: Timestep 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.0159e+04 | 800 | 1 | 3.968e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 617.1347496619638 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04999368399475525, dt = 0.008216372904545776 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.2%)
patch tree reduce : 1473.00 ns (0.3%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 431.98 us (95.8%)
LB move op cnt : 0
LB apply : 3.61 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3001151619650608e-18,-1.1278648812899664e-18,-3.594788466262841e-18)
sum a = (-3.8823715435638683e-17,-6.925959111666407e-17,6.11114039264683e-18)
sum e = 4.144510398264519
sum de = -2.168404344971009e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.012370314401729464
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.657448889583009e-19,-9.481254579768244e-19,-3.0226179687160056e-18)
sum a = (-5.914625289824461e-17,-6.866045970562026e-17,1.813211302382977e-16)
sum e = 4.14450891128831
sum de = 2.3852447794681098e-18
Info: CFL hydro = 0.004562651741800082 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004562651741800082 cfl multiplier : 0.4128059746989788 [sph::Model][rank=0]
Info: Timestep 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.5421e+04 | 800 | 1 | 5.188e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 570.1646617767509 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.058210056899301026, dt = 0.004562651741800082 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.4%)
patch tree reduce : 1423.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1292.00 ns (0.3%)
LB compute : 393.31 us (95.2%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.452095840498642e-19,-1.1772932227010804e-18,-1.4618806429468887e-18)
sum a = (-5.627042212523434e-17,6.446653982831362e-17,-7.884569369336498e-18)
sum e = 4.1445093665471715
sum de = 3.63207727782644e-18
Info: CFL hydro = 0.006701586239071855 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006701586239071855 cfl multiplier : 0.6085373164659859 [sph::Model][rank=0]
Info: Timestep 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.1135e+04 | 800 | 1 | 3.785e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 433.9337156916546 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06277270864110111, dt = 0.006701586239071855 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.3%)
patch tree reduce : 1432.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 431.53 us (95.8%)
LB move op cnt : 0
LB apply : 3.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (74.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.63617820859275e-19,-4.0591153098217917e-19,-1.7254984638061637e-18)
sum a = (-1.0769986244923472e-16,3.9470777359565995e-17,-2.571472016200019e-17)
sum e = 4.144509749090262
sum de = -4.336808689942018e-19
Info: CFL hydro = 0.00809815842643398 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00809815842643398 cfl multiplier : 0.7390248776439906 [sph::Model][rank=0]
Info: Timestep 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.0791e+04 | 800 | 1 | 3.848e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 626.9936957519246 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06947429488017297, dt = 0.00809815842643398 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.4%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 383.45 us (90.6%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.144340995093671e-18,-4.40361587117198e-19,-2.0699990251563527e-18)
sum a = (-8.64187147289587e-17,8.378253652036595e-17,-4.205902505527524e-17)
sum e = 4.144509925709644
sum de = 2.3852447794681098e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011931058135851135
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1053974533758237e-18,5.9913141104380686e-21,-2.204803592641209e-18)
sum a = (5.7947990076157e-17,8.10504972860062e-17,2.904589080740376e-17)
sum e = 4.144508917518814
sum de = -2.439454888092385e-18
Info: CFL hydro = 0.004502706663691651 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004502706663691651 cfl multiplier : 0.4130082925479968 [sph::Model][rank=0]
Info: Timestep 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.5620e+04 | 800 | 1 | 5.121e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 569.236630146382 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07757245330660695, dt = 0.004502706663691651 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.3%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1013.00 ns (0.2%)
LB compute : 400.22 us (95.7%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2952227607409374e-20,3.325179331293128e-19,-1.6955418932539734e-18)
sum a = (2.1892261759540702e-16,4.225074710680926e-17,-2.4923866699422367e-18)
sum e = 4.144509226059629
sum de = 1.3552527156068805e-18
Info: CFL hydro = 0.0066175930218012186 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0066175930218012186 cfl multiplier : 0.6086721950319979 [sph::Model][rank=0]
Info: Timestep 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.0541e+04 | 800 | 1 | 3.895e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 416.2069058389524 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0820751599702986, dt = 0.0066175930218012186 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.2%)
patch tree reduce : 1453.00 ns (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 408.98 us (95.4%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (74.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4109544730081651e-18,1.0724452257684142e-18,-1.92321182945062e-18)
sum a = (-1.9246497448371252e-16,6.40231825841412e-17,-5.907435712891936e-17)
sum e = 4.144509449091509
sum de = 4.174178364069192e-18
Info: CFL hydro = 0.008006569378161618 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008006569378161618 cfl multiplier : 0.7391147966879986 [sph::Model][rank=0]
Info: Timestep 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.0535e+04 | 800 | 1 | 3.896e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 611.5011599180597 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08869275299209982, dt = 0.008006569378161618 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.71 us (1.1%)
patch tree reduce : 1703.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 396.01 us (95.5%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1083931104310426e-18,1.2881325337441847e-18,-2.7020826638075687e-18)
sum a = (-1.4625996006401413e-16,9.669980974247043e-18,-1.3814772075848099e-16)
sum e = 4.144509513952584
sum de = 7.047314121155779e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011482134473762352
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.389984873621632e-18,1.21024545030849e-18,-2.9177699717833394e-18)
sum a = (-1.2490691657441286e-16,5.035100378412153e-17,2.9824761641760703e-17)
sum e = 4.1445089285544965
sum de = -1.5720931501039814e-18
Info: CFL hydro = 0.004459155022014646 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004459155022014646 cfl multiplier : 0.41303826556266615 [sph::Model][rank=0]
Info: Timestep 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.5530e+04 | 800 | 1 | 5.151e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 559.524505572287 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09669932237026144, dt = 0.004459155022014646 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.76 us (1.0%)
patch tree reduce : 1503.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 449.78 us (96.2%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4079588159529462e-18,2.2826906760769043e-18,-2.1329078233159522e-18)
sum a = (1.2255832144312113e-16,1.18508193104465e-17,5.627042212523434e-17)
sum e = 4.14450910721493
sum de = -1.734723475976807e-18
Info: CFL hydro = 0.006559491363075351 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006559491363075351 cfl multiplier : 0.6086921770417774 [sph::Model][rank=0]
Info: Timestep 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.0145e+04 | 800 | 1 | 3.971e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 404.22467837898273 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10115847739227608, dt = 0.006559491363075351 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.2%)
patch tree reduce : 1453.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 405.00 us (95.6%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.986971165657102e-20,1.060462597547538e-18,-1.938190114726715e-18)
sum a = (1.8748020114382805e-16,1.6896104922846398e-16,-1.5648114193642147e-16)
sum e = 4.144509212650481
sum de = 1.1926223897340549e-18
Info: CFL hydro = 0.007947329801887849 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007947329801887849 cfl multiplier : 0.7391281180278515 [sph::Model][rank=0]
Info: Timestep 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.0285e+04 | 800 | 1 | 3.944e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 598.7639066530162 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10771796875535143, dt = 0.007947329801887849 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.4%)
patch tree reduce : 1552.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 373.79 us (95.1%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9771336564445627e-18,3.0286092828264435e-18,-3.804484460128173e-18)
sum a = (-2.8776281672434044e-16,1.0632785151794441e-16,-3.1160824688388396e-17)
sum e = 4.144509219890161
sum de = -1.951563910473908e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011052036669663439
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.815917631905892e-19,2.9417352282250917e-18,-3.2742531613544044e-18)
sum a = (7.53707315093109e-17,8.6244966619756e-17,-9.873685654001938e-18)
sum e = 4.1445089422561825
sum de = -2.0599841277224584e-18
Info: CFL hydro = 0.004433874094188293 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004433874094188293 cfl multiplier : 0.41304270600928383 [sph::Model][rank=0]
Info: Timestep 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.5865e+04 | 800 | 1 | 5.043e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 567.3663519183705 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11566529855723928, dt = 0.004433874094188293 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.3%)
patch tree reduce : 1794.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 396.94 us (95.5%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.827350803683611e-18,3.501923097551051e-18,-3.424036014115356e-18)
sum a = (-1.396575319143114e-16,-1.6156177630207296e-16,1.0566880696579622e-16)
sum e = 4.144509026170129
sum de = 8.239936510889834e-18
Info: CFL hydro = 0.006528574677200009 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006528574677200009 cfl multiplier : 0.6086951373395225 [sph::Model][rank=0]
Info: Timestep 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.0558e+04 | 800 | 1 | 3.891e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 410.1808748758585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12009917265142758, dt = 0.006528574677200009 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.3%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.2%)
LB compute : 375.60 us (95.1%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.590445521481875e-19,1.48884155644386e-18,-2.3815473588991322e-18)
sum a = (-7.102103746513287e-17,-8.110591694152774e-17,-1.4651758657076298e-17)
sum e = 4.144509068881012
sum de = 3.848917712323541e-18
Info: CFL hydro = 0.007921187449538793 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007921187449538793 cfl multiplier : 0.7391300915596816 [sph::Model][rank=0]
Info: Timestep 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.0655e+04 | 800 | 1 | 3.873e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 606.8095716713292 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12662774732862758, dt = 0.007921187449538793 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.3%)
patch tree reduce : 1322.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1503.00 ns (0.3%)
LB compute : 421.57 us (95.5%)
LB move op cnt : 0
LB apply : 3.69 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0185233987744717e-19,2.0879729674876668e-18,-2.974687455832501e-18)
sum a = (1.6317044414072558e-16,-9.137353149829099e-17,1.3528836609927442e-16)
sum e = 4.144509075733959
sum de = 2.927345865710862e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010598605544085189
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2342107067502422e-18,8.6874054601352e-20,-2.084977310432448e-18)
sum a = (-3.068960783360244e-16,4.1885276946072535e-17,-1.819801747904459e-16)
sum e = 4.144508956542116
sum de = -1.463672932855431e-18
Info: CFL hydro = 0.0044269657533867295 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0044269657533867295 cfl multiplier : 0.41304336385322715 [sph::Model][rank=0]
Info: Timestep 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.5136e+04 | 800 | 1 | 5.285e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 539.5291508548332 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13454893477816637, dt = 0.0044269657533867295 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.3%)
patch tree reduce : 1403.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 392.07 us (95.3%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2826906760769043e-18,2.2167862208620853e-18,-4.214889476693181e-18)
sum a = (-4.3437027300676e-20,-4.9685967917862905e-17,-2.3186385607395324e-18)
sum e = 4.144508991787711
sum de = -4.87890977618477e-19
Info: CFL hydro = 0.006524693606935206 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006524693606935206 cfl multiplier : 0.6086955759021514 [sph::Model][rank=0]
Info: Timestep 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.0486e+04 | 800 | 1 | 3.905e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 408.11104603277425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1389759005315531, dt = 0.006524693606935206 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.2%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 412.38 us (95.6%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2407514773038376e-18,1.5817069251556502e-18,-3.996206511662192e-18)
sum a = (-2.0104753194691506e-16,4.23825560172389e-17,-1.5181989955850065e-17)
sum e = 4.144509030954083
sum de = -4.336808689942018e-18
Info: CFL hydro = 0.007927699489257907 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007927699489257907 cfl multiplier : 0.7391303839347675 [sph::Model][rank=0]
Info: Timestep 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.0264e+04 | 800 | 1 | 3.948e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 594.9592147569464 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1455005941384883, dt = 0.007927699489257907 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.73 us (1.2%)
patch tree reduce : 1352.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 383.37 us (95.5%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.87638022945343e-18,2.001098912886315e-18,-4.235859076079715e-18)
sum a = (-1.9559843176347163e-16,-2.1392586162730168e-16,-4.2274712363251014e-17)
sum e = 4.144509089996573
sum de = -3.3068166260807885e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010146202080307145
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.726597376692479e-18,4.852964429454836e-19,-4.259824332521467e-18)
sum a = (-1.6436571130575798e-16,6.059615091297062e-17,-1.2325331387993195e-16)
sum e = 4.144508969514893
sum de = 1.463672932855431e-18
Info: CFL hydro = 0.0044380432544560795 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0044380432544560795 cfl multiplier : 0.41304346131158914 [sph::Model][rank=0]
Info: Timestep 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.5425e+04 | 800 | 1 | 5.186e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 550.2755137805555 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15342829362774618, dt = 0.0044380432544560795 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.2%)
patch tree reduce : 1362.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 433.12 us (95.7%)
LB move op cnt : 0
LB apply : 3.68 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (73.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.9902151975517534e-18,2.120925195095076e-18,-4.873934028841369e-18)
sum a = (-2.6781174073658165e-17,-2.0650861475857936e-16,1.6368270149716804e-17)
sum e = 4.144509005862022
sum de = 9.215718466126788e-19
Info: CFL hydro = 0.006546765078229559 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006546765078229559 cfl multiplier : 0.6086956408743928 [sph::Model][rank=0]
Info: Timestep 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.0418e+04 | 800 | 1 | 3.918e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 407.7639085099975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15786633688220225, dt = 0.006546765078229559 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.3%)
patch tree reduce : 1683.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 414.49 us (91.6%)
LB move op cnt : 0
LB apply : 3.57 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999984
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.235859076079715e-18,1.1742975656458615e-18,-4.631285807368627e-18)
sum a = (-3.300015812029288e-17,7.775527452526525e-17,-3.232913093992382e-17)
sum e = 4.144509096960314
sum de = -1.5178830414797062e-18
Info: CFL hydro = 0.007964670787169621 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007964670787169621 cfl multiplier : 0.7391304272495951 [sph::Model][rank=0]
Info: Timestep 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.0305e+04 | 800 | 1 | 3.940e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 598.199602653674 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16441310196043182, dt = 0.007964670787169621 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.4%)
patch tree reduce : 1442.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 385.09 us (95.2%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.421589813503295e-18,1.833342117794049e-18,-5.311299958903348e-18)
sum a = (2.3066559325186563e-17,3.526128006557221e-16,5.968547116818403e-17)
sum e = 4.144509250215847
sum de = 2.439454888092385e-18
Info: CFL hydro = 0.008927993778950009 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008927993778950009 cfl multiplier : 0.8260869514997301 [sph::Model][rank=0]
Info: Timestep 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.0576e+04 | 800 | 1 | 3.888e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 737.4502275444759 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17237777274760144, dt = 0.008927993778950009 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (1.0%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.2%)
LB compute : 436.67 us (96.0%)
LB move op cnt : 0
LB apply : 3.69 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.349694044178038e-18,6.749215345408484e-18,-3.858406287122116e-18)
sum a = (4.193919877306648e-17,-1.239722715731845e-16,-1.1287635784065321e-17)
sum e = 4.1445094844788
sum de = -1.0299920638612292e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011708235110042447
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.295772217184095e-18,4.535424781601618e-18,-4.2388547331349334e-18)
sum a = (-2.7804490523720986e-16,6.192622264548787e-17,2.856658567856871e-17)
sum e = 4.144509014033995
sum de = 6.505213034913027e-19
Info: CFL hydro = 0.004798759936889588 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004798759936889588 cfl multiplier : 0.4420289838332434 [sph::Model][rank=0]
Info: Timestep 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.5249e+04 | 800 | 1 | 5.246e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 612.6422007782736 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18130576652655145, dt = 0.004798759936889588 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.2%)
patch tree reduce : 1453.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 439.36 us (95.7%)
LB move op cnt : 0
LB apply : 3.63 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.734237060132389e-18,5.33676304387271e-18,-3.867393258287773e-18)
sum a = (-1.243317504198108e-16,-1.494473391707672e-16,-1.858026331929054e-16)
sum e = 4.144509143807313
sum de = -2.3852447794681098e-18
Info: CFL hydro = 0.006834630017110593 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006834630017110593 cfl multiplier : 0.6280193225554956 [sph::Model][rank=0]
Info: Timestep 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.0895e+04 | 800 | 1 | 3.829e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 451.21448605632503 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18610452646344103, dt = 0.006834630017110593 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.2%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 398.60 us (95.5%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.273455330071816e-18,3.4599838987779845e-18,-5.595887379149156e-18)
sum a = (8.387839754613296e-19,-4.1963164029508234e-17,8.306357882711338e-17)
sum e = 4.144509397593205
sum de = 5.421010862427522e-19
Info: CFL hydro = 0.008216062102690654 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008216062102690654 cfl multiplier : 0.7520128817036639 [sph::Model][rank=0]
Info: Timestep 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.0747e+04 | 800 | 1 | 3.856e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 638.0975122522763 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19293915648055163, dt = 0.008216062102690654 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.3%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 383.33 us (95.2%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.7462196883532654e-18,3.811973602766221e-18,-4.0411413674904776e-18)
sum a = (8.998953793877979e-17,4.074093595097887e-18,3.4749621840540794e-18)
sum e = 4.144509739463549
sum de = 1.8973538018496328e-19
Info: CFL hydro = 0.009151858733516956 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009151858733516956 cfl multiplier : 0.8346752544691093 [sph::Model][rank=0]
Info: Timestep 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.0133e+04 | 800 | 1 | 3.974e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 744.3448109620502 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20115521858324228, dt = 0.009151858733516956 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.2%)
patch tree reduce : 1793.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.2%)
LB compute : 478.58 us (95.9%)
LB move op cnt : 0
LB apply : 3.62 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.9194183411128115e-18,3.8554106300668974e-18,-4.444057241417437e-18)
sum a = (-1.426651715977513e-16,-9.904840487376215e-17,1.34373192868905e-16)
sum e = 4.144510152836467
sum de = -4.960224939121183e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010255037228164073
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.848072028230712e-18,3.696640806140288e-18,-3.880873715036259e-18)
sum a = (6.42268872638961e-18,-9.68196360246792e-18,1.6346701418919226e-16)
sum e = 4.144509055664205
sum de = -1.6263032587282567e-18
Info: CFL hydro = 0.004886039018841986 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004886039018841986 cfl multiplier : 0.44489175148970306 [sph::Model][rank=0]
Info: Timestep 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.5647e+04 | 800 | 1 | 5.113e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 644.4097229434922 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21030707731675924, dt = 0.004886039018841986 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (1.2%)
patch tree reduce : 1282.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 403.37 us (95.5%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.081183822094639e-18,3.9632542840547824e-18,-3.043587568102539e-18)
sum a = (-1.5249092673886972e-16,1.1299618412286197e-16,-1.3257579863577358e-16)
sum e = 4.144509360176437
sum de = 1.81603863891322e-18
Info: CFL hydro = 0.006924434277387753 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006924434277387753 cfl multiplier : 0.6299278343264687 [sph::Model][rank=0]
Info: Timestep 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.0323e+04 | 800 | 1 | 3.936e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 446.8515003122329 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21519311633560123, dt = 0.006924434277387753 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.5%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.3%)
LB compute : 373.04 us (94.9%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.393281612280577e-18,4.481502954607675e-18,-4.6133118650373124e-18)
sum a = (-1.6044739187753148e-16,2.7679871190223876e-17,-6.089571661849253e-17)
sum e = 4.144509802521581
sum de = -5.692061405548898e-19
Info: CFL hydro = 0.008292864855947352 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008292864855947352 cfl multiplier : 0.7532852228843124 [sph::Model][rank=0]
Info: Timestep 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.0838e+04 | 800 | 1 | 3.839e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 649.3185062661076 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.222117550612989, dt = 0.008292864855947352 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.58 us (1.1%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 415.86 us (95.7%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.196667159522436e-18,4.611065122245898e-18,-4.831994830068303e-18)
sum a = (-2.118528669450901e-16,-4.5270369418470046e-17,8.162566344060825e-17)
sum e = 4.144510294768135
sum de = -4.0657581468206416e-19
Info: CFL hydro = 0.009212318384865786 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009212318384865786 cfl multiplier : 0.8355234819228748 [sph::Model][rank=0]
Info: Timestep 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.0657e+04 | 800 | 1 | 3.873e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 770.8784992255395 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23041041546893634, dt = 0.009212318384865786 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (1.1%)
patch tree reduce : 891.00 ns (0.2%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 395.98 us (95.8%)
LB move op cnt : 0
LB apply : 3.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1461383893268025e-17,3.921315085281716e-18,-3.656199435894831e-18)
sum a = (-2.117570059193231e-16,1.2605724888361697e-17,1.1747768707746964e-16)
sum e = 4.144510784709843
sum de = 3.851882327638931e-19
Info: CFL hydro = 0.009822743575698178 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009822743575698178 cfl multiplier : 0.8903489879485832 [sph::Model][rank=0]
Info: Timestep 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.1398e+04 | 800 | 1 | 3.739e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 887.0531389546272 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23962273385380212, dt = 0.009822743575698178 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.3%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1443.00 ns (0.4%)
LB compute : 370.10 us (95.3%)
LB move op cnt : 0
LB apply : 3.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3273756411675541e-17,4.6297879788410175e-18,-2.2752015334388567e-18)
sum a = (1.4312051147014458e-16,-7.237507445409186e-18,3.37430810699872e-17)
sum e = 4.144511222801023
sum de = -1.2332799712022613e-18
Info: CFL hydro = 0.010236437530639374 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010236437530639374 cfl multiplier : 0.9268993252990555 [sph::Model][rank=0]
Info: Timestep 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.1390e+04 | 800 | 1 | 3.740e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 945.4832915155679 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2494454774295003, dt = 0.010236437530639374 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.3%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 399.54 us (95.5%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (73.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.458787151854101e-18,4.0104358826744825e-18,-2.4328479859697582e-18)
sum a = (1.2040144836336342e-16,-1.311618485057102e-16,-9.787410730811629e-17)
sum e = 4.14451157769497
sum de = 4.892462303340839e-18
Info: CFL hydro = 0.010521120188576148 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010521120188576148 cfl multiplier : 0.951266216866037 [sph::Model][rank=0]
Info: Timestep 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.1189e+04 | 800 | 1 | 3.776e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 976.0476308318806 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.25968191496013965, dt = 0.010521120188576148 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.3%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 371.76 us (95.6%)
LB move op cnt : 0
LB apply : 3.02 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.548107407067514e-18,2.029932112042798e-18,-4.166022820979921e-18)
sum a = (3.302412337673463e-17,-2.1760452849111065e-17,2.5067658238072878e-17)
sum e = 4.144511826609818
sum de = -4.824699667560495e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01028790580108215
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.380900068418406e-18,2.942109685356994e-18,-3.679228549506828e-18)
sum a = (2.549903285402442e-16,9.415949255964469e-17,-5.559939494486528e-18)
sum e = 4.1445091812863675
sum de = -8.944667923005412e-19
Info: CFL hydro = 0.00536176961959506 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00536176961959506 cfl multiplier : 0.48375540562201236 [sph::Model][rank=0]
Info: Timestep 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.2523e+04 | 800 | 1 | 6.388e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 592.923807037721 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2702030351487158, dt = 0.00536176961959506 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.4%)
patch tree reduce : 1363.00 ns (0.3%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 386.42 us (95.3%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.82410677178896e-18,4.056119652766572e-18,-3.721167748279894e-18)
sum a = (1.2783067786030662e-16,1.7156727086650453e-16,2.1904244387761578e-17)
sum e = 4.144509859717189
sum de = -5.692061405548898e-19
Info: CFL hydro = 0.007277050543980431 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007277050543980431 cfl multiplier : 0.6558369370813416 [sph::Model][rank=0]
Info: Timestep 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.0706e+04 | 800 | 1 | 3.864e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 499.59002751683994 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27556480476831086, dt = 0.007277050543980431 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.33 us (1.0%)
patch tree reduce : 1423.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.2%)
LB compute : 419.37 us (96.2%)
LB move op cnt : 0
LB apply : 3.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.293875473015191e-18,5.33676304387271e-18,-3.1851323639616383e-18)
sum a = (8.493286882957007e-17,9.840134294983484e-17,-1.4987871378671873e-16)
sum e = 4.144510434101535
sum de = 5.149960319306146e-18
Info: CFL hydro = 0.008564418791821621 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008564418791821621 cfl multiplier : 0.7705579580542278 [sph::Model][rank=0]
Info: Timestep 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.1160e+04 | 800 | 1 | 3.781e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 692.9265877593805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2828418553122913, dt = 0.008564418791821621 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.0%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1332.00 ns (0.3%)
LB compute : 427.05 us (96.0%)
LB move op cnt : 0
LB apply : 3.56 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.541965552155214e-18,5.899197655990083e-18,-5.3142956159585666e-18)
sum a = (-4.855360955099011e-17,-2.217505178555338e-16,1.0041442449094202e-16)
sum e = 4.144510883543029
sum de = 2.710505431213761e-19
Info: CFL hydro = 0.009435616897198835 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009435616897198835 cfl multiplier : 0.8470386387028185 [sph::Model][rank=0]
Info: Timestep 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.1099e+04 | 800 | 1 | 3.792e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 813.1637674998165 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2914062741041129, dt = 0.009435616897198835 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.3%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 396.01 us (95.5%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.557493293874466e-18,2.664636950617331e-18,-3.2735042470906e-18)
sum a = (-1.0985673552899243e-16,1.9673079013034442e-16,-2.986070952642333e-17)
sum e = 4.144511157907989
sum de = -3.848917712323541e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010069157182672848
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.711769632218246e-18,4.331720101846724e-18,-3.743073490496183e-18)
sum a = (-7.146439470930528e-17,-1.36889544795289e-16,6.00090021301477e-17)
sum e = 4.144509153087758
sum de = -1.0299920638612292e-18
Info: CFL hydro = 0.00501544752961934 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00501544752961934 cfl multiplier : 0.4490128795676062 [sph::Model][rank=0]
Info: Timestep 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.5538e+04 | 800 | 1 | 5.149e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 659.756698234337 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.30084189100131176, dt = 0.00501544752961934 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (1.2%)
patch tree reduce : 1793.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 398.56 us (95.7%)
LB move op cnt : 0
LB apply : 3.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.9154743119731405e-18,2.540317182825741e-18,-3.1634138503113003e-18)
sum a = (1.5625347200022483e-16,-5.416147955836014e-17,-9.260175089093079e-17)
sum e = 4.144509718479694
sum de = 3.74049749507499e-18
Info: CFL hydro = 0.007060497506247157 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007060497506247157 cfl multiplier : 0.6326752530450709 [sph::Model][rank=0]
Info: Timestep 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.0951e+04 | 800 | 1 | 3.818e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 472.8576979748527 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3058573385309311, dt = 0.007060497506247157 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.11 us (0.9%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 426.14 us (96.1%)
LB move op cnt : 0
LB apply : 3.68 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (73.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.297070587891057e-18,2.0550207398802575e-18,-4.205902505527524e-18)
sum a = (1.307544391462004e-16,1.2023369156827117e-16,-1.4204207493026574e-16)
sum e = 4.144510194908702
sum de = 1.3010426069826053e-18
Info: CFL hydro = 0.00841784094725492 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00841784094725492 cfl multiplier : 0.7551168353633807 [sph::Model][rank=0]
Info: Timestep 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.1051e+04 | 800 | 1 | 3.800e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 668.8433160599517 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.31291783603717827, dt = 0.00841784094725492 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.3%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 385.54 us (95.4%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.39256938578086e-18,3.7835148607416405e-18,-5.780120288045127e-18)
sum a = (3.048140966826472e-16,8.524441716331283e-17,-1.3027513401736536e-16)
sum e = 4.1445105115513
sum de = 2.3310346708438345e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010406759672693961
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.4687836413776904e-18,3.403066414728823e-18,-5.682761433750508e-18)
sum a = (-2.3167213402241925e-16,-1.5038198417199552e-16,4.239453864545977e-17)
sum e = 4.1445091570735375
sum de = 9.215718466126788e-19
Info: CFL hydro = 0.004660144892771009 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004660144892771009 cfl multiplier : 0.4183722784544603 [sph::Model][rank=0]
Info: Timestep 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.5337e+04 | 800 | 1 | 5.216e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 580.9657837631004 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.32133567698443316, dt = 0.004660144892771009 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.89 us (1.1%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 425.06 us (95.7%)
LB move op cnt : 0
LB apply : 4.09 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (73.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.015828823322979e-18,1.8438269174873157e-18,-4.544411752767275e-18)
sum a = (-2.1254785938190092e-16,-1.0712469629463266e-16,6.873235547494552e-17)
sum e = 4.1445095697293075
sum de = 5.421010862427522e-19
Info: CFL hydro = 0.006810042598560043 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006810042598560043 cfl multiplier : 0.6122481856363069 [sph::Model][rank=0]
Info: Timestep 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.0792e+04 | 800 | 1 | 3.848e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 436.02786015937056 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.32599582187720416, dt = 0.006810042598560043 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.2%)
patch tree reduce : 1432.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 432.27 us (95.9%)
LB move op cnt : 0
LB apply : 3.36 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.510661693877277e-18,1.4109544730081651e-18,-4.03215439632482e-18)
sum a = (1.1141447719770633e-16,-3.9255090051590226e-17,-7.668882061360728e-17)
sum e = 4.144509948756316
sum de = -5.854691731421724e-18
Info: CFL hydro = 0.008210427583727049 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008210427583727049 cfl multiplier : 0.7414987904242046 [sph::Model][rank=0]
Info: Timestep 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.0269e+04 | 800 | 1 | 3.947e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 621.1608945840652 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3328058644757642, dt = 0.008210427583727049 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.48 us (5.5%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 405.70 us (91.5%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.626393406144504e-18,1.1982628220876138e-18,-5.155525792031958e-18)
sum a = (-2.1089425668742e-18,-2.63617820859275e-18,-2.5115588750956384e-17)
sum e = 4.14451017701907
sum de = -2.6020852139652106e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011253674807626061
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.720756603383903e-18,1.4349197294499174e-18,-5.0027472822157875e-18)
sum a = (-2.1480059348742563e-16,-1.5788310943826398e-16,-4.7451207754669505e-18)
sum e = 4.144509161649954
sum de = 7.589415207398531e-19
Info: CFL hydro = 0.004561210639311198 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004561210639311198 cfl multiplier : 0.4138329301414016 [sph::Model][rank=0]
Info: Timestep 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.5248e+04 | 800 | 1 | 5.246e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 563.3813153597198 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.34101629205949124, dt = 0.004561210639311198 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.1%)
patch tree reduce : 1593.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.2%)
LB compute : 443.79 us (95.9%)
LB move op cnt : 0
LB apply : 3.84 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.093316991117379e-18,-2.63617820859275e-19,-5.071647394485825e-18)
sum a = (-2.744740820273888e-16,-4.8313956986572584e-17,1.2203108580140257e-16)
sum e = 4.14450947252497
sum de = 3.3610267347050637e-18
Info: CFL hydro = 0.006698066072001781 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006698066072001781 cfl multiplier : 0.6092219534276011 [sph::Model][rank=0]
Info: Timestep 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.0614e+04 | 800 | 1 | 3.881e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 423.1100964755083 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.34557750269880244, dt = 0.006698066072001781 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.1%)
patch tree reduce : 1462.00 ns (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 454.32 us (96.0%)
LB move op cnt : 0
LB apply : 4.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0355237525628397e-17,2.3066559325186563e-19,-3.7925018319072976e-18)
sum a = (-1.2418795888116028e-16,3.506117017428358e-17,-3.856009761477941e-17)
sum e = 4.144509747180489
sum de = 1.5178830414797062e-18
Info: CFL hydro = 0.008103619458232184 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008103619458232184 cfl multiplier : 0.7394813022850674 [sph::Model][rank=0]
Info: Timestep 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.0880e+04 | 800 | 1 | 3.831e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 629.3502264489651 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35227556877080424, dt = 0.008103619458232184 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.3%)
patch tree reduce : 1534.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 395.49 us (95.3%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1223229157378111e-17,6.890011227003779e-19,-4.475511640497237e-18)
sum a = (2.1353043489601275e-17,-1.138828986112068e-16,3.362325478777844e-17)
sum e = 4.14450990379915
sum de = -3.415236843329339e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011707804883141035
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0386691924708197e-17,-8.387839754613296e-20,-4.137002393257486e-18)
sum a = (-2.1861106926166425e-16,6.475412290561464e-17,-2.7727801703107382e-17)
sum e = 4.144509169320243
sum de = -1.0842021724855044e-18
Info: CFL hydro = 0.004513947081858615 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004513947081858615 cfl multiplier : 0.4131604340950224 [sph::Model][rank=0]
Info: Timestep 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.6080e+04 | 800 | 1 | 4.975e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 586.3626386913814 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3603791882290364, dt = 0.004513947081858615 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.5%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 392.09 us (94.9%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (74.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2422989807993335e-17,9.55614600614872e-19,-4.820012201847426e-18)
sum a = (1.4812925006647082e-16,3.4414108250356267e-17,-2.1127770079048805e-16)
sum e = 4.1445093948388045
sum de = 2.6020852139652106e-18
Info: CFL hydro = 0.006640334930942512 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006640334930942512 cfl multiplier : 0.6087736227300149 [sph::Model][rank=0]
Info: Timestep 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.1372e+04 | 800 | 1 | 3.743e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 434.1208467510391 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.364893135310895, dt = 0.006640334930942512 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.1%)
patch tree reduce : 1593.00 ns (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.2%)
LB compute : 454.94 us (95.7%)
LB move op cnt : 0
LB apply : 4.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (73.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0489293178849448e-17,1.0784365398788523e-18,-6.341805985898696e-18)
sum a = (-6.543713271420459e-17,-1.0209199244186468e-17,-1.2207901631428608e-16)
sum e = 4.144509592782074
sum de = -1.1384122811097797e-18
Info: CFL hydro = 0.008046865824011906 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008046865824011906 cfl multiplier : 0.7391824151533433 [sph::Model][rank=0]
Info: Timestep 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.0872e+04 | 800 | 1 | 3.833e-02 | 0.1% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 623.6854126910303 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3715334702418375, dt = 0.008046865824011906 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.5%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 1142.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 381.65 us (95.0%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1934697707992632e-17,1.231215049695023e-18,-7.036798422709511e-18)
sum a = (1.2361279272655823e-16,1.60495322390415e-16,1.080114107829775e-16)
sum e = 4.144509712143558
sum de = -1.1384122811097797e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011819192080818731
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1148337730997636e-17,1.7075245214748495e-18,-6.23396233191081e-18)
sum a = (8.090670574735567e-17,4.335314890312986e-17,-9.424337095719082e-17)
sum e = 4.144509178831144
sum de = 3.7947076036992655e-18
Info: CFL hydro = 0.004490273941954249 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004490273941954249 cfl multiplier : 0.4130608050511144 [sph::Model][rank=0]
Info: Timestep 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.5842e+04 | 800 | 1 | 5.050e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 573.6407881782003 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.37958033606584946, dt = 0.004490273941954249 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.3%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 408.80 us (95.6%)
LB move op cnt : 0
LB apply : 4.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.088771556719358e-17,1.3839935595111939e-18,-7.282442301237473e-18)
sum a = (5.822359052523716e-17,-2.641810043856562e-16,9.00853989645468e-17)
sum e = 4.144509342777538
sum de = -1.0842021724855044e-19
Info: CFL hydro = 0.006612261685707161 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006612261685707161 cfl multiplier : 0.6087072033674096 [sph::Model][rank=0]
Info: Timestep 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.1792e+04 | 800 | 1 | 3.671e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 440.343946127333 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3840706100078037, dt = 0.006612261685707161 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.1%)
patch tree reduce : 1413.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 433.34 us (95.7%)
LB move op cnt : 0
LB apply : 4.14 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (74.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0908685166580113e-17,-9.166710588970244e-19,-6.332819014733038e-18)
sum a = (1.59428868478757e-17,3.23890440810282e-17,-1.0579462456211541e-16)
sum e = 4.144509500538046
sum de = -1.5178830414797062e-18
Info: CFL hydro = 0.008023792508151939 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008023792508151939 cfl multiplier : 0.739138135578273 [sph::Model][rank=0]
Info: Timestep 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.1643e+04 | 800 | 1 | 3.696e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 643.995862493197 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.39068287169351085, dt = 0.008023792508151939 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.4%)
patch tree reduce : 1443.00 ns (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.3%)
LB compute : 430.93 us (95.5%)
LB move op cnt : 0
LB apply : 3.62 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.042189089510702e-17,6.590445521481875e-20,-7.863599769949966e-18)
sum a = (1.287233836627619e-17,1.0023468506762888e-16,-2.2539323683468014e-17)
sum e = 4.144509621066326
sum de = -4.607859233063394e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011719446967789569
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0495284492959887e-17,6.740228374242827e-19,-7.53707315093109e-18)
sum a = (-9.260774220504122e-17,8.052326164428764e-17,-7.731191728109284e-17)
sum e = 4.144509188776358
sum de = 1.0299920638612292e-18
Info: CFL hydro = 0.0044846662156232025 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0044846662156232025 cfl multiplier : 0.4130460451927577 [sph::Model][rank=0]
Info: Timestep 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.6148e+04 | 800 | 1 | 4.954e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 583.0415001787329 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3987066642016628, dt = 0.0044846662156232025 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.05 us (1.2%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 413.38 us (95.6%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.131909018314512e-17,8.357883184061105e-19,-7.788708343569488e-18)
sum a = (3.033627008393936e-17,3.4632192083976213e-16,-6.353788614119572e-17)
sum e = 4.144509322046763
sum de = 9.215718466126788e-19
Info: CFL hydro = 0.006609998046832257 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006609998046832257 cfl multiplier : 0.6086973634618386 [sph::Model][rank=0]
Info: Timestep 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.1749e+04 | 800 | 1 | 3.678e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 438.9072461254439 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.403191330417286, dt = 0.006609998046832257 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (1.2%)
patch tree reduce : 1754.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 387.12 us (95.2%)
LB move op cnt : 0
LB apply : 4.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.063757820308279e-17,3.9183194282264965e-18,-8.378852783447638e-18)
sum a = (-9.838636466455874e-17,1.2024567419649204e-16,-1.6142397607753289e-16)
sum e = 4.144509479254185
sum de = 3.2526065174565133e-18
Info: CFL hydro = 0.0080315509865939 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0080315509865939 cfl multiplier : 0.7391315756412258 [sph::Model][rank=0]
Info: Timestep 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.1457e+04 | 800 | 1 | 3.728e-02 | 0.1% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 638.2408624149358 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.40980132846411826, dt = 0.0080315509865939 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.2%)
patch tree reduce : 1864.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 425.70 us (95.5%)
LB move op cnt : 0
LB apply : 4.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.200359782026267e-17,3.921315085281716e-18,-9.741876743572299e-18)
sum a = (9.670580105658086e-17,-8.29557351731255e-17,-1.6916625173674649e-16)
sum e = 4.144509636001153
sum de = -4.9873299934333204e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011461008820115916
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1590197146642443e-17,3.1813877926426143e-18,-1.0248142785904316e-17)
sum a = (1.6293378723336326e-16,-1.4879428593272943e-16,-6.44006353730988e-17)
sum e = 4.144509197776656
sum de = -6.1257422745431e-18
Info: CFL hydro = 0.004495985753269206 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004495985753269206 cfl multiplier : 0.41304385854707526 [sph::Model][rank=0]
Info: Timestep 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.6222e+04 | 800 | 1 | 4.932e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 586.2865006417843 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4178328794507122, dt = 0.004495985753269206 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.3%)
patch tree reduce : 1442.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 388.07 us (95.4%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.59 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0221181872407345e-17,2.013081541107191e-18,-1.0215190558296907e-17)
sum a = (-9.557344268970807e-17,-1.6159173287262514e-16,-1.250859070834622e-16)
sum e = 4.1445093336941135
sum de = -1.6263032587282567e-18
Info: CFL hydro = 0.006632432105001032 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006632432105001032 cfl multiplier : 0.6086959056980502 [sph::Model][rank=0]
Info: Timestep 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.0975e+04 | 800 | 1 | 3.814e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 424.3669317273555 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4223288652039814, dt = 0.006632432105001032 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.2%)
patch tree reduce : 1582.00 ns (0.4%)
gen split merge : 1042.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 429.64 us (95.6%)
LB move op cnt : 0
LB apply : 3.72 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (74.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1576716689893958e-17,1.0934148251549476e-18,-1.0835291568727248e-17)
sum a = (1.5501926129347458e-16,-1.1826554488299227e-16,-9.737682823694993e-17)
sum e = 4.144509526906904
sum de = -1.3010426069826053e-18
Info: CFL hydro = 0.00806895144203407 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00806895144203407 cfl multiplier : 0.7391306037987002 [sph::Model][rank=0]
Info: Timestep 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.0269e+04 | 800 | 1 | 3.947e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 604.9409355791915 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4289612973089824, dt = 0.00806895144203407 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.4%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 386.35 us (95.3%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.317991270258806e-18,1.917220515340182e-19,-1.1515305720261967e-17)
sum a = (-1.7147140984073753e-16,-2.8365876655869036e-17,3.33176977681461e-17)
sum e = 4.1445097464838865
sum de = -5.963111948670274e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011013874261560915
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0615110775168648e-17,5.811574687124927e-19,-1.110490070369696e-17)
sum a = (4.8973001538720774e-17,-5.02521471012993e-19,-6.890011227003779e-19)
sum e = 4.144509204722446
sum de = 7.101524229780054e-18
Info: CFL hydro = 0.0045235495435286205 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0045235495435286205 cfl multiplier : 0.4130435345995667 [sph::Model][rank=0]
Info: Timestep 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.5549e+04 | 800 | 1 | 5.145e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 564.573939989891 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4370302487510165, dt = 0.0045235495435286205 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.77 us (1.1%)
patch tree reduce : 1072.00 ns (0.2%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 426.69 us (96.2%)
LB move op cnt : 0
LB apply : 3.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.683461430995528e-18,9.226623730074625e-19,-1.1245696585292255e-17)
sum a = (1.4839286788733007e-16,-3.1798525184018145e-17,-7.097310695224936e-17)
sum e = 4.144509373890095
sum de = -3.198396408832238e-18
Info: CFL hydro = 0.006678562377103194 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006678562377103194 cfl multiplier : 0.6086956897330444 [sph::Model][rank=0]
Info: Timestep 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.0517e+04 | 800 | 1 | 3.899e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 417.63363629139343 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4415537982945451, dt = 0.006678562377103194 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.2%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 384.91 us (95.5%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.137702390502506e-18,4.643268435589503e-19,-1.1488344806764996e-17)
sum a = (3.271257504299186e-17,6.578762458966521e-17,3.5600388444223005e-17)
sum e = 4.144509631179384
sum de = -2.168404344971009e-18
Info: CFL hydro = 0.008134644922684604 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008134644922684604 cfl multiplier : 0.7391304598220296 [sph::Model][rank=0]
Info: Timestep 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.0637e+04 | 800 | 1 | 3.876e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 620.2267833119649 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4482323606716483, dt = 0.008134644922684604 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.2%)
patch tree reduce : 1372.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 410.39 us (95.6%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.336164670410768e-18,1.4349197294499174e-18,-1.1122874646028274e-17)
sum a = (2.0480708155121493e-16,-1.3576317774252664e-17,-2.3246298748499706e-18)
sum e = 4.144509928007539
sum de = 1.0842021724855044e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010258096612266942
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.752011544643056e-18,1.0185233987744717e-18,-1.0925161280383818e-17)
sum a = (5.3298730326457056e-17,1.286454965793262e-16,-1.512447334038986e-16)
sum e = 4.144509208875168
sum de = -2.6020852139652106e-18
Info: CFL hydro = 0.004566478282548425 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004566478282548425 cfl multiplier : 0.4130434866073432 [sph::Model][rank=0]
Info: Timestep 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.5635e+04 | 800 | 1 | 5.117e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 572.3442193449606 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4563670055943329, dt = 0.004566478282548425 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.2%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 394.33 us (95.4%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.989417366269164e-18,2.3216342177947515e-18,-1.2396028894496364e-17)
sum a = (-1.591293027732351e-17,-1.5936895533765263e-18,5.69414493056034e-17)
sum e = 4.144509434546882
sum de = 2.0057740190981832e-18
Info: CFL hydro = 0.0067393885682382184 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0067393885682382184 cfl multiplier : 0.6086956577382288 [sph::Model][rank=0]
Info: Timestep 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.0248e+04 | 800 | 1 | 3.951e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 416.06978985924036 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4609334838768813, dt = 0.0067393885682382184 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.3%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 387.34 us (95.4%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.34440272731262e-18,1.9741379993893436e-18,-1.1515305720261967e-17)
sum a = (-3.762545261355107e-18,1.2790257362963188e-16,-1.9224928717573675e-16)
sum e = 4.14450976980054
sum de = -9.215718466126788e-19
Info: CFL hydro = 0.008182934230934987 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008182934230934987 cfl multiplier : 0.7391304384921525 [sph::Model][rank=0]
Info: Timestep 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.0842e+04 | 800 | 1 | 3.838e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 632.0777354635462 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4676728724451195, dt = 0.008182934230934987 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (0.6%)
patch tree reduce : 1152.00 ns (0.2%)
gen split merge : 801.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.1%)
LB compute : 694.98 us (97.7%)
LB move op cnt : 0
LB apply : 3.43 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.11298821979695e-18,3.4300273282257943e-18,-1.429227981045001e-17)
sum a = (8.409408485410874e-17,-7.643718542096888e-17,1.9495736115365474e-16)
sum e = 4.144510134571247
sum de = 4.580754178751256e-18
Info: CFL hydro = 0.009147779284763022 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009147779284763022 cfl multiplier : 0.8260869589947685 [sph::Model][rank=0]
Info: Timestep 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.0115e+04 | 800 | 1 | 3.977e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 740.6902929403504 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4758558066760545, dt = 0.009147779284763022 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.1%)
patch tree reduce : 1483.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 425.94 us (95.9%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.495976480704803e-18,1.650607037425688e-18,-1.0622599917806696e-17)
sum a = (-1.2852567029711744e-16,-1.8188431376467887e-16,4.793051288350455e-20)
sum e = 4.144510496351502
sum de = 3.2526065174565133e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01012915015406806
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.159795361284746e-18,1.3780022454007558e-18,-1.1566231890200692e-17)
sum a = (2.5245001135741844e-16,-9.137952281240142e-17,-2.075391207855747e-17)
sum e = 4.144509235721679
sum de = -3.7947076036992655e-19
Info: CFL hydro = 0.00489912271931567 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00489912271931567 cfl multiplier : 0.44202898633158955 [sph::Model][rank=0]
Info: Timestep 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.5939e+04 | 800 | 1 | 5.019e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 656.1356518425675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4850035859608175, dt = 0.00489912271931567 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (1.2%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 377.88 us (95.5%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.423637098474061e-18,1.1053974533758237e-18,-1.172799737118252e-17)
sum a = (-8.529234767619635e-17,1.0551902411303526e-16,2.26855117477627e-16)
sum e = 4.144509591917815
sum de = -2.710505431213761e-18
Info: CFL hydro = 0.006963849311661911 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006963849311661911 cfl multiplier : 0.6280193242210598 [sph::Model][rank=0]
Info: Timestep 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.0697e+04 | 800 | 1 | 3.865e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.293091283327 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4899027086801332, dt = 0.006963849311661911 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.2%)
patch tree reduce : 1262.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 420.67 us (95.9%)
LB move op cnt : 0
LB apply : 3.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.943558596865819e-18,2.5013736411078937e-18,-9.589098233756128e-18)
sum a = (-5.607870007370032e-17,-1.5022621000512414e-16,7.728795202465109e-17)
sum e = 4.144510022483363
sum de = 5.421010862427522e-20
Info: CFL hydro = 0.008346272465781087 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008346272465781087 cfl multiplier : 0.7520128828140399 [sph::Model][rank=0]
Info: Timestep 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.8433e+04 | 800 | 1 | 4.340e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 577.6470989343186 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4968665579917951, dt = 0.003133442008204923 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.2%)
patch tree reduce : 1363.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 400.82 us (95.5%)
LB move op cnt : 0
LB apply : 4.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.712893003613953e-18,7.309403214734443e-19,-9.807781198787118e-18)
sum a = (2.2187034413774255e-16,6.47780881620564e-17,-2.236437731144322e-16)
sum e = 4.144509392041485
sum de = 2.710505431213761e-20
Info: CFL hydro = 0.009269187338122943 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009269187338122943 cfl multiplier : 0.8346752552093598 [sph::Model][rank=0]
Info: Timestep 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.9803e+04 | 800 | 1 | 4.040e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 279.23117919736796 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 76 [SPH][rank=0]
Info: time since start : 846.4126360690001 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15060802739026016 max=0.15170277204945787 delta=0.001094744659197705
Number of particle pairs: 319600
Distance min=0.163111 max=2.240296 mean=0.934905
---------------- t = 0.5, dt = 0.009269187338122943 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.28 us (1.7%)
patch tree reduce : 2.16 us (0.4%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.1%)
LB compute : 569.72 us (95.9%)
LB move op cnt : 0
LB apply : 3.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (74.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.4335724417241706e-18,1.7344854349718208e-18,-1.2490392091735763e-17)
sum a = (1.191073245155088e-17,-4.959609820620633e-17,-1.1783716592409592e-16)
sum e = 4.144510730650572
sum de = 1.4907779871675686e-19
Info: CFL hydro = 0.009896640800823572 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009896640800823572 cfl multiplier : 0.8897835034729065 [sph::Model][rank=0]
Info: Timestep 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.9457e+04 | 800 | 1 | 4.112e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 811.5784845826722 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.509269187338123, dt = 0.009896640800823572 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (1.1%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 405.17 us (95.8%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.2566292176456005e-18,7.788708343569489e-19,-1.2990666819957342e-17)
sum a = (-1.7207054125178133e-16,-1.4573272442229557e-16,-5.1501336093325634e-17)
sum e = 4.144511037068347
sum de = -5.986828871193395e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011148851968033656
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.1029023357449774e-18,6.560488950929685e-19,-1.2442461578852258e-17)
sum a = (-9.830548192406783e-17,-1.016845830823549e-16,-4.869740108964062e-17)
sum e = 4.144509239500073
sum de = 1.5077186461126546e-18
Info: CFL hydro = 0.0051651780141680915 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0051651780141680915 cfl multiplier : 0.46326116782430216 [sph::Model][rank=0]
Info: Timestep 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.5773e+04 | 800 | 1 | 5.072e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 702.4579859992048 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5191658281389465, dt = 0.0051651780141680915 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.84 us (1.2%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.2%)
LB compute : 390.53 us (95.6%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.281892844794315e-18,5.691748404916165e-20,-1.2945731964129057e-17)
sum a = (6.345999905776002e-17,2.425523604469748e-16,8.74731860123958e-18)
sum e = 4.144509723163319
sum de = 1.1905048073659191e-18
Info: CFL hydro = 0.007169082472311022 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007169082472311022 cfl multiplier : 0.6421741118828681 [sph::Model][rank=0]
Info: Timestep 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.0596e+04 | 800 | 1 | 3.884e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 478.71635043715486 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5243310061531146, dt = 0.007169082472311022 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.1%)
patch tree reduce : 1243.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 414.59 us (95.8%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.318789101541395e-18,2.8428785454028634e-18,-1.2676122829159344e-17)
sum a = (-6.892407752647955e-17,-7.906138100134076e-17,-1.0899398629708935e-16)
sum e = 4.144510184931015
sum de = 3.1712913545201005e-18
Info: CFL hydro = 0.008517292773374723 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008517292773374723 cfl multiplier : 0.7614494079219121 [sph::Model][rank=0]
Info: Timestep 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.0293e+04 | 800 | 1 | 3.942e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 654.658813720649 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5315000886254256, dt = 0.008517292773374723 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.4%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.3%)
LB compute : 385.65 us (95.2%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.827102428844179e-18,8.86714488344834e-19,-1.414249695768906e-17)
sum a = (1.4961509596585945e-16,2.1278751194631843e-16,1.511488723781316e-16)
sum e = 4.144510568324363
sum de = 1.9922214919421144e-18
Info: CFL hydro = 0.009427742406404266 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009427742406404266 cfl multiplier : 0.8409662719479414 [sph::Model][rank=0]
Info: Timestep 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.9711e+04 | 800 | 1 | 4.059e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 755.4790250766844 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5400173813988004, dt = 0.009427742406404266 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.3%)
patch tree reduce : 1674.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 398.28 us (95.5%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.491987754300942e-18,3.927306399392154e-18,-1.1521297034372406e-17)
sum a = (1.1563236233145473e-16,4.805033916571331e-17,4.284987851785307e-17)
sum e = 4.144510828560949
sum de = -2.981555974335137e-19
Info: CFL hydro = 0.010011765173956718 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010011765173956718 cfl multiplier : 0.893977514631961 [sph::Model][rank=0]
Info: Timestep 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.0114e+04 | 800 | 1 | 3.977e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 853.3208312325283 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5494451238052047, dt = 0.010011765173956718 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.2%)
patch tree reduce : 1262.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 427.35 us (95.7%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (73.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.127465965648672e-18,3.825454059514707e-18,-1.1647114630691605e-17)
sum a = (-2.9956570552190344e-17,2.6687709573535335e-16,-1.0065407705535956e-18)
sum e = 4.144510947577761
sum de = -1.8973538018496328e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01056184483398173
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.798493146017736e-18,4.793051288350455e-18,-1.2035801133606274e-17)
sum a = (-4.273005223564431e-17,-3.518099645649234e-17,-1.550552091781372e-17)
sum e = 4.144509214265742
sum de = 2.303929616531697e-18
Info: CFL hydro = 0.005197084225418823 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005197084225418823 cfl multiplier : 0.464659171543987 [sph::Model][rank=0]
Info: Timestep 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.5644e+04 | 800 | 1 | 5.114e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 704.8025858668151 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5594568889791615, dt = 0.005197084225418823 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.2%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 394.88 us (95.7%)
LB move op cnt : 0
LB apply : 3.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.193919877306648e-18,3.3401576165692234e-18,-1.2057519647256612e-17)
sum a = (6.930752162954758e-17,1.0086976436333532e-16,-1.0010287615719926e-16)
sum e = 4.144509680703989
sum de = 4.87890977618477e-19
Info: CFL hydro = 0.00718611746822955 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00718611746822955 cfl multiplier : 0.643106114362658 [sph::Model][rank=0]
Info: Timestep 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.0754e+04 | 800 | 1 | 3.855e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 485.3759984588906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5646539732045803, dt = 0.00718611746822955 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (1.2%)
patch tree reduce : 1773.00 ns (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 389.85 us (95.6%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.5528492674897746e-18,4.181937249085772e-18,-1.3099259388209033e-17)
sum a = (1.3540369889590036e-16,5.816367738413277e-17,-6.506567123935742e-17)
sum e = 4.144510045947769
sum de = 2.032879073410321e-18
Info: CFL hydro = 0.00850652318110405 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00850652318110405 cfl multiplier : 0.7620707429084387 [sph::Model][rank=0]
Info: Timestep 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.1023e+04 | 800 | 1 | 3.805e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 679.8158818888979 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5718400906728098, dt = 0.00850652318110405 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.2%)
patch tree reduce : 1463.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 418.51 us (95.7%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6536026944809069e-18,4.0965610230120294e-18,-1.3437955864014734e-17)
sum a = (3.018424048838699e-16,-2.5642824392674933e-17,-3.633132876569645e-17)
sum e = 4.144510291289359
sum de = -5.421010862427522e-20
Info: CFL hydro = 0.009379680954489475 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009379680954489475 cfl multiplier : 0.8413804952722925 [sph::Model][rank=0]
Info: Timestep 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.0930e+04 | 800 | 1 | 3.822e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 801.1820211652445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5803466138539138, dt = 0.009379680954489475 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.72 us (1.1%)
patch tree reduce : 1253.00 ns (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 380.71 us (92.0%)
LB move op cnt : 0
LB apply : 3.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.845324746014925e-18,4.695692434055836e-18,-1.3955642848869774e-17)
sum a = (1.9785715718310678e-16,-1.9574821461623258e-16,4.2634191209877295e-17)
sum e = 4.144510399040854
sum de = 1.5720931501039814e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.012536306537975684
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.81866491412168e-19,2.8623503162617872e-18,-1.3411182179083714e-17)
sum a = (1.575715611045212e-16,7.132060317065477e-17,1.989116284665439e-18)
sum e = 4.144509203301756
sum de = 3.7947076036992655e-19
Info: CFL hydro = 0.004971901258931433 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004971901258931433 cfl multiplier : 0.44712683175743084 [sph::Model][rank=0]
Info: Timestep 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.5910e+04 | 800 | 1 | 5.028e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 671.533837128694 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5897262948084033, dt = 0.004971901258931433 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.3%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 401.41 us (95.6%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.842329088959706e-18,4.662740206448427e-18,-1.3631362972642312e-17)
sum a = (3.2808436068758863e-17,-8.411805011055048e-18,-2.2215792721504358e-17)
sum e = 4.144509539138572
sum de = -1.3552527156068805e-18
Info: CFL hydro = 0.007011945100458659 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007011945100458659 cfl multiplier : 0.6314178878382872 [sph::Model][rank=0]
Info: Timestep 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.0188e+04 | 800 | 1 | 3.963e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 451.6757857774202 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5946981960673348, dt = 0.007011945100458659 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (1.2%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 1092.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 375.93 us (95.4%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.482850242333422e-18,4.562385695098589e-18,-1.3535876404007207e-17)
sum a = (-3.1722809951947487e-16,1.4467825313885847e-16,3.252085299145784e-17)
sum e = 4.144509802630667
sum de = 2.9815559743351372e-18
Info: CFL hydro = 0.00836298622104583 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00836298622104583 cfl multiplier : 0.7542785918921915 [sph::Model][rank=0]
Info: Timestep 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.0673e+04 | 800 | 1 | 3.870e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 652.3028697951646 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6017101411677934, dt = 0.00836298622104583 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.3%)
patch tree reduce : 1452.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 396.54 us (91.8%)
LB move op cnt : 0
LB apply : 19.98 us (4.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2077992496964283e-18,6.1425947917266295e-18,-1.3345652181000798e-17)
sum a = (-7.812673600011242e-18,6.389137367371157e-17,-7.32617889424367e-17)
sum e = 4.144509967677001
sum de = -3.144186300207963e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01094591416422351
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0724452257684142e-18,6.331321186205429e-18,-1.3838437766584329e-17)
sum a = (-7.287834483936867e-17,8.766490806392982e-17,-1.0688504373021515e-16)
sum e = 4.144509214575374
sum de = 2.168404344971009e-18
Info: CFL hydro = 0.004629481218841382 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004629481218841382 cfl multiplier : 0.4180928639640638 [sph::Model][rank=0]
Info: Timestep 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.5687e+04 | 800 | 1 | 5.100e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 590.3691514523656 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6100731273888392, dt = 0.004629481218841382 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.3%)
patch tree reduce : 1733.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 413.73 us (95.5%)
LB move op cnt : 0
LB apply : 4.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2377558202486185e-18,6.2759015306838765e-18,-1.4445058320266184e-17)
sum a = (-6.28728502749371e-17,3.3072053889618137e-18,4.234660813257627e-17)
sum e = 4.144509443343583
sum de = -5.637851296924623e-18
Info: CFL hydro = 0.006772612938322948 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006772612938322948 cfl multiplier : 0.6120619093093759 [sph::Model][rank=0]
Info: Timestep 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.0295e+04 | 800 | 1 | 3.942e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 422.8052207893846 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6147026086076807, dt = 0.006772612938322948 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.94 us (1.1%)
patch tree reduce : 1332.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 424.09 us (95.9%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4863953558317984e-18,5.967348853996316e-18,-1.3851918223332815e-17)
sum a = (1.437196428811884e-16,-3.448600401968152e-17,-1.090179515535311e-16)
sum e = 4.144509656325073
sum de = -1.3010426069826053e-18
Info: CFL hydro = 0.008183230708965001 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008183230708965001 cfl multiplier : 0.7413746062062506 [sph::Model][rank=0]
Info: Timestep 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.0656e+04 | 800 | 1 | 3.873e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 629.5372467917751 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6214752215460037, dt = 0.008183230708965001 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.3%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 395.08 us (95.4%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.698838631912918e-19,5.162266020406201e-18,-1.5177496470267238e-17)
sum a = (-7.546659253507791e-17,3.9782325693308775e-17,3.618753722704593e-17)
sum e = 4.144509800344471
sum de = -3.415236843329339e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010844205847233354
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.076840877313674e-19,5.952370568720221e-18,-1.4469023576707937e-17)
sum a = (7.015828823322978e-17,3.516901382827146e-17,-5.559939494486527e-17)
sum e = 4.144509222232463
sum de = -3.7947076036992655e-19
Info: CFL hydro = 0.0045566231822258725 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0045566231822258725 cfl multiplier : 0.4137915354020835 [sph::Model][rank=0]
Info: Timestep 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.5440e+04 | 800 | 1 | 5.181e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 568.5711495096081 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6296584522549686, dt = 0.0045566231822258725 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.4%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 381.41 us (95.3%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.2238764478588383e-19,6.1845339904996966e-18,-1.4689204370266535e-17)
sum a = (1.0495584058665408e-16,-1.5853017136219128e-16,-4.910481044915041e-17)
sum e = 4.144509399544051
sum de = 1.463672932855431e-18
Info: CFL hydro = 0.006699936300439894 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006699936300439894 cfl multiplier : 0.6091943569347223 [sph::Model][rank=0]
Info: Timestep 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.0503e+04 | 800 | 1 | 3.902e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 420.41461662642246 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6342150754371945, dt = 0.006699936300439894 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.2%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 433.84 us (95.9%)
LB move op cnt : 0
LB apply : 3.70 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.309403214734443e-19,4.7196576904975884e-18,-1.5273357496034247e-17)
sum a = (5.751661546020546e-19,2.226372323438786e-17,4.891308839761639e-17)
sum e = 4.144509579771206
sum de = -6.505213034913027e-19
Info: CFL hydro = 0.008120510366951744 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008120510366951744 cfl multiplier : 0.7394629046231481 [sph::Model][rank=0]
Info: Timestep 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.0679e+04 | 800 | 1 | 3.869e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 623.4791096215844 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6409150117376343, dt = 0.008120510366951744 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.3%)
patch tree reduce : 1473.00 ns (0.3%)
gen split merge : 712.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 412.81 us (95.6%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (71.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.684658177919412e-19,5.783115945100346e-18,-1.4696693512904583e-17)
sum a = (-2.366868639328559e-16,7.440013862341993e-17,8.865946620626254e-17)
sum e = 4.144509722287151
sum de = -2.168404344971009e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010656378383005701
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.048479969326662e-18,5.6206015498547134e-18,-1.4320738552474595e-17)
sum a = (1.809077295646775e-16,1.2821412196337466e-18,-1.0648961699892623e-16)
sum e = 4.144509229919651
sum de = -2.168404344971009e-19
Info: CFL hydro = 0.0045328181425090775 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0045328181425090775 cfl multiplier : 0.4131543015410493 [sph::Model][rank=0]
Info: Timestep 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.5744e+04 | 800 | 1 | 5.081e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 575.3302872781824 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.649035522104586, dt = 0.0045328181425090775 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.72 us (1.2%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 380.87 us (95.5%)
LB move op cnt : 0
LB apply : 3.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9321988006162772e-18,5.27385424571311e-18,-1.5860506278857178e-17)
sum a = (2.027711581250617e-16,2.098038375193203e-16,1.4618806429468888e-17)
sum e = 4.144509381646284
sum de = 3.144186300207963e-18
Info: CFL hydro = 0.006675788428244056 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006675788428244056 cfl multiplier : 0.6087695343606995 [sph::Model][rank=0]
Info: Timestep 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.0690e+04 | 800 | 1 | 3.867e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 422.03773909254824 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6535683402470951, dt = 0.006675788428244056 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.4%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 389.19 us (95.2%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7440218625806355e-18,7.307156471943029e-18,-1.557442103008376e-17)
sum a = (-4.5743683233194656e-18,-1.4433075692045306e-16,2.23230372440812e-16)
sum e = 4.144509558158635
sum de = 5.149960319306146e-18
Info: CFL hydro = 0.00810313031486768 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00810313031486768 cfl multiplier : 0.7391796895737995 [sph::Model][rank=0]
Info: Timestep 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.0789e+04 | 800 | 1 | 3.848e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 624.5337233504265 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6602441286753391, dt = 0.00810313031486768 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.3%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 398.75 us (95.5%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1568730797577045e-18,4.827501344485474e-18,-1.3126969215969808e-17)
sum a = (8.3632753667605e-17,1.2590147471674558e-16,-9.226623730074625e-18)
sum e = 4.14450972432975
sum de = -1.0842021724855044e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010266558758692361
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.552299811046617e-18,5.969970053919633e-18,-1.3839935595111938e-17)
sum a = (-4.562984826509633e-17,-9.032505152896432e-17,5.435320160989416e-17)
sum e = 4.144509236950825
sum de = 1.0842021724855044e-19
Info: CFL hydro = 0.004530093153878036 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004530093153878036 cfl multiplier : 0.4130598965245998 [sph::Model][rank=0]
Info: Timestep 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.5870e+04 | 800 | 1 | 5.041e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 578.6741209331393 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6683472589902067, dt = 0.004530093153878036 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.48 us (1.1%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 407.93 us (95.9%)
LB move op cnt : 0
LB apply : 3.48 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2581759631919943e-18,4.6968158054515436e-18,-1.3480456748485654e-17)
sum a = (2.261481424125953e-16,-1.695302240689556e-16,-1.9713819948985422e-16)
sum e = 4.144509387851898
sum de = 1.0842021724855044e-19
Info: CFL hydro = 0.00667775326212761 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00667775326212761 cfl multiplier : 0.6087065976830665 [sph::Model][rank=0]
Info: Timestep 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.0485e+04 | 800 | 1 | 3.905e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 417.5974463360912 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6728773521440848, dt = 0.00667775326212761 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 us (1.1%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 399.83 us (95.9%)
LB move op cnt : 0
LB apply : 3.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.190924220251429e-18,3.830322002229438e-18,-1.5193972584070943e-17)
sum a = (1.5773931789961347e-16,1.2326529650815282e-16,1.3877081742596655e-16)
sum e = 4.1445095875461275
sum de = 6.505213034913027e-19
Info: CFL hydro = 0.008115006607625737 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008115006607625737 cfl multiplier : 0.7391377317887109 [sph::Model][rank=0]
Info: Timestep 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.0692e+04 | 800 | 1 | 3.866e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 621.7903381408472 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6795551054062124, dt = 0.008115006607625737 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.54 us (1.1%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 412.61 us (96.0%)
LB move op cnt : 0
LB apply : 3.56 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.9218645417248736e-18,4.997504882369154e-18,-1.2644668430079544e-17)
sum a = (-1.65815609320484e-16,-2.280953194984877e-16,-2.0340511404937243e-18)
sum e = 4.14450979706279
sum de = -1.4094628242311558e-18
Info: CFL hydro = 0.009083235009271492 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009083235009271492 cfl multiplier : 0.8260918211924739 [sph::Model][rank=0]
Info: Timestep 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.0792e+04 | 800 | 1 | 3.848e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 759.2797215366539 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6876701120138382, dt = 0.009083235009271492 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.2%)
patch tree reduce : 1342.00 ns (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.2%)
LB compute : 428.88 us (95.9%)
LB move op cnt : 0
LB apply : 3.68 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.366569073623037e-18,1.6320714093965201e-18,-1.3568828631614616e-17)
sum a = (6.621600354856153e-17,-2.6253938431939616e-17,1.5631937645543965e-16)
sum e = 4.144510012701454
sum de = 1.951563910473908e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.012025413404906024
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.238305276691776e-18,2.296545589957292e-18,-1.2854364423944877e-17)
sum a = (-3.043587568102539e-18,-8.12422193375402e-18,4.074093595097887e-18)
sum e = 4.14450925981555
sum de = -3.415236843329339e-18
Info: CFL hydro = 0.004873235051873192 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004873235051873192 cfl multiplier : 0.442030607064158 [sph::Model][rank=0]
Info: Timestep 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.5854e+04 | 800 | 1 | 5.046e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 648.0295068938971 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6967533470231096, dt = 0.004873235051873192 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.64 us (1.1%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 396.04 us (95.7%)
LB move op cnt : 0
LB apply : 3.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.872835115955054e-18,2.738077355611685e-18,-1.3543365546645253e-17)
sum a = (8.059515741361289e-17,1.5520499203089817e-16,-1.297958288885303e-16)
sum e = 4.144509472449036
sum de = 2.0599841277224584e-18
Info: CFL hydro = 0.0069328760439922605 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0069328760439922605 cfl multiplier : 0.6280204047094387 [sph::Model][rank=0]
Info: Timestep 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.0446e+04 | 800 | 1 | 3.913e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 448.3773948508627 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7016265820749829, dt = 0.0069328760439922605 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.4%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 381.91 us (95.3%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.750562633134231e-18,4.580008583868745e-18,-1.4786563224561153e-17)
sum a = (-5.308304301848129e-17,-4.128015422091829e-18,-5.967348853996316e-18)
sum e = 4.1445097444440355
sum de = -1.6263032587282567e-18
Info: CFL hydro = 0.008303465254614551 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008303465254614551 cfl multiplier : 0.7520136031396257 [sph::Model][rank=0]
Info: Timestep 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.1079e+04 | 800 | 1 | 3.795e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 657.636352234506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7085594581189751, dt = 0.008303465254614551 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.86 us (1.1%)
patch tree reduce : 1734.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 414.78 us (95.9%)
LB move op cnt : 0
LB apply : 3.63 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7619958049119495e-18,3.926346852991654e-18,-1.4009190218731814e-17)
sum a = (-2.993260529574859e-17,-4.5929413970618235e-17,-4.1579719926440197e-17)
sum e = 4.144510029718731
sum de = -1.1926223897340549e-18
Info: CFL hydro = 0.009222369912989626 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009222369912989626 cfl multiplier : 0.834675735426417 [sph::Model][rank=0]
Info: Timestep 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.0478e+04 | 800 | 1 | 3.907e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 765.184869808069 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7168629233735897, dt = 0.009222369912989626 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.3%)
patch tree reduce : 1262.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 379.83 us (95.3%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.9207656288385586e-18,3.492936126385394e-18,-1.485845899388641e-17)
sum a = (3.2762902081519534e-16,1.6443461141802801e-16,-1.0182837462100541e-16)
sum e = 4.144510310697077
sum de = -2.927345865710862e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010691024502457938
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.235859076079715e-18,3.900205064470719e-18,-1.500973967517497e-17)
sum a = (-3.697839068962376e-17,7.448102136391085e-17,-1.1778923541121243e-17)
sum e = 4.144509279269693
sum de = -1.1655173354219173e-18
Info: CFL hydro = 0.004922962156000245 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004922962156000245 cfl multiplier : 0.44489191180880566 [sph::Model][rank=0]
Info: Timestep 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.5327e+04 | 800 | 1 | 5.219e-02 | 0.1% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 636.0962495304823 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7260852932865793, dt = 0.004922962156000245 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.3%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 420.88 us (95.7%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3336168460156276e-18,4.029626810684479e-18,-1.476559362517462e-17)
sum a = (-1.059024682161033e-16,1.067352608774542e-17,1.548035739854988e-16)
sum e = 4.144509568314648
sum de = -1.4907779871675686e-18
Info: CFL hydro = 0.006976222324508619 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006976222324508619 cfl multiplier : 0.6299279412058705 [sph::Model][rank=0]
Info: Timestep 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.0526e+04 | 800 | 1 | 3.898e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 454.7131389318259 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7310082554425796, dt = 0.006976222324508619 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.2%)
patch tree reduce : 1653.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 392.87 us (95.5%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7824159478553256e-18,4.1851201347069425e-18,-1.324829332670618e-17)
sum a = (1.0036649397805852e-16,-3.5603384101278226e-18,1.0784365398788523e-17)
sum e = 4.144509915218382
sum de = 4.716279450311944e-18
Info: CFL hydro = 0.008354329142183049 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008354329142183049 cfl multiplier : 0.753285294137247 [sph::Model][rank=0]
Info: Timestep 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.0915e+04 | 800 | 1 | 3.825e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 656.5928573548749 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7379844777670883, dt = 0.008354329142183049 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (1.1%)
patch tree reduce : 1363.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 403.09 us (95.9%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1244703085934527e-18,3.4599838987779845e-18,-1.3475963262902826e-17)
sum a = (2.0888117514631283e-16,-1.511960539767513e-16,-2.8902099268753246e-17)
sum e = 4.144510257048114
sum de = 4.0115480381963664e-18
Info: CFL hydro = 0.009285828923716653 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009285828923716653 cfl multiplier : 0.8355235294248313 [sph::Model][rank=0]
Info: Timestep 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.0906e+04 | 800 | 1 | 3.827e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 785.9610541425816 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7463388069092713, dt = 0.009285828923716653 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (0.9%)
patch tree reduce : 1072.00 ns (0.2%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 428.86 us (96.5%)
LB move op cnt : 0
LB apply : 3.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.896950913198669e-18,1.7261537637869929e-18,-1.3866896508608909e-17)
sum a = (5.4017688019709623e-17,-2.862829621390622e-16,-7.429229496943205e-19)
sum e = 4.144510560942129
sum de = 4.743384504624082e-19
Info: CFL hydro = 0.00992271161863054 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00992271161863054 cfl multiplier : 0.8903490196165542 [sph::Model][rank=0]
Info: Timestep 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.0431e+04 | 800 | 1 | 3.916e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 853.7169002362017 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.755624635832988, dt = 0.00992271161863054 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.4%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 1143.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 395.25 us (95.4%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.390684870866652e-18,-1.488373485028982e-18,-1.3707377770418496e-17)
sum a = (1.412032909548044e-16,-7.673075981238034e-17,-2.31696099278861e-16)
sum e = 4.1445108100179775
sum de = 4.87890977618477e-19
Info: CFL hydro = 0.010359621225479558 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010359621225479558 cfl multiplier : 0.9268993464110361 [sph::Model][rank=0]
Info: Timestep 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.0942e+04 | 800 | 1 | 3.820e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 935.0861991269924 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7655473474516186, dt = 0.010359621225479558 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (0.6%)
patch tree reduce : 1153.00 ns (0.2%)
gen split merge : 751.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.1%)
LB compute : 691.43 us (97.6%)
LB move op cnt : 0
LB apply : 3.25 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.192572589580901e-18,-1.3047022618308651e-18,-1.7399150633844054e-17)
sum a = (-2.1276354668987669e-16,-1.8075794671191652e-17,7.285437958292691e-18)
sum e = 4.144510993474611
sum de = 1.974433800049774e-18
Info: CFL hydro = 0.010633583068595192 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010633583068595192 cfl multiplier : 0.9512662309406906 [sph::Model][rank=0]
Info: Timestep 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.8493e+04 | 800 | 1 | 4.326e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 862.1168370927589 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7759069686770981, dt = 0.010633583068595192 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.3%)
patch tree reduce : 1563.00 ns (0.3%)
gen split merge : 1062.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 433.27 us (95.5%)
LB move op cnt : 0
LB apply : 4.05 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (74.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3865903009251182e-18,-8.889612311362483e-19,-1.610802244304465e-17)
sum a = (-1.4709874403947546e-16,-7.949575127434751e-17,-5.1788919170626665e-17)
sum e = 4.144511097487478
sum de = 1.9583401740519424e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010957839904677148
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.669679892643317e-18,-1.3838063309452426e-18,-1.6508691574180196e-17)
sum a = (-1.8692900024566773e-18,6.079386427861508e-17,5.080634365651482e-18)
sum e = 4.144509326144848
sum de = -6.098637220230962e-19
Info: CFL hydro = 0.005406073990755957 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005406073990755957 cfl multiplier : 0.4837554103135635 [sph::Model][rank=0]
Info: Timestep 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.5320e+04 | 800 | 1 | 5.222e-02 | 0.1% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 733.0810298049555 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7865405517456933, dt = 0.005406073990755957 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.2%)
patch tree reduce : 1483.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 410.84 us (95.7%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (73.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.538420438656837e-18,-1.6052509173240122e-19,-1.6080874300981727e-17)
sum a = (-1.3319889530325914e-16,3.4638782529497695e-17,-1.5253885725175323e-16)
sum e = 4.144509779467544
sum de = 5.963111948670274e-19
Info: CFL hydro = 0.007328086785546955 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007328086785546955 cfl multiplier : 0.6558369402090424 [sph::Model][rank=0]
Info: Timestep 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.0117e+04 | 800 | 1 | 3.977e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 489.38584337301074 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7919466257364493, dt = 0.007328086785546955 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.3%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 408.99 us (95.6%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (73.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.05631911058722e-18,3.6579781072713676e-20,-1.755904382916637e-17)
sum a = (4.016576979637681e-17,-1.616156981290669e-17,-1.2929255850325351e-16)
sum e = 4.144510145117254
sum de = 5.827586677109586e-19
Info: CFL hydro = 0.008609949836469894 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008609949836469894 cfl multiplier : 0.7705579601393616 [sph::Model][rank=0]
Info: Timestep 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.1106e+04 | 800 | 1 | 3.790e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 695.9976527022932 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7992747125219962, dt = 0.008609949836469894 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (1.1%)
patch tree reduce : 1413.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 395.08 us (95.9%)
LB move op cnt : 0
LB apply : 3.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.614634694253667e-18,-1.876498302245798e-19,-1.88857454474965e-17)
sum a = (4.222678185036751e-17,8.273705220809451e-17,-5.4305271097010654e-17)
sum e = 4.144510423099099
sum de = -4.607859233063394e-19
Info: CFL hydro = 0.009466947531931882 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009466947531931882 cfl multiplier : 0.8470386400929076 [sph::Model][rank=0]
Info: Timestep 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.1277e+04 | 800 | 1 | 3.760e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 824.3773771213258 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8078846623584661, dt = 0.009466947531931882 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.31 us (1.1%)
patch tree reduce : 1133.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 701.00 ns (0.2%)
LB compute : 386.61 us (96.2%)
LB move op cnt : 0
LB apply : 3.08 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.436193641647487e-18,4.469145869254896e-19,-1.9051629956929253e-17)
sum a = (2.0610120539906956e-16,3.720606062582041e-17,1.6296374380391547e-18)
sum e = 4.144510590426883
sum de = -6.0986372202309624e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010120873539929872
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.1053485363570394e-18,4.806625359381916e-19,-1.8589549856161717e-17)
sum a = (4.6923972112950955e-17,-3.509412240189099e-17,5.715713661357917e-17)
sum e = 4.144509315866306
sum de = 4.824699667560495e-18
Info: CFL hydro = 0.005022152065996602 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005022152065996602 cfl multiplier : 0.4490128800309692 [sph::Model][rank=0]
Info: Timestep 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.5278e+04 | 800 | 1 | 5.236e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 650.8778552972394 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.817351609890398, dt = 0.005022152065996602 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.3%)
patch tree reduce : 1482.00 ns (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 402.48 us (95.4%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.555645466724346e-18,1.9949203702099257e-19,-1.8095266442050578e-17)
sum a = (-3.0493392296485595e-16,-1.2852567029711744e-16,1.6368270149716803e-16)
sum e = 4.144509673236975
sum de = -1.328147661294743e-18
Info: CFL hydro = 0.007079263523454089 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007079263523454089 cfl multiplier : 0.6326752533539794 [sph::Model][rank=0]
Info: Timestep 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.1221e+04 | 800 | 1 | 3.770e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 479.5962485284377 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8223737619563947, dt = 0.007079263523454089 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.4%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 400.68 us (95.3%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4821013280696171e-18,-1.7290558065592363e-19,-1.668730762609763e-17)
sum a = (5.133357929823337e-17,-1.3558044266215827e-16,7.656899433139851e-17)
sum e = 4.144509982542376
sum de = -9.75781955236954e-19
Info: CFL hydro = 0.008435137893100185 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008435137893100185 cfl multiplier : 0.7551168355693196 [sph::Model][rank=0]
Info: Timestep 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.0842e+04 | 800 | 1 | 3.838e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 663.9653711152134 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8294530254798488, dt = 0.008435137893100185 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.5%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 388.93 us (95.2%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (76.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.480953498164518e-18,-1.9906141131930482e-18,-1.6312850494195253e-17)
sum a = (4.8937053654058145e-17,2.9141751833170764e-17,1.5675674238550162e-16)
sum e = 4.144510198898357
sum de = -4.065758146820642e-18
Info: CFL hydro = 0.009331550947037937 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009331550947037937 cfl multiplier : 0.8367445570462131 [sph::Model][rank=0]
Info: Timestep 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.0583e+04 | 800 | 1 | 3.887e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 781.3078790331192 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8378881633729489, dt = 0.009331550947037937 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.1%)
patch tree reduce : 1493.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 441.89 us (95.8%)
LB move op cnt : 0
LB apply : 3.76 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.771532232520764e-18,-9.606697718955541e-19,-1.448549969051164e-17)
sum a = (5.607870007370032e-17,1.5093917638426626e-16,-1.3097012645417617e-16)
sum e = 4.144510309333084
sum de = 2.8731357570865868e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010583597441593054
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.945280341723468e-18,-4.0048190256959466e-19,-1.5803588794808014e-17)
sum a = (-8.196117703079278e-18,8.546010447128861e-17,-3.072345875832642e-17)
sum e = 4.144509309231492
sum de = 3.0899761915836876e-18
Info: CFL hydro = 0.004961168957597959 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004961168957597959 cfl multiplier : 0.4455815190154044 [sph::Model][rank=0]
Info: Timestep 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.5293e+04 | 800 | 1 | 5.231e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 642.1687069135339 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8472197143199869, dt = 0.004961168957597959 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.2%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.2%)
LB compute : 380.68 us (95.4%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.683160349391803e-18,-4.806157287967038e-19,-1.535424023652516e-17)
sum a = (1.1819664477072223e-16,5.321485192891093e-17,-9.938391846394668e-17)
sum e = 4.144509591114958
sum de = -5.421010862427522e-18
Info: CFL hydro = 0.007011284905274395 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007011284905274395 cfl multiplier : 0.630387679343603 [sph::Model][rank=0]
Info: Timestep 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.0478e+04 | 800 | 1 | 3.907e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 457.17298344340594 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8521808832775848, dt = 0.007011284905274395 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.4%)
patch tree reduce : 1363.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.2%)
LB compute : 388.57 us (95.4%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.996755968105349e-18,-1.4266816725480652e-19,-1.6336815750637002e-17)
sum a = (-1.7662393997571426e-16,-5.0135316476145756e-17,-1.592251637990021e-16)
sum e = 4.144509826258773
sum de = 3.415236843329339e-18
Info: CFL hydro = 0.008371032143249255 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008371032143249255 cfl multiplier : 0.7535917862290686 [sph::Model][rank=0]
Info: Timestep 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.0460e+04 | 800 | 1 | 3.910e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 645.5311352738554 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8591921681828592, dt = 0.008371032143249255 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.3%)
patch tree reduce : 1482.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 407.60 us (95.6%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (74.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4174952435617607e-18,-6.751462088199898e-19,-1.7908037876099387e-17)
sum a = (1.1153430347991508e-16,-9.999503250321136e-18,1.2303762657195618e-16)
sum e = 4.144509988571198
sum de = 4.553649124439119e-18
Info: CFL hydro = 0.009273074340668683 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009273074340668683 cfl multiplier : 0.8357278574860457 [sph::Model][rank=0]
Info: Timestep 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.0578e+04 | 800 | 1 | 3.888e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 775.1649907457585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8675632003261085, dt = 0.009273074340668683 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (1.0%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 397.90 us (95.9%)
LB move op cnt : 0
LB apply : 3.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.55939003804337e-18,-7.054772365040826e-19,-1.5766143081617777e-17)
sum a = (-1.0468024013757393e-16,7.811475337189154e-17,2.8422794139918197e-17)
sum e = 4.144510076782915
sum de = -7.589415207398531e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.012670811897505282
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.558840581600213e-18,1.553997097394874e-19,-1.5811077937446062e-17)
sum a = (-5.4832506738729203e-17,-1.4189229207750477e-16,3.2928262350967626e-17)
sum e = 4.1445093109549695
sum de = -5.041540102057596e-18
Info: CFL hydro = 0.004937557325865619 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004937557325865619 cfl multiplier : 0.4452426191620152 [sph::Model][rank=0]
Info: Timestep 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.5974e+04 | 800 | 1 | 5.008e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 666.5860692081841 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8768362746667772, dt = 0.004937557325865619 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (1.0%)
patch tree reduce : 1243.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 411.80 us (96.0%)
LB move op cnt : 0
LB apply : 3.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.663688578532879e-18,-2.902417229375342e-18,-1.5966852104317453e-17)
sum a = (-1.2773481683453962e-17,-2.017455200407811e-16,-7.256679650562589e-17)
sum e = 4.144509526746684
sum de = 1.6805133673525319e-18
Info: CFL hydro = 0.006984934740830957 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006984934740830957 cfl multiplier : 0.6301617461080101 [sph::Model][rank=0]
Info: Timestep 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.8914e+04 | 800 | 1 | 4.230e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 420.2496950031278 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8817738319926428, dt = 0.006984934740830957 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.32 us (0.6%)
patch tree reduce : 1182.00 ns (0.2%)
gen split merge : 772.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 668.12 us (97.6%)
LB move op cnt : 0
LB apply : 3.31 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (74.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.531879668103242e-18,-3.799990974545345e-18,-1.6610918371189546e-17)
sum a = (4.773879083197053e-17,-9.915624852775003e-18,5.674972725406938e-17)
sum e = 4.144509718305816
sum de = 6.396792817664476e-18
Info: CFL hydro = 0.008348416652381962 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008348416652381962 cfl multiplier : 0.7534411640720068 [sph::Model][rank=0]
Info: Timestep 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.0091e+04 | 800 | 1 | 3.982e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 631.5031307988518 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8887587667334738, dt = 0.008348416652381962 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (1.0%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 409.45 us (96.1%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.289780903073657e-18,-2.8365127741605233e-18,-1.5514507888979378e-17)
sum a = (1.0345801205904457e-16,1.2606623585478262e-16,3.050777145035064e-17)
sum e = 4.144509869505624
sum de = 3.198396408832238e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010891953480992677
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.071097938042667e-18,-2.1546263369662903e-18,-1.5553451430697227e-17)
sum a = (-3.1106902861394454e-17,-7.627841559704227e-17,2.5163519263839886e-18)
sum e = 4.144509319655781
sum de = -5.366800753803247e-18
Info: CFL hydro = 0.004630726467852214 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004630726467852214 cfl multiplier : 0.4178137213573356 [sph::Model][rank=0]
Info: Timestep 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.5578e+04 | 800 | 1 | 5.136e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 585.2246437475193 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8971071833858557, dt = 0.004630726467852214 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.3%)
patch tree reduce : 1413.00 ns (0.3%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 402.00 us (91.6%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3910837865079467e-18,-3.8658954297601634e-18,-1.5781121366893873e-17)
sum a = (2.73683228564811e-17,1.3717113655847958e-16,-7.666485535716552e-17)
sum e = 4.144509487176496
sum de = -2.168404344971009e-18
Info: CFL hydro = 0.00678279209091698 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00678279209091698 cfl multiplier : 0.6118758142382238 [sph::Model][rank=0]
Info: Timestep 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.0531e+04 | 800 | 1 | 3.897e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 427.8214103821769 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9017379098537079, dt = 0.00678279209091698 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (1.0%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 410.37 us (96.1%)
LB move op cnt : 0
LB apply : 3.56 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.6517059503120025e-18,-2.4066359867365917e-18,-1.671277071106699e-17)
sum a = (7.525090522710214e-18,-1.4539721083211106e-16,2.918968234605427e-17)
sum e = 4.144509676891947
sum de = 6.2341624917916505e-18
Info: CFL hydro = 0.008221427881185161 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008221427881185161 cfl multiplier : 0.7412505428254826 [sph::Model][rank=0]
Info: Timestep 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.0934e+04 | 800 | 1 | 3.821e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 638.9704064090006 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.908520701944625, dt = 0.008221427881185161 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.72 us (1.1%)
patch tree reduce : 1313.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 405.64 us (95.8%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.349694044178038e-18,-4.5934656370464864e-18,-1.6134608899409718e-17)
sum a = (1.892056996076342e-16,9.455192363387838e-17,-1.6919471047877106e-17)
sum e = 4.144509850546872
sum de = -2.3852447794681098e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010741550956545753
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.685207634362569e-18,-3.998453254453606e-18,-1.621549163990063e-17)
sum a = (-2.8806238242986233e-17,1.7862204323154536e-16,-6.806132829457646e-18)
sum e = 4.144509325541633
sum de = -2.0057740190981832e-18
Info: CFL hydro = 0.004591092212561046 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004591092212561046 cfl multiplier : 0.4137501809418276 [sph::Model][rank=0]
Info: Timestep 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.5535e+04 | 800 | 1 | 5.150e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 574.7538509367524 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9167421298258102, dt = 0.004591092212561046 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (1.2%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 384.06 us (95.6%)
LB move op cnt : 0
LB apply : 3.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.858406287122116e-18,-3.0136309975503486e-18,-1.634430489327505e-17)
sum a = (-4.407210659638243e-17,2.4124026265678882e-17,3.678666863808974e-18)
sum e = 4.144509487850924
sum de = -9.75781955236954e-19
Info: CFL hydro = 0.006758525720228623 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006758525720228623 cfl multiplier : 0.6091667872945518 [sph::Model][rank=0]
Info: Timestep 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.0635e+04 | 800 | 1 | 3.877e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 426.32312550459096 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9213332220383712, dt = 0.006758525720228623 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (1.1%)
patch tree reduce : 1493.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 414.79 us (95.9%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.229318305526119e-18,-2.905412886430561e-18,-1.6404218034379432e-17)
sum a = (4.8937053654058145e-17,-1.0488993613143926e-16,7.011035772034628e-17)
sum e = 4.144509693369828
sum de = 5.421010862427522e-19
Info: CFL hydro = 0.008204254484188657 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008204254484188657 cfl multiplier : 0.7394445248630346 [sph::Model][rank=0]
Info: Timestep 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.0537e+04 | 800 | 1 | 3.895e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 624.6139298245314 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9280917477585998, dt = 0.008204254484188657 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.4%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 387.83 us (95.2%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.870388915342992e-18,-3.901843314422792e-18,-1.5487546975482407e-17)
sum a = (2.231165374727137e-16,7.417546434427851e-17,6.688103941482016e-17)
sum e = 4.144509898053991
sum de = 6.0173220572945496e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010507159254520693
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.661242377920817e-18,-2.6945935211695215e-18,-1.547256869020631e-17)
sum a = (-6.228570149211416e-17,-1.1033604065782747e-16,5.312498221725435e-17)
sum e = 4.144509330220423
sum de = 5.421010862427522e-19
Info: CFL hydro = 0.004586850312947087 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004586850312947087 cfl multiplier : 0.41314817495434486 [sph::Model][rank=0]
Info: Timestep 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.5522e+04 | 800 | 1 | 5.154e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 573.065254001963 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9362960022427885, dt = 0.004586850312947087 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.3%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 389.61 us (95.5%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0136309975503486e-18,-4.679965234515936e-18,-1.519696824112616e-17)
sum a = (-7.806682285900803e-17,5.235509835406306e-17,-1.8490393607633968e-16)
sum e = 4.144509506472444
sum de = -3.7947076036992655e-19
Info: CFL hydro = 0.006761244553970752 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006761244553970752 cfl multiplier : 0.6087654499695633 [sph::Model][rank=0]
Info: Timestep 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.0518e+04 | 800 | 1 | 3.899e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 423.50026462858256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9408828525557356, dt = 0.006761244553970752 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.73 us (1.1%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 419.47 us (95.9%)
LB move op cnt : 0
LB apply : 4.09 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (72.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.60622163804056e-18,-3.096011566568872e-18,-1.6994362474257583e-17)
sum a = (4.819413070436382e-17,-1.319317323689015e-16,1.3530783787013333e-16)
sum e = 4.144509743057755
sum de = -1.0842021724855044e-18
Info: CFL hydro = 0.00821628464021837 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00821628464021837 cfl multiplier : 0.7391769666463756 [sph::Model][rank=0]
Info: Timestep 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.0849e+04 | 800 | 1 | 3.837e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 634.3522868259959 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9476440971097063, dt = 0.00821628464021837 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (1.0%)
patch tree reduce : 1052.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 368.38 us (95.9%)
LB move op cnt : 0
LB apply : 3.04 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.744571319023793e-18,-5.929154226542274e-18,-1.4933350420266887e-17)
sum a = (-1.2771085157809788e-16,-3.9320994506805046e-17,6.626318514718124e-17)
sum e = 4.144509986837732
sum de = 4.336808689942018e-19
Info: CFL hydro = 0.00918841936204352 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00918841936204352 cfl multiplier : 0.8261179777642503 [sph::Model][rank=0]
Info: Timestep 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.0818e+04 | 800 | 1 | 3.843e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 769.7031759769552 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9558603817499247, dt = 0.00918841936204352 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.45 us (1.1%)
patch tree reduce : 1263.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 396.74 us (95.7%)
LB move op cnt : 0
LB apply : 3.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.671576636812221e-18,-5.0551712806821206e-18,-1.460682380124801e-17)
sum a = (2.4732144647888347e-17,1.1021921003267393e-16,2.5451102341140915e-17)
sum e = 4.144510221784338
sum de = 2.6834003769016235e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011930652385431088
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.378551701843913e-18,-4.403615871171981e-18,-1.489740253560426e-17)
sum a = (-1.4789558881616371e-16,2.2618109464020277e-16,1.1671079887133358e-17)
sum e = 4.144509349036985
sum de = 5.421010862427522e-19
Info: CFL hydro = 0.0049116628896849835 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0049116628896849835 cfl multiplier : 0.4420393259214168 [sph::Model][rank=0]
Info: Timestep 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.5484e+04 | 800 | 1 | 5.167e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 640.2413303469492 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9650488011119682, dt = 0.0049116628896849835 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.3%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 375.91 us (95.4%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.106797447865864e-19,-3.2839890467838663e-18,-1.4816519795113342e-17)
sum a = (9.29971776222197e-17,-1.566429074174033e-17,-3.4695700013546855e-17)
sum e = 4.1445095945617005
sum de = -4.87890977618477e-19
Info: CFL hydro = 0.0069747480868392695 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0069747480868392695 cfl multiplier : 0.6280262172809445 [sph::Model][rank=0]
Info: Timestep 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.1024e+04 | 800 | 1 | 3.805e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 464.6807755425075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9699604640016533, dt = 0.0069747480868392695 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.87 us (0.9%)
patch tree reduce : 972.00 ns (0.2%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 417.62 us (96.5%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2227775349725236e-18,-4.229118847705472e-18,-1.5337764122721456e-17)
sum a = (2.673477883501546e-16,3.8320445050361884e-17,9.168507983203377e-17)
sum e = 4.144509887369514
sum de = -2.981555974335137e-19
Info: CFL hydro = 0.008347914209174837 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008347914209174837 cfl multiplier : 0.7520174781872964 [sph::Model][rank=0]
Info: Timestep 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.0849e+04 | 800 | 1 | 3.837e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 654.3874999139014 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9769352120884925, dt = 0.008347914209174837 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.16 us (1.0%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.2%)
LB compute : 408.04 us (96.2%)
LB move op cnt : 0
LB apply : 2.95 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.02671253865754e-18,-3.55210035322597e-18,-1.411254038713687e-17)
sum a = (-1.0604925541180904e-16,-4.700185919638665e-17,-5.991314110438069e-19)
sum e = 4.144510174112118
sum de = 1.81603863891322e-18
Info: CFL hydro = 0.009263881956520123 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009263881956520123 cfl multiplier : 0.8346783187915309 [sph::Model][rank=0]
Info: Timestep 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.1060e+04 | 800 | 1 | 3.799e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 791.1200555614923 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9852831262976673, dt = 0.009263881956520123 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (1.0%)
patch tree reduce : 982.00 ns (0.2%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 402.65 us (95.9%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4085082723961037e-18,-4.7234022618166124e-18,-1.4403119121493117e-17)
sum a = (-3.946478604545556e-17,4.8523652980437917e-17,2.9429334910471795e-17)
sum e = 4.144510430111892
sum de = 1.328147661294743e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010520553082434632
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4744127276109223e-18,-3.7707833182569595e-18,-1.432822769511264e-17)
sum a = (1.2820813064926424e-16,-1.565500420486915e-16,7.340558048108722e-17)
sum e = 4.144509359636646
sum de = 1.599198204416119e-18
Info: CFL hydro = 0.004940053443309851 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004940053443309851 cfl multiplier : 0.44489277293051027 [sph::Model][rank=0]
Info: Timestep 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.5294e+04 | 800 | 1 | 5.231e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 637.5486548147737 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9945470082541875, dt = 0.004940053443309851 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.28 us (1.0%)
patch tree reduce : 1462.00 ns (0.3%)
gen split merge : 8.44 us (1.9%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.2%)
LB compute : 411.30 us (94.1%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.1579719926440195e-18,-5.386940299547629e-18,-1.3869892165664129e-17)
sum a = (-5.437716686633591e-17,3.6933455833795474e-17,-1.757012776027068e-16)
sum e = 4.14450966021651
sum de = 1.1655173354219173e-18
Info: CFL hydro = 0.006996606861494994 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006996606861494994 cfl multiplier : 0.6299285152870069 [sph::Model][rank=0]
Info: Timestep 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.0693e+04 | 800 | 1 | 3.866e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 460.0090763360163 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9994870616974973, dt = 0.0005129383025026524 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.42 us (1.1%)
patch tree reduce : 1413.00 ns (0.3%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 398.70 us (95.7%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8758307730102727e-18,-4.8874144855898545e-18,-1.4540919346033193e-17)
sum a = (-2.2212197933038093e-16,6.669530867739658e-17,3.458186504544853e-17)
sum e = 4.144509350279511
sum de = -1.951563910473908e-18
Info: CFL hydro = 0.008367570714294977 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008367570714294977 cfl multiplier : 0.7532856768580046 [sph::Model][rank=0]
Info: Timestep 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.0957e+04 | 800 | 1 | 3.817e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.37403655858143 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 145 [SPH][rank=0]
Info: time since start : 850.337773671 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15068393426516513 max=0.15156575949443507 delta=0.0008818252292699391
Number of particle pairs: 319600
Distance min=0.163964 max=2.239315 mean=0.935042
---------------- t = 1, dt = 0.008367570714294977 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.60 us (1.4%)
patch tree reduce : 1643.00 ns (0.2%)
gen split merge : 642.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.1%)
LB compute : 678.26 us (96.6%)
LB move op cnt : 0
LB apply : 4.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5397677263825836e-18,-4.5271867246997655e-18,-1.4118531701247307e-17)
sum a = (5.860703462830519e-17,-2.0819816533772287e-17,-7.932499882220002e-18)
sum e = 4.144510265106059
sum de = -3.1712913545201005e-18
Info: CFL hydro = 0.00928764179717657 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00928764179717657 cfl multiplier : 0.8355237845720032 [sph::Model][rank=0]
Info: Timestep 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.0076e+04 | 800 | 1 | 3.985e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 755.939382105443 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.008367570714295, dt = 0.00928764179717657 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (1.0%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 429.81 us (96.0%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.780519203686421e-18,-4.987020082675888e-18,-1.442408872087965e-17)
sum a = (-2.2819717183836516e-16,-1.4552901974254068e-17,1.3058668235110815e-16)
sum e = 4.144510518971674
sum de = -3.2526065174565133e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010686059314822449
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.935194457671496e-18,-4.372910386355985e-18,-1.3780022454007558e-17)
sum a = (1.3023918613270274e-16,-6.534726300254801e-17,-1.0796348027009399e-16)
sum e = 4.144509356266087
sum de = -2.358139725155972e-18
Info: CFL hydro = 0.004956115950608435 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004956115950608435 cfl multiplier : 0.4451745948573344 [sph::Model][rank=0]
Info: Timestep 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.5912e+04 | 800 | 1 | 5.028e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 665.0309787094812 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0176552125114715, dt = 0.004956115950608435 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.56 us (1.1%)
patch tree reduce : 1213.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 380.24 us (95.8%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.421589813503295e-18,-5.263369446019843e-18,-1.5337764122721456e-17)
sum a = (1.6895505791435353e-18,-1.3707227987565736e-16,-1.5146042071187437e-17)
sum e = 4.14450968417409
sum de = -5.692061405548898e-19
Info: CFL hydro = 0.00702097588655403 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00702097588655403 cfl multiplier : 0.6301163965715563 [sph::Model][rank=0]
Info: Timestep 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.0408e+04 | 800 | 1 | 3.920e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 455.15590916998883 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.02261132846208, dt = 0.00702097588655403 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.2%)
patch tree reduce : 1483.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 420.83 us (94.1%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.089071880373982e-18,-6.1231230208677065e-18,-1.532578149450058e-17)
sum a = (8.888713614245919e-17,-1.691377929947219e-16,-3.273654029943361e-17)
sum e = 4.144510022424852
sum de = -1.938011383317839e-18
Info: CFL hydro = 0.008406604555155094 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008406604555155094 cfl multiplier : 0.7534109310477041 [sph::Model][rank=0]
Info: Timestep 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.0504e+04 | 800 | 1 | 3.902e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 647.8007308426469 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.029632304348634, dt = 0.008406604555155094 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.2%)
patch tree reduce : 1904.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 410.05 us (95.5%)
LB move op cnt : 0
LB apply : 3.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.3142956159585666e-18,-7.796946400471341e-18,-1.557142537302854e-17)
sum a = (4.191523351662473e-17,1.0502773635597935e-17,7.10569853497955e-17)
sum e = 4.144510310101702
sum de = -3.530433324155924e-18
Info: CFL hydro = 0.009333762472179033 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009333762472179033 cfl multiplier : 0.835607287365136 [sph::Model][rank=0]
Info: Timestep 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.0689e+04 | 800 | 1 | 3.867e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 782.6522491774406 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0380389089037891, dt = 0.009333762472179033 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (0.9%)
patch tree reduce : 1673.00 ns (0.3%)
gen split merge : 781.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 550.86 us (96.6%)
LB move op cnt : 0
LB apply : 4.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (75.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.5449612092104325e-18,-7.394030526544381e-18,-1.4585854201861478e-17)
sum a = (3.2808436068758863e-17,-2.733926498304547e-16,-1.191552550283923e-16)
sum e = 4.144510514128984
sum de = 9.215718466126788e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01018718129089552
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.482052411050833e-18,-8.480705123325086e-18,-1.5523494860145035e-17)
sum a = (-1.0082183385045182e-16,-2.3725603877334752e-18,5.4017688019709623e-17)
sum e = 4.144509352109044
sum de = -1.802486111757151e-18
Info: CFL hydro = 0.0049779512213790605 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0049779512213790605 cfl multiplier : 0.44520242912171204 [sph::Model][rank=0]
Info: Timestep 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.5513e+04 | 800 | 1 | 5.157e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 651.5554929767877 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0473726713759681, dt = 0.0049779512213790605 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.73 us (1.0%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 438.20 us (96.0%)
LB move op cnt : 0
LB apply : 3.76 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9003454858951825e-18,-7.13565510553174e-18,-1.454840848867124e-17)
sum a = (2.2036053298191217e-16,6.709672672279593e-17,-1.6775679509226592e-19)
sum e = 4.144509680547713
sum de = -1.4433441421213278e-18
Info: CFL hydro = 0.007049724753219032 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007049724753219032 cfl multiplier : 0.6301349527478081 [sph::Model][rank=0]
Info: Timestep 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.0676e+04 | 800 | 1 | 3.869e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 463.1527861175155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0523506225973471, dt = 0.007049724753219032 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.2%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1223.00 ns (0.3%)
LB compute : 424.79 us (95.6%)
LB move op cnt : 0
LB apply : 4.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.910980826390312e-18,-6.241451474548858e-18,-1.4738632711677647e-17)
sum a = (-1.9697044269476194e-16,7.785413120808748e-17,-4.555795249577107e-17)
sum e = 4.144509989763705
sum de = 2.9680034471790684e-18
Info: CFL hydro = 0.008433100425507064 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008433100425507064 cfl multiplier : 0.7534233018318721 [sph::Model][rank=0]
Info: Timestep 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.0728e+04 | 800 | 1 | 3.859e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 657.57907118197 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0594003473505662, dt = 0.008433100425507064 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.42 us (1.0%)
patch tree reduce : 1403.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.2%)
LB compute : 413.53 us (96.0%)
LB move op cnt : 0
LB apply : 3.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1903747638082713e-18,-6.104400164272587e-18,-1.517000732762919e-17)
sum a = (1.3823159915602712e-16,4.12651759356422e-17,2.9429334910471795e-17)
sum e = 4.144510227334065
sum de = -1.81603863891322e-18
Info: CFL hydro = 0.009349373590801686 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009349373590801686 cfl multiplier : 0.8356155345545814 [sph::Model][rank=0]
Info: Timestep 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.0828e+04 | 800 | 1 | 3.841e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 790.4130540848413 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0678334477760734, dt = 0.009349373590801686 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (0.9%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.2%)
LB compute : 455.01 us (96.2%)
LB move op cnt : 0
LB apply : 3.47 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.212992732524277e-18,-5.729194118106403e-18,-1.4629291229162154e-17)
sum a = (7.740777830685984e-18,8.505868642588926e-17,7.48195306111506e-17)
sum e = 4.1445103683500015
sum de = -1.8295911660692887e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010231893652754731
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.595887379149156e-18,-5.5284850954067275e-18,-1.4410608264131165e-17)
sum a = (4.10764495411634e-17,7.382497246881788e-17,-6.782167573015893e-17)
sum e = 4.1445093454479105
sum de = -1.4772254600114998e-18
Info: CFL hydro = 0.004981758661731517 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004981758661731517 cfl multiplier : 0.44520517818486044 [sph::Model][rank=0]
Info: Timestep 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.5464e+04 | 800 | 1 | 5.173e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 650.5916262529815 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.077182821366875, dt = 0.004981758661731517 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.94 us (1.2%)
patch tree reduce : 1413.00 ns (0.3%)
gen split merge : 1162.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 393.98 us (95.4%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.7846137736279555e-18,-5.509013324547804e-18,-1.5490542632537625e-17)
sum a = (-1.5452797353641866e-16,-2.6023272838687752e-17,9.288933396823181e-17)
sum e = 4.1445096346147725
sum de = -2.9002408113987244e-18
Info: CFL hydro = 0.007051679156019265 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007051679156019265 cfl multiplier : 0.6301367854565737 [sph::Model][rank=0]
Info: Timestep 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.0466e+04 | 800 | 1 | 3.909e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 458.79923100573797 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0821645800286066, dt = 0.007051679156019265 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.3%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 403.29 us (95.7%)
LB move op cnt : 0
LB apply : 3.58 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.843428001846021e-18,-5.448351269179619e-18,-1.4364924494039075e-17)
sum a = (-1.1721406925661039e-16,1.674991685855171e-16,-9.471069345780498e-17)
sum e = 4.144509887674622
sum de = 2.4936649967166602e-18
Info: CFL hydro = 0.008422492073059512 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008422492073059512 cfl multiplier : 0.7534245236377158 [sph::Model][rank=0]
Info: Timestep 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.1017e+04 | 800 | 1 | 3.806e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 666.9131475935436 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.089216259184626, dt = 0.008422492073059512 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (1.0%)
patch tree reduce : 1022.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 421.00 ns (0.1%)
LB compute : 372.31 us (96.3%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2622705331335282e-18,-3.541615553532703e-18,-1.6126370842507866e-17)
sum a = (1.406520900566441e-16,-7.994210417557515e-17,1.8055424203216162e-16)
sum e = 4.1445100673573
sum de = -1.2739375526704677e-18
Info: CFL hydro = 0.009325143684585525 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009325143684585525 cfl multiplier : 0.8356163490918105 [sph::Model][rank=0]
Info: Timestep 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.8158e+04 | 800 | 1 | 4.406e-02 | 0.0% | 1.1% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 688.2078849394647 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.0976387512576855, dt = 0.009325143684585525 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (1.0%)
patch tree reduce : 942.00 ns (0.2%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 373.97 us (96.2%)
LB move op cnt : 0
LB apply : 3.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.814570344180145e-18,-5.530731838198142e-18,-1.3145317615433024e-17)
sum a = (-3.2777281235384585e-16,7.070499564580726e-17,-9.571723422835858e-17)
sum e = 4.144510163574996
sum de = -2.4665599424045226e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011115305390205315
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.524390525465194e-18,-4.293525474392681e-18,-1.425151079021414e-17)
sum a = (-4.936842827000969e-18,1.6481955334962365e-16,-6.878028598782903e-17)
sum e = 4.144509342783374
sum de = -1.3552527156068805e-19
Info: CFL hydro = 0.00496275359353218 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00496275359353218 cfl multiplier : 0.44520544969727016 [sph::Model][rank=0]
Info: Timestep 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.5745e+04 | 800 | 1 | 5.081e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 660.7033176755664 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.106963894942271, dt = 0.00496275359353218 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.2%)
patch tree reduce : 1542.00 ns (0.4%)
gen split merge : 1131.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 402.22 us (95.5%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.367667986509352e-18,-3.576065609667722e-18,-1.4725526712061066e-17)
sum a = (1.68811266375703e-16,-2.701423619255421e-16,-2.717660080494708e-17)
sum e = 4.144509574148492
sum de = -4.0657581468206416e-19
Info: CFL hydro = 0.007020225374998577 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007020225374998577 cfl multiplier : 0.6301369664648467 [sph::Model][rank=0]
Info: Timestep 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.0640e+04 | 800 | 1 | 3.876e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 460.93328678525603 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1119266485358033, dt = 0.007020225374998577 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.84 us (1.2%)
patch tree reduce : 1413.00 ns (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1362.00 ns (0.3%)
LB compute : 384.31 us (95.4%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (74.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.740228374242827e-18,-5.818314915499169e-18,-1.4667860313748098e-17)
sum a = (1.4570875916585383e-16,-9.8047855417319e-17,2.6505573624578016e-17)
sum e = 4.144509774157452
sum de = -1.7618285302889447e-18
Info: CFL hydro = 0.008389507292464807 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008389507292464807 cfl multiplier : 0.7534246443098978 [sph::Model][rank=0]
Info: Timestep 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.0606e+04 | 800 | 1 | 3.882e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 650.9762359572685 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1189468739108017, dt = 0.008389507292464807 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.42 us (1.1%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 382.55 us (95.7%)
LB move op cnt : 0
LB apply : 3.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.468173038661052e-18,-6.341057071634891e-18,-1.4610568372567036e-17)
sum a = (1.5639726353887534e-16,-3.698138634667898e-18,-1.5951274687630315e-16)
sum e = 4.144509921586248
sum de = 4.0657581468206416e-19
Info: CFL hydro = 0.009297794240098554 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009297794240098554 cfl multiplier : 0.8356164295399319 [sph::Model][rank=0]
Info: Timestep 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.0706e+04 | 800 | 1 | 3.864e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 781.6960532402744 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1273363812032666, dt = 0.009297794240098554 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.19 us (1.0%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 390.97 us (95.9%)
LB move op cnt : 0
LB apply : 3.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.259575957682035e-18,-6.0729457651927876e-18,-1.6483602946342736e-17)
sum a = (-1.1881974143820776e-16,-5.1778434370933396e-17,6.362775585285229e-17)
sum e = 4.144510015815564
sum de = -4.255493527005605e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011077180925062123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.767738744182956e-18,-6.064707708290935e-18,-1.5444858862445535e-17)
sum a = (1.6037549610820622e-16,-5.4938478107057576e-17,-1.0844278539892904e-16)
sum e = 4.1445093479709945
sum de = 4.689174395999807e-18
Info: CFL hydro = 0.0049513753791424735 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0049513753791424735 cfl multiplier : 0.44520547651331066 [sph::Model][rank=0]
Info: Timestep 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.5466e+04 | 800 | 1 | 5.173e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 647.1030207635525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.136634175443365, dt = 0.0049513753791424735 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.71 us (1.1%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 399.63 us (95.7%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.950074908910022e-18,-6.427931126236243e-18,-1.6790657794502686e-17)
sum a = (-3.69064949202985e-18,-8.44513169579436e-17,5.152530134976739e-17)
sum e = 4.144509535605868
sum de = -1.7076184216646695e-18
Info: CFL hydro = 0.007006491429823974 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007006491429823974 cfl multiplier : 0.6301369843422071 [sph::Model][rank=0]
Info: Timestep 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.0575e+04 | 800 | 1 | 3.888e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 458.4425601516963 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1415855508225075, dt = 0.007006491429823974 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.89 us (1.1%)
patch tree reduce : 1262.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.2%)
LB compute : 421.50 us (96.0%)
LB move op cnt : 0
LB apply : 3.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.336714126853926e-18,-6.916223226236946e-18,-1.5878480221188492e-17)
sum a = (-9.4806554483572e-17,1.6230282696610776e-17,-1.0235561026272396e-16)
sum e = 4.144509714641434
sum de = 1.8431436932253575e-18
Info: CFL hydro = 0.00837693619697384 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00837693619697384 cfl multiplier : 0.753424656228138 [sph::Model][rank=0]
Info: Timestep 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.0341e+04 | 800 | 1 | 3.933e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 641.3435524218866 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1485920422523315, dt = 0.00837693619697384 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.4%)
patch tree reduce : 1512.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 404.95 us (95.2%)
LB move op cnt : 0
LB apply : 3.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.447003981453872e-18,-6.757453402310337e-18,-1.7621952627325968e-17)
sum a = (-4.8793262115407633e-17,1.665884888407305e-17,7.930103356575827e-17)
sum e = 4.144509868086102
sum de = -1.5449880957918438e-18
Info: CFL hydro = 0.009294010755384418 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009294010755384418 cfl multiplier : 0.8356164374854252 [sph::Model][rank=0]
Info: Timestep 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.8957e+04 | 800 | 1 | 4.220e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 714.6172537809342 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1569689784493054, dt = 0.009294010755384418 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.63 us (1.1%)
patch tree reduce : 1492.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 394.99 us (95.6%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.123473019490216e-18,-6.6795663188746415e-18,-1.5999804331924863e-17)
sum a = (-6.937941739887284e-17,1.1217237843267674e-17,-8.277599574981236e-17)
sum e = 4.144509997495758
sum de = -3.7947076036992655e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011167287674301755
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.046943343157668e-18,-6.812124143568084e-18,-1.6898501448490574e-17)
sum a = (-1.1366721130323104e-16,-1.831604636702022e-16,-2.1784418105552818e-17)
sum e = 4.144509360341293
sum de = -2.6834003769016235e-18
Info: CFL hydro = 0.004957306719612029 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004957306719612029 cfl multiplier : 0.44520547916180836 [sph::Model][rank=0]
Info: Timestep 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.5835e+04 | 800 | 1 | 5.052e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 662.2699611836251 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1662629892046898, dt = 0.004957306719612029 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (1.1%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1253.00 ns (0.3%)
LB compute : 389.84 us (95.5%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.581259092495571e-18,-7.82016274264929e-18,-1.6425187633765964e-17)
sum a = (-9.607671307498486e-17,-1.8655454311376537e-17,2.3965256441752274e-17)
sum e = 4.144509538895017
sum de = 9.486769009248164e-19
Info: CFL hydro = 0.007020848126884459 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007020848126884459 cfl multiplier : 0.6301369861078722 [sph::Model][rank=0]
Info: Timestep 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.0847e+04 | 800 | 1 | 3.837e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 465.05302300037846 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1712202959243019, dt = 0.007020848126884459 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (1.1%)
patch tree reduce : 1293.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 376.03 us (95.8%)
LB move op cnt : 0
LB apply : 3.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.78478877293921e-18,-8.187130731913621e-18,-1.6395231063213775e-17)
sum a = (2.9980535808632094e-17,4.026163082214382e-17,-6.79894325252512e-17)
sum e = 4.144509736450731
sum de = -8.131516293641283e-20
Info: CFL hydro = 0.008395516706488984 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008395516706488984 cfl multiplier : 0.753424657405248 [sph::Model][rank=0]
Info: Timestep 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.0790e+04 | 800 | 1 | 3.848e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 656.8347719249439 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1782411440511864, dt = 0.008395516706488984 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.53 us (5.4%)
patch tree reduce : 1293.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 398.00 us (91.7%)
LB move op cnt : 0
LB apply : 3.67 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.426982754151791e-18,-7.963205367035997e-18,-1.724300200984076e-17)
sum a = (-9.00853989645468e-17,-2.7706832103720847e-17,3.5947884662628414e-17)
sum e = 4.144509928370249
sum de = 0
Info: CFL hydro = 0.009311957863047855 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009311957863047855 cfl multiplier : 0.8356164382701653 [sph::Model][rank=0]
Info: Timestep 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.0894e+04 | 800 | 1 | 3.829e-02 | 0.1% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 789.3788805634333 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1866366607576755, dt = 0.009311957863047855 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.54 us (1.0%)
patch tree reduce : 1462.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 458.96 us (96.3%)
LB move op cnt : 0
LB apply : 3.73 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (73.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.9104313699471545e-18,-7.838885599244408e-18,-1.6401222377324214e-17)
sum a = (-1.8592245947511414e-16,-1.9879180218433513e-17,-1.6492889483213915e-16)
sum e = 4.144510109489514
sum de = -2.710505431213761e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01119325017347722
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.288832530989205e-18,-7.61421132010298e-18,-1.7383797891436056e-17)
sum a = (-4.256229544055204e-17,2.174547456383497e-17,9.761048948725701e-17)
sum e = 4.144509375897963
sum de = 1.2197274440461925e-18
Info: CFL hydro = 0.004964606000382156 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004964606000382156 cfl multiplier : 0.44520547942338845 [sph::Model][rank=0]
Info: Timestep 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.5618e+04 | 800 | 1 | 5.122e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 654.454526749651 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.1959486186207233, dt = 0.004964606000382156 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.2%)
patch tree reduce : 1493.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 416.22 us (95.7%)
LB move op cnt : 0
LB apply : 3.65 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.008539138505578e-18,-7.444207782219301e-18,-1.5781121366893873e-17)
sum a = (-1.0187630513388891e-16,-1.0403617387070184e-16,-4.4335724417241706e-18)
sum e = 4.1445095809040815
sum de = -2.5478751053409354e-18
Info: CFL hydro = 0.007017522174203442 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007017522174203442 cfl multiplier : 0.6301369862822589 [sph::Model][rank=0]
Info: Timestep 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.0431e+04 | 800 | 1 | 3.916e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.4328350593918 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2009132246211054, dt = 0.007017522174203442 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.34 us (1.0%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 414.22 us (96.2%)
LB move op cnt : 0
LB apply : 3.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.207949790498291e-18,-8.759301229460457e-18,-1.6032756559532273e-17)
sum a = (-3.650627513772124e-16,2.5531385950220786e-16,-1.5860206713151654e-16)
sum e = 4.1445098209076505
sum de = 2.9002408113987244e-18
Info: CFL hydro = 0.008374053309934851 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008374053309934851 cfl multiplier : 0.7534246575215059 [sph::Model][rank=0]
Info: Timestep 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.0515e+04 | 800 | 1 | 3.900e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 647.8377225133959 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2079307467953089, dt = 0.008374053309934851 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.2%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 394.99 us (95.6%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3630239601246605e-18,-5.368966357216314e-18,-1.8045838100639463e-17)
sum a = (-1.5071749776218006e-16,-4.828400041602039e-17,2.2695097850339404e-17)
sum e = 4.144510057073682
sum de = 3.7947076036992655e-19
Info: CFL hydro = 0.009268382117357555 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009268382117357555 cfl multiplier : 0.8356164383476706 [sph::Model][rank=0]
Info: Timestep 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.0103e+04 | 800 | 1 | 3.980e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 757.5327411320382 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2163048001052437, dt = 0.009268382117357555 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.76 us (1.1%)
patch tree reduce : 1814.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 410.56 us (95.8%)
LB move op cnt : 0
LB apply : 3.62 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.039794079764731e-19,-6.93120151151304e-18,-1.718908018284682e-17)
sum a = (8.816817844920662e-17,-8.436369398907844e-17,4.1615667811102825e-17)
sum e = 4.144510273458112
sum de = -4.336808689942018e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011085604555994463
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8123725184075157e-18,-7.420991440041352e-18,-1.7012336416588897e-17)
sum a = (5.4928367764496215e-17,7.39867379497997e-17,-5.939788809088301e-17)
sum e = 4.144509388603696
sum de = 1.1655173354219173e-18
Info: CFL hydro = 0.004929433311505342 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004929433311505342 cfl multiplier : 0.4452054794492235 [sph::Model][rank=0]
Info: Timestep 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.5431e+04 | 800 | 1 | 5.184e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 643.5834812453418 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2255731822226013, dt = 0.004929433311505342 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.3%)
patch tree reduce : 1994.00 ns (0.5%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 406.18 us (95.4%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0265619978556767e-18,-6.114136049702049e-18,-1.7638428741129673e-17)
sum a = (-2.362734632592357e-16,6.080584690683595e-17,1.811773386996472e-17)
sum e = 4.144509635217013
sum de = -1.81603863891322e-18
Info: CFL hydro = 0.006970738715240398 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006970738715240398 cfl multiplier : 0.6301369862994823 [sph::Model][rank=0]
Info: Timestep 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.0736e+04 | 800 | 1 | 3.858e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 459.97618624912855 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2305026155341066, dt = 0.006970738715240398 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.77 us (1.2%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 383.20 us (95.5%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.497030696326928e-19,-6.149335020100873e-18,-1.734485434971821e-17)
sum a = (8.589147908724015e-17,1.6810429131067132e-16,1.2239206247655648e-16)
sum e = 4.144509915759419
sum de = 1.8295911660692887e-18
Info: CFL hydro = 0.008325667706847065 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008325667706847065 cfl multiplier : 0.7534246575329883 [sph::Model][rank=0]
Info: Timestep 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.9980e+04 | 800 | 1 | 4.004e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 626.728036520832 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.237473354249347, dt = 0.008325667706847065 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.2%)
patch tree reduce : 1913.00 ns (0.5%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 380.76 us (95.3%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5277850981617075e-18,-3.8067312029195876e-18,-1.6116634957078404e-17)
sum a = (4.582157031663035e-17,1.7662393997571426e-17,1.5993064103550618e-16)
sum e = 4.144510179980812
sum de = -2.710505431213761e-20
Info: CFL hydro = 0.009225012865016324 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009225012865016324 cfl multiplier : 0.8356164383553256 [sph::Model][rank=0]
Info: Timestep 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.1039e+04 | 800 | 1 | 3.802e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 788.2394881006668 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.245799021956194, dt = 0.009225012865016324 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.0%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 425.22 us (96.0%)
LB move op cnt : 0
LB apply : 3.48 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5906938963213072e-18,-4.6859565486263746e-18,-1.4379153865051364e-17)
sum a = (-8.831196998785713e-17,-3.652305081723047e-17,1.0106747772897978e-16)
sum e = 4.144510403558666
sum de = 9.486769009248164e-20
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011632156906788758
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2761499055233085e-18,-4.6133118650373124e-18,-1.4741628368732868e-17)
sum a = (-1.7080038266036846e-16,1.4043640274866834e-16,1.4690702198794144e-17)
sum e = 4.144509394581247
sum de = -3.6591823321385775e-19
Info: CFL hydro = 0.004912654055396133 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004912654055396133 cfl multiplier : 0.44520547945177524 [sph::Model][rank=0]
Info: Timestep 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.5474e+04 | 800 | 1 | 5.170e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 642.3822338417159 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2550240348212105, dt = 0.004912654055396133 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.79 us (1.2%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 397.04 us (95.8%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.407958815952946e-19,-3.558840581600213e-18,-1.489141122149382e-17)
sum a = (5.169305814485965e-17,1.2664439766643988e-16,-4.319737473625847e-17)
sum e = 4.144509677637384
sum de = -2.3310346708438345e-18
Info: CFL hydro = 0.006951721500887738 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006951721500887738 cfl multiplier : 0.6301369863011835 [sph::Model][rank=0]
Info: Timestep 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.1188e+04 | 800 | 1 | 3.776e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 468.4010460238282 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2599366888766066, dt = 0.006951721500887738 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.3%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 396.63 us (95.4%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.668882061360728e-19,-2.222403077840621e-18,-1.5340759779776674e-17)
sum a = (-1.6298770906035721e-16,-1.2671629343576514e-16,-5.440113212277766e-18)
sum e = 4.14450997800677
sum de = 1.3213713977167085e-18
Info: CFL hydro = 0.008311041350167397 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008311041350167397 cfl multiplier : 0.7534246575341225 [sph::Model][rank=0]
Info: Timestep 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.0930e+04 | 800 | 1 | 3.822e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 654.7563332824166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2668884103774942, dt = 0.008311041350167397 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (1.0%)
patch tree reduce : 982.00 ns (0.2%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 390.86 us (96.2%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3001151619650608e-18,-4.464277926540166e-18,-1.5313798866279702e-17)
sum a = (-4.780349702436326e-16,3.066354561722203e-17,-9.628041775473976e-17)
sum e = 4.144510241214998
sum de = 9.994988777600744e-20
Info: CFL hydro = 0.00921966694834551 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00921966694834551 cfl multiplier : 0.8356164383560817 [sph::Model][rank=0]
Info: Timestep 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.1019e+04 | 800 | 1 | 3.806e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 786.1165414576205 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2751994517276617, dt = 0.00921966694834551 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (1.1%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 368.08 us (95.7%)
LB move op cnt : 0
LB apply : 3.10 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.078737621482578e-18,-3.488442640802566e-18,-1.653003563069863e-17)
sum a = (-2.525818202678481e-16,-2.042798459094964e-16,5.2004606478602433e-17)
sum e = 4.1445104400757256
sum de = 1.4907779871675686e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010971449451663893
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.997305424548507e-18,-4.734823204339635e-18,-1.579010833805953e-17)
sum a = (-3.3958768377962974e-17,5.581508225284105e-17,6.250138880008993e-17)
sum e = 4.1445093937471515
sum de = 2.2005915969666723e-18
Info: CFL hydro = 0.004916299379194669 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004916299379194669 cfl multiplier : 0.4452054794520272 [sph::Model][rank=0]
Info: Timestep 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.5748e+04 | 800 | 1 | 5.080e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 653.3506752979806 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2844191186760072, dt = 0.004916299379194669 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.2%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 414.67 us (95.7%)
LB move op cnt : 0
LB apply : 3.66 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.08662567976192e-18,-3.1411336509631085e-18,-1.5460586061985436e-17)
sum a = (-2.8099263177954544e-16,1.4997457481248573e-16,7.226723080010398e-17)
sum e = 4.1445096890715325
sum de = 3.7608262858090935e-19
Info: CFL hydro = 0.006961761055715776 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006961761055715776 cfl multiplier : 0.6301369863013515 [sph::Model][rank=0]
Info: Timestep 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.0337e+04 | 800 | 1 | 3.934e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 449.9214679695741 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.289335418055202, dt = 0.006961761055715776 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.3%)
patch tree reduce : 1423.00 ns (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 375.90 us (95.2%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.339359785286635e-18,-1.960142664084492e-18,-1.4906389506769916e-17)
sum a = (-2.3001853132793833e-16,4.302961794116621e-17,-4.407210659638243e-17)
sum e = 4.144509978460124
sum de = -5.353248226647178e-19
Info: CFL hydro = 0.008331311415993732 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008331311415993732 cfl multiplier : 0.7534246575342344 [sph::Model][rank=0]
Info: Timestep 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.0649e+04 | 800 | 1 | 3.874e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 646.8856140076634 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.2962971791109177, dt = 0.008331311415993732 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.2%)
patch tree reduce : 1482.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 401.67 us (95.6%)
LB move op cnt : 0
LB apply : 3.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.049879963816703e-18,-1.9113228155127196e-18,-1.575715611045212e-17)
sum a = (1.9941489885182067e-16,-1.228818524050848e-16,1.664626712444113e-16)
sum e = 4.144510212170087
sum de = 5.963111948670274e-19
Info: CFL hydro = 0.009253084560067841 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009253084560067841 cfl multiplier : 0.8356164383561563 [sph::Model][rank=0]
Info: Timestep 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.0676e+04 | 800 | 1 | 3.869e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 775.144197533829 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3046284905269114, dt = 0.009253084560067841 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.3%)
patch tree reduce : 1512.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 405.44 us (95.4%)
LB move op cnt : 0
LB apply : 4.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.70672669019226e-18,-3.623434436853373e-18,-1.3374110923025379e-17)
sum a = (2.0807833905551412e-16,2.1087029143097826e-16,-2.535284478972973e-16)
sum e = 4.144510366845741
sum de = -2.8324781756183803e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010983030096262444
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.556943837431308e-18,-1.8331548892280978e-18,-1.5217937840512693e-17)
sum a = (-1.895651784542605e-17,6.61321251510154e-17,1.0527937154861775e-16)
sum e = 4.144509388905743
sum de = 2.358139725155972e-18
Info: CFL hydro = 0.0049404705997738285 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0049404705997738285 cfl multiplier : 0.4452054794520521 [sph::Model][rank=0]
Info: Timestep 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.5462e+04 | 800 | 1 | 5.174e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 643.8334745862985 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3138815750869792, dt = 0.0049404705997738285 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.2%)
patch tree reduce : 1412.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.2%)
LB compute : 417.46 us (95.6%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (73.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.249490073630063e-18,-2.6283146088228002e-18,-1.3219834584681598e-17)
sum a = (1.0744822725659633e-16,-1.0391335193143787e-16,1.1527288348482844e-17)
sum e = 4.144509666256723
sum de = -1.328147661294743e-18
Info: CFL hydro = 0.007000775821652089 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007000775821652089 cfl multiplier : 0.630136986301368 [sph::Model][rank=0]
Info: Timestep 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.0368e+04 | 800 | 1 | 3.928e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 452.8212683308957 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.318822045686753, dt = 0.007000775821652089 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.3%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 420.13 us (95.7%)
LB move op cnt : 0
LB apply : 4.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.042240280376792e-18,-3.563334067183041e-18,-1.3374110923025379e-17)
sum a = (-3.3922820493300346e-17,-1.3103003959528056e-16,7.836638856452993e-18)
sum e = 4.144509919033592
sum de = 9.0801931945661e-19
Info: CFL hydro = 0.008386000574504953 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008386000574504953 cfl multiplier : 0.7534246575342453 [sph::Model][rank=0]
Info: Timestep 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.0658e+04 | 800 | 1 | 3.873e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 650.8139491145074 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3258228215084051, dt = 0.008386000574504953 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.2%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 425.99 us (95.8%)
LB move op cnt : 0
LB apply : 3.48 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.269910216573439e-18,-4.4425594128898276e-18,-1.330670863928295e-17)
sum a = (9.885668282222813e-18,8.833593524429888e-17,1.6080687072415776e-17)
sum e = 4.144510108941584
sum de = 0
Info: CFL hydro = 0.009324223746851183 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009324223746851183 cfl multiplier : 0.8356164383561634 [sph::Model][rank=0]
Info: Timestep 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.0232e+04 | 800 | 1 | 3.954e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 763.486399197371 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.33420882208291, dt = 0.009324223746851183 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.92 us (1.1%)
patch tree reduce : 1774.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 408.51 us (95.5%)
LB move op cnt : 0
LB apply : 4.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.6563499766966945e-18,-3.0473321394215624e-18,-1.3257280297871836e-17)
sum a = (2.301862881230306e-16,-1.5507917443457896e-16,8.651457575472571e-18)
sum e = 4.144510221298606
sum de = -5.204170427930421e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011408819575190614
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.185482362584148e-18,-3.89360525752094e-18,-1.3335167381307532e-17)
sum a = (7.948676430318186e-17,-1.1778923541121243e-16,-1.0221181872407345e-16)
sum e = 4.144509384722008
sum de = -8.402566836762659e-19
Info: CFL hydro = 0.004971496748541597 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004971496748541597 cfl multiplier : 0.4452054794520544 [sph::Model][rank=0]
Info: Timestep 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.5443e+04 | 800 | 1 | 5.180e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 647.979448262096 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3435330458297612, dt = 0.004971496748541597 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.93 us (1.1%)
patch tree reduce : 1463.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 412.28 us (95.8%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.679765776695289e-18,-4.526437810435961e-18,-1.4106549073026432e-17)
sum a = (-7.10749592921268e-17,1.4525341929346055e-16,-3.616357197060418e-17)
sum e = 4.144509621448878
sum de = -2.2497195079074217e-18
Info: CFL hydro = 0.0070368419117529035 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0070368419117529035 cfl multiplier : 0.6301369863013696 [sph::Model][rank=0]
Info: Timestep 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.0708e+04 | 800 | 1 | 3.863e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 463.2627270046763 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3485045425783029, dt = 0.0070368419117529035 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.0%)
patch tree reduce : 1443.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 411.49 us (96.0%)
LB move op cnt : 0
LB apply : 3.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.344801642953915e-18,-2.9829255127343536e-18,-1.420241009879344e-17)
sum a = (4.2238764478588386e-17,2.5978337982859467e-17,8.951023280994475e-17)
sum e = 4.14450982758064
sum de = 1.4365678785432934e-18
Info: CFL hydro = 0.008415397656008374 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008415397656008374 cfl multiplier : 0.7534246575342465 [sph::Model][rank=0]
Info: Timestep 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.1042e+04 | 800 | 1 | 3.802e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 666.3019320541625 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3555413844900557, dt = 0.008415397656008374 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.2%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.3%)
LB compute : 417.50 us (95.7%)
LB move op cnt : 0
LB apply : 3.65 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.191473676694586e-18,-2.968696141722063e-18,-1.3001151619650608e-17)
sum a = (7.309403214734443e-19,-3.53487532515846e-17,-5.504819404670497e-17)
sum e = 4.144509977521086
sum de = -2.358139725155972e-18
Info: CFL hydro = 0.009320566369768676 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009320566369768676 cfl multiplier : 0.8356164383561643 [sph::Model][rank=0]
Info: Timestep 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.0611e+04 | 800 | 1 | 3.881e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 780.5393170727409 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.363956782146064, dt = 0.009320566369768676 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.86 us (1.1%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 414.63 us (95.8%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.757652860130984e-18,-3.6067710944837174e-18,-1.4133509986523403e-17)
sum a = (7.668882061360728e-18,-3.1442416451578985e-17,-1.5836241456709903e-16)
sum e = 4.14451006427833
sum de = 6.3696877633523385e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01122401961065791
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.934396626388907e-18,-3.638225493563517e-18,-1.4813898595190027e-17)
sum a = (-8.135605430563853e-17,-3.8080792485944366e-17,8.725749870442003e-17)
sum e = 4.144509385925211
sum de = -2.6020852139652106e-18
Info: CFL hydro = 0.004956791371623324 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004956791371623324 cfl multiplier : 0.44520547945205474 [sph::Model][rank=0]
Info: Timestep 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.4914e+04 | 800 | 1 | 5.364e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 625.5154205696582 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3732773485158327, dt = 0.004956791371623324 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.3%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 379.46 us (95.4%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.73124140307717e-18,-3.729593033747698e-18,-1.3057694646567868e-17)
sum a = (-1.3971744505541575e-16,-7.585003663814595e-17,1.1275653155844446e-16)
sum e = 4.144509576474806
sum de = 3.821812658011403e-18
Info: CFL hydro = 0.007009170404125021 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007009170404125021 cfl multiplier : 0.6301369863013698 [sph::Model][rank=0]
Info: Timestep 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.0530e+04 | 800 | 1 | 3.897e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 457.92913809156965 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.378234139887456, dt = 0.007009170404125021 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.31 us (1.0%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 411.01 us (95.8%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.782717029459051e-18,-4.858955743565274e-18,-1.2128853730884017e-17)
sum a = (-1.8063512477265256e-16,9.593292153633435e-17,-6.724650957555689e-17)
sum e = 4.144509748546327
sum de = -4.553649124439119e-18
Info: CFL hydro = 0.008371756065387658 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008371756065387658 cfl multiplier : 0.7534246575342465 [sph::Model][rank=0]
Info: Timestep 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.0986e+04 | 800 | 1 | 3.812e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 661.9240506983783 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.385243310291581, dt = 0.008371756065387658 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.33 us (1.1%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 387.12 us (96.0%)
LB move op cnt : 0
LB apply : 3.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.666985317191823e-18,-3.626242865342641e-18,-1.3449189577971806e-17)
sum a = (3.791932657066806e-16,8.651457575472571e-18,4.1771441977974215e-17)
sum e = 4.144509884604549
sum de = -5.55653613398821e-18
Info: CFL hydro = 0.009277334653766388 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009277334653766388 cfl multiplier : 0.8356164383561643 [sph::Model][rank=0]
Info: Timestep 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.0721e+04 | 800 | 1 | 3.861e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 780.6305057497018 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.3936150663569689, dt = 0.009277334653766388 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.3%)
patch tree reduce : 1492.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 402.44 us (95.6%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.501923097551051e-18,-3.4450056135018896e-18,-1.2522220947947466e-17)
sum a = (-2.627041454574332e-17,8.087075786269304e-17,-5.32268345571318e-17)
sum e = 4.144509985306577
sum de = 1.1655173354219173e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01127881221790393
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.3981740135047e-18,-3.293724932213328e-18,-1.2884320994497067e-17)
sum a = (6.485597524549209e-18,-2.2383549516596625e-16,-1.3746471094989104e-16)
sum e = 4.144509393849497
sum de = -2.710505431213761e-18
Info: CFL hydro = 0.004942254847052365 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004942254847052365 cfl multiplier : 0.44520547945205474 [sph::Model][rank=0]
Info: Timestep 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.5530e+04 | 800 | 1 | 5.151e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 648.3452895059002 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4028924010107353, dt = 0.004942254847052365 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.4%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 375.15 us (95.1%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.1285648785349865e-18,-5.636328749394613e-18,-1.3970995591277772e-17)
sum a = (3.589396283563447e-17,-1.9308807115119808e-16,-2.89739950380785e-17)
sum e = 4.14450955967055
sum de = 3.0357660829594124e-18
Info: CFL hydro = 0.006994957103780501 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006994957103780501 cfl multiplier : 0.6301369863013698 [sph::Model][rank=0]
Info: Timestep 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.0280e+04 | 800 | 1 | 3.945e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 451.0364631214598 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4078346558577877, dt = 0.006994957103780501 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.3%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 373.00 us (95.3%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.445555069945047e-18,-6.91697214050075e-18,-1.393130313529612e-17)
sum a = (-6.993323949695646e-17,2.0016980442973587e-16,1.7973942331314205e-18)
sum e = 4.1445097298357245
sum de = -1.4365678785432934e-18
Info: CFL hydro = 0.008365608258384014 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008365608258384014 cfl multiplier : 0.7534246575342465 [sph::Model][rank=0]
Info: Timestep 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.0685e+04 | 800 | 1 | 3.868e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 651.1053441646206 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.414829612961568, dt = 0.008365608258384014 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.3%)
patch tree reduce : 3.44 us (0.8%)
gen split merge : 2.05 us (0.5%)
split / merge op : 0/0
apply split merge : 1453.00 ns (0.3%)
LB compute : 417.94 us (94.6%)
LB move op cnt : 0
LB apply : 4.01 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.886466113505402e-18,-4.369165815036962e-18,-1.3676672285602501e-17)
sum a = (-1.2704731354036685e-16,-1.1933499445170545e-16,6.681513495960534e-17)
sum e = 4.144509885826875
sum de = 2.9544509200229996e-18
Info: CFL hydro = 0.009284955717160414 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009284955717160414 cfl multiplier : 0.8356164383561643 [sph::Model][rank=0]
Info: Timestep 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.0677e+04 | 800 | 1 | 3.869e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 778.3771148795671 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4231952212199521, dt = 0.009284955717160414 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.3%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1273.00 ns (0.3%)
LB compute : 418.80 us (95.5%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.722254431911513e-18,-6.4436583257761426e-18,-1.2746520769956991e-17)
sum a = (7.385043555378725e-17,-2.0670033681011336e-16,-9.21464110185375e-17)
sum e = 4.144510026163293
sum de = -1.3010426069826053e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011331925252745999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.745670231910108e-18,-6.66833260491757e-18,-1.3660196171798796e-17)
sum a = (5.606072613136901e-17,-8.11463583117732e-17,1.0635780808849659e-16)
sum e = 4.144509406287082
sum de = 2.710505431213761e-19
Info: CFL hydro = 0.004954795921278452 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004954795921278452 cfl multiplier : 0.44520547945205474 [sph::Model][rank=0]
Info: Timestep 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.5168e+04 | 800 | 1 | 5.274e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 633.7357341573698 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4324801769371125, dt = 0.004954795921278452 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.3%)
patch tree reduce : 1733.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 441.54 us (95.4%)
LB move op cnt : 0
LB apply : 4.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.847522571787555e-18,-6.713267460745856e-18,-1.1933199879465023e-17)
sum a = (1.7890962630884639e-16,3.0579667219675905e-17,3.537271850802636e-17)
sum e = 4.144509580018201
sum de = -1.463672932855431e-18
Info: CFL hydro = 0.007019096540752489 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007019096540752489 cfl multiplier : 0.6301369863013698 [sph::Model][rank=0]
Info: Timestep 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.0660e+04 | 800 | 1 | 3.872e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 460.64330168574105 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4374349728583908, dt = 0.007019096540752489 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.3%)
patch tree reduce : 1773.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.3%)
LB compute : 378.45 us (95.2%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.154976335588801e-18,-6.021270680990259e-18,-1.1895754166274785e-17)
sum a = (-1.0488694047438404e-16,-6.168657008107036e-17,1.5680467289838514e-16)
sum e = 4.144509778739142
sum de = -4.4181238528784306e-18
Info: CFL hydro = 0.008395806580634501 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008395806580634501 cfl multiplier : 0.7534246575342465 [sph::Model][rank=0]
Info: Timestep 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.0494e+04 | 800 | 1 | 3.904e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 647.3317975765369 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4444540693991432, dt = 0.008395806580634501 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.1%)
patch tree reduce : 1773.00 ns (0.3%)
gen split merge : 832.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 536.79 us (96.2%)
LB move op cnt : 0
LB apply : 4.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (80.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.994309767493288e-18,-6.9319504257768456e-18,-1.0036948963511374e-17)
sum a = (2.170143840512325e-16,-7.402867714857278e-17,-1.7135158355852877e-17)
sum e = 4.144509974030815
sum de = 1.1655173354219173e-18
Info: CFL hydro = 0.009315769518658711 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009315769518658711 cfl multiplier : 0.8356164383561643 [sph::Model][rank=0]
Info: Timestep 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.0305e+04 | 800 | 1 | 3.940e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 767.127899785295 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4528498759797777, dt = 0.009315769518658711 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.3%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 396.22 us (91.6%)
LB move op cnt : 0
LB apply : 3.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7829654042984827e-18,-7.38429464111492e-18,-1.1097411561058913e-17)
sum a = (-1.642908198793775e-16,3.3958768377962974e-17,2.3893360672427018e-17)
sum e = 4.144510156598689
sum de = 4.228388472693467e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010818703864099975
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.52943346749118e-18,-7.38429464111492e-18,-1.0989567907071027e-17)
sum a = (-2.0046937013525778e-17,1.2643470167257455e-16,-3.1753964785321765e-17)
sum e = 4.144509419247662
sum de = 8.944667923005412e-19
Info: CFL hydro = 0.004968217797027244 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004968217797027244 cfl multiplier : 0.44520547945205474 [sph::Model][rank=0]
Info: Timestep 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.5512e+04 | 800 | 1 | 5.157e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 650.279082047361 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4621656454984364, dt = 0.004968217797027244 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (1.4%)
patch tree reduce : 1653.00 ns (0.4%)
gen split merge : 991.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 420.48 us (95.4%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.014180453993506e-18,-6.11114039264683e-18,-1.1125870303083493e-17)
sum a = (-8.164064172588434e-17,5.5329785809895566e-17,2.8578568306789587e-17)
sum e = 4.144509625717657
sum de = 0
Info: CFL hydro = 0.007035791408251694 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007035791408251694 cfl multiplier : 0.6301369863013698 [sph::Model][rank=0]
Info: Timestep 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.0250e+04 | 800 | 1 | 3.951e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 452.7356406183146 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4671338632954636, dt = 0.007035791408251694 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.2%)
patch tree reduce : 1733.00 ns (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 460.31 us (95.8%)
LB move op cnt : 0
LB apply : 4.07 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.6552510638103795e-18,-6.042240280376792e-18,-1.0968598307684494e-17)
sum a = (-6.746818819764309e-17,-2.801538478040841e-17,-6.504170598291568e-17)
sum e = 4.144509865137315
sum de = -1.9651164376299768e-18
Info: CFL hydro = 0.00842040855483271 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00842040855483271 cfl multiplier : 0.7534246575342465 [sph::Model][rank=0]
Info: Timestep 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.0296e+04 | 800 | 1 | 3.942e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 642.6077662539354 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4741696547037153, dt = 0.00842040855483271 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.2%)
patch tree reduce : 1803.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 405.59 us (95.5%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.2513868177989675e-18,-6.63837603436538e-18,-1.1901745480385224e-17)
sum a = (-1.4832097211800482e-16,1.4242252337627855e-16,4.014180453993506e-17)
sum e = 4.144510098063368
sum de = 9.215718466126788e-19
Info: CFL hydro = 0.009352100227689442 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009352100227689442 cfl multiplier : 0.8356164383561643 [sph::Model][rank=0]
Info: Timestep 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.0164e+04 | 800 | 1 | 3.968e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 764.0356393888886 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.482590063258548, dt = 0.009352100227689442 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.3%)
patch tree reduce : 1703.00 ns (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 422.11 us (94.1%)
LB move op cnt : 0
LB apply : 6.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.76 us (75.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.7641936306845795e-18,-4.190924220251429e-18,-1.107045064756194e-17)
sum a = (1.1632735476826554e-16,-3.819163179698747e-17,3.2756760984556335e-17)
sum e = 4.1445103064079865
sum de = -1.0842021724855044e-19
Info: CFL hydro = 0.009983965779761338 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009983965779761338 cfl multiplier : 0.8904109589041095 [sph::Model][rank=0]
Info: Timestep 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.0204e+04 | 800 | 1 | 3.960e-02 | 0.1% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 850.2639322487787 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.4919421634862375, dt = 0.008057836513762462 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (1.6%)
patch tree reduce : 1773.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 404.50 us (95.1%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.679216320252132e-18,-5.293326016572034e-18,-1.0988070078543418e-17)
sum a = (1.2160570249956147e-16,8.753309915350018e-18,-9.196667159522436e-19)
sum e = 4.144510119048187
sum de = 1.2874900798265365e-18
Info: CFL hydro = 0.010401126809974579 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010401126809974579 cfl multiplier : 0.9269406392694064 [sph::Model][rank=0]
Info: Timestep 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.0494e+04 | 800 | 1 | 3.904e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 743.1031865733561 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 212 [SPH][rank=0]
Info: time since start : 853.976392257 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15075525843921525 max=0.15154498086222495 delta=0.0007897224230097033
Number of particle pairs: 319600
Distance min=0.164040 max=2.210351 mean=0.935020
---------------- t = 1.5, dt = 0.010401126809974579 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.37 us (1.5%)
patch tree reduce : 1653.00 ns (0.2%)
gen split merge : 551.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.1%)
LB compute : 647.46 us (96.4%)
LB move op cnt : 0
LB apply : 4.25 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (73.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.5438622963241176e-18,-5.005742939271006e-18,-1.1101905046641742e-17)
sum a = (-3.309002783194945e-17,5.559040797369962e-17,5.248391160743748e-18)
sum e = 4.144510603572676
sum de = -3.2255014631443757e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.012387521420404812
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.1220241079813915e-18,-5.1884780196393676e-18,-1.1115385503390227e-17)
sum a = (7.45678954185122e-17,-1.734485434971821e-17,3.62774069387025e-17)
sum e = 4.144509447624536
sum de = 1.9989977555201488e-18
Info: CFL hydro = 0.005337249641087795 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005337249641087795 cfl multiplier : 0.4756468797564688 [sph::Model][rank=0]
Info: Timestep 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.4422e+04 | 800 | 1 | 5.547e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 675.0265436771112 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5104011268099746, dt = 0.005337249641087795 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.3%)
patch tree reduce : 1734.00 ns (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 402.63 us (95.5%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2023573920291475e-18,-5.1705040773080536e-18,-1.0850269854003342e-17)
sum a = (-5.305907776203954e-17,1.392980530676851e-17,-4.655251063810379e-17)
sum e = 4.1445097481730455
sum de = 5.353248226647178e-19
Info: CFL hydro = 0.007298874066521971 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007298874066521971 cfl multiplier : 0.6504312531709792 [sph::Model][rank=0]
Info: Timestep 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.0842e+04 | 800 | 1 | 3.838e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 500.5872558110202 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5157383764510624, dt = 0.007298874066521971 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.2%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 394.44 us (95.5%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.1220241079813915e-18,-5.2603737889646245e-18,-1.135204241075253e-17)
sum a = (1.5523494860145035e-16,8.746120338417493e-17,-1.6375459726649329e-16)
sum e = 4.144510025218432
sum de = 2.7138935630027783e-18
Info: CFL hydro = 0.008608854060749651 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008608854060749651 cfl multiplier : 0.7669541687806527 [sph::Model][rank=0]
Info: Timestep 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.0583e+04 | 800 | 1 | 3.887e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 676.0557884417356 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5230372505175844, dt = 0.008608854060749651 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.97 us (1.2%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 405.88 us (95.6%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8632986883462395e-18,-4.2568286754662475e-18,-1.3300717325172512e-17)
sum a = (-1.8108147767388018e-16,1.8758804479781593e-16,7.655701170317764e-17)
sum e = 4.144510260604023
sum de = -3.5575383784680614e-20
Info: CFL hydro = 0.009486640110808962 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009486640110808962 cfl multiplier : 0.8446361125204351 [sph::Model][rank=0]
Info: Timestep 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.0626e+04 | 800 | 1 | 3.879e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 799.0418528146355 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.531646104578334, dt = 0.009486640110808962 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.2%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 408.28 us (95.6%)
LB move op cnt : 0
LB apply : 4.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.293326016572034e-18,-1.908233544174525e-18,-1.144640560799193e-17)
sum a = (1.4508566249836826e-16,6.75940057939623e-17,-1.3372613094497769e-17)
sum e = 4.14451043400091
sum de = -3.313592889658823e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011064248216236767
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.822458402459488e-18,-2.618204266261436e-18,-1.182236056842192e-17)
sum a = (7.880974580870235e-17,-1.1022819700383958e-16,7.076940227249446e-17)
sum e = 4.1445094442504455
sum de = 2.3445871979999033e-18
Info: CFL hydro = 0.005029259347944752 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005029259347944752 cfl multiplier : 0.4482120375068117 [sph::Model][rank=0]
Info: Timestep 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.5603e+04 | 800 | 1 | 5.127e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 666.0995364598216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.541132744689143, dt = 0.005029259347944752 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.79 us (1.1%)
patch tree reduce : 1733.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 403.80 us (95.6%)
LB move op cnt : 0
LB apply : 3.48 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.229318305526119e-18,-4.18792856319621e-18,-1.1203757386519188e-17)
sum a = (2.219542225352887e-16,-4.9799802885961225e-17,-1.0523144103573423e-16)
sum e = 4.144509720324694
sum de = 4.851804721872632e-18
Info: CFL hydro = 0.007084273168870096 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007084273168870096 cfl multiplier : 0.6321413583378744 [sph::Model][rank=0]
Info: Timestep 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.0601e+04 | 800 | 1 | 3.883e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 466.2294667455789 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5461620040370878, dt = 0.007084273168870096 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.2%)
patch tree reduce : 1392.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1173.00 ns (0.3%)
LB compute : 418.02 us (95.7%)
LB move op cnt : 0
LB apply : 3.69 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4139501300633843e-18,-4.3077548454049716e-18,-1.2361578838361345e-17)
sum a = (-7.934896407864178e-17,5.631835263811784e-17,5.1285648785349866e-17)
sum e = 4.144509983023821
sum de = -2.439454888092385e-19
Info: CFL hydro = 0.008445528222414867 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008445528222414867 cfl multiplier : 0.7547609055585829 [sph::Model][rank=0]
Info: Timestep 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.0697e+04 | 800 | 1 | 3.865e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 659.7901526818941 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5532462772059579, dt = 0.008445528222414867 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.84 us (1.1%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 414.67 us (95.8%)
LB move op cnt : 0
LB apply : 3.67 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.0825311098203864e-18,-3.0106353404951295e-18,-1.1432925151243444e-17)
sum a = (-5.3682174429525094e-18,-1.3025116876092361e-17,1.0468024013757393e-16)
sum e = 4.144510190474934
sum de = 3.618524750670371e-18
Info: CFL hydro = 0.009346283174344008 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009346283174344008 cfl multiplier : 0.8365072703723886 [sph::Model][rank=0]
Info: Timestep 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.0347e+04 | 800 | 1 | 3.932e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 773.2973389444503 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5616918054283728, dt = 0.009346283174344008 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.84 us (1.1%)
patch tree reduce : 1884.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 416.87 us (95.7%)
LB move op cnt : 0
LB apply : 4.07 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.8428785454028634e-18,-3.343153273624442e-18,-1.011483604694707e-17)
sum a = (1.7783418542602276e-16,7.383695509703875e-17,-6.125519546511881e-17)
sum e = 4.144510323619912
sum de = 2.981555974335137e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010673723397545588
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.947177085892372e-18,-2.8219089460163302e-18,-1.1036749505690727e-17)
sum a = (-9.048082569583571e-17,-4.898498416694165e-17,2.9477265423355295e-17)
sum e = 4.144509440398478
sum de = -8.131516293641283e-20
Info: CFL hydro = 0.004972483623026339 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004972483623026339 cfl multiplier : 0.4455024234574629 [sph::Model][rank=0]
Info: Timestep 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.5666e+04 | 800 | 1 | 5.107e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 658.8817355423284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5710380886027169, dt = 0.004972483623026339 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.71 us (1.1%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 398.67 us (95.8%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1813877926426143e-18,-3.798493146017736e-18,-1.0382198439125368e-17)
sum a = (1.5096913295481844e-16,9.650808769093641e-17,3.73618347926918e-17)
sum e = 4.1445096890906274
sum de = 4.0657581468206416e-20
Info: CFL hydro = 0.00703182066153988 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00703182066153988 cfl multiplier : 0.630334948971642 [sph::Model][rank=0]
Info: Timestep 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.0524e+04 | 800 | 1 | 3.898e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 459.23931808790644 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5760105722257431, dt = 0.00703182066153988 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.4%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 401.94 us (95.4%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5187981269960505e-18,-3.4390142993914513e-18,-9.960559708603288e-18)
sum a = (-1.4066407268486498e-16,8.965402434859526e-17,5.3969757506826123e-17)
sum e = 4.14450991426999
sum de = -2.710505431213761e-19
Info: CFL hydro = 0.008402172404439827 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008402172404439827 cfl multiplier : 0.7535566326477614 [sph::Model][rank=0]
Info: Timestep 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.0297e+04 | 800 | 1 | 3.942e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 642.2511631012682 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.583042392887283, dt = 0.008402172404439827 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.2%)
patch tree reduce : 1443.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 400.96 us (95.7%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.268811303687124e-18,-2.0610120539906957e-18,-9.627948161191e-18)
sum a = (1.8354989908738066e-16,-1.6087876649348302e-16,-1.5879378918305056e-16)
sum e = 4.144510082394736
sum de = -2.0057740190981832e-18
Info: CFL hydro = 0.009315592394822565 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009315592394822565 cfl multiplier : 0.8357044217651742 [sph::Model][rank=0]
Info: Timestep 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.0361e+04 | 800 | 1 | 3.929e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 769.8513317856308 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.5914445652917228, dt = 0.009315592394822565 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.4%)
patch tree reduce : 1462.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 377.62 us (95.0%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.885668282222813e-19,-5.010236424853835e-18,-1.1955292850247264e-17)
sum a = (9.95756405154807e-17,5.660593571541887e-17,-1.1143844245414807e-17)
sum e = 4.144510182212681
sum de = -1.7889335846010823e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01169939184620811
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4439067006155744e-18,-3.6427189791463455e-18,-1.128445289844415e-17)
sum a = (1.4467825313885847e-16,-3.6283398252812944e-17,-4.450348121233397e-17)
sum e = 4.144509438009023
sum de = 4.607859233063394e-19
Info: CFL hydro = 0.0049646117584609675 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0049646117584609675 cfl multiplier : 0.44523480725505804 [sph::Model][rank=0]
Info: Timestep 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.5338e+04 | 800 | 1 | 5.216e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 642.9650784331706 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6007601576865453, dt = 0.0049646117584609675 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.1%)
patch tree reduce : 1463.00 ns (0.3%)
gen split merge : 1243.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.3%)
LB compute : 436.10 us (95.7%)
LB move op cnt : 0
LB apply : 3.67 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.025613625771225e-19,-4.4320746131965616e-18,-1.1610417831765172e-17)
sum a = (-1.2893307965662724e-17,-1.365779964615462e-16,-5.756454597308897e-17)
sum e = 4.144509648268059
sum de = -4.174178364069192e-18
Info: CFL hydro = 0.007027935992708272 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007027935992708272 cfl multiplier : 0.6301565381700387 [sph::Model][rank=0]
Info: Timestep 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.0016e+04 | 800 | 1 | 3.997e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 447.1807515005454 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6057247694450063, dt = 0.007027935992708272 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.4%)
patch tree reduce : 1532.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 399.49 us (95.3%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.260923245407781e-19,-5.833293200775265e-18,-1.2100956674557289e-17)
sum a = (1.7926011818430701e-16,9.137952281240142e-17,-5.238805058167047e-17)
sum e = 4.144509834757372
sum de = -2.574980159653073e-18
Info: CFL hydro = 0.008407005517567916 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008407005517567916 cfl multiplier : 0.7534376921133591 [sph::Model][rank=0]
Info: Timestep 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.9321e+04 | 800 | 1 | 4.141e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 611.0282113525033 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6127527054377147, dt = 0.008407005517567916 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.4%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 409.40 us (95.3%)
LB move op cnt : 0
LB apply : 4.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (73.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4334219009223079e-18,-4.371412557828376e-18,-1.2401271294342997e-17)
sum a = (-5.73488586651132e-17,6.11114039264683e-17,7.630537651053924e-17)
sum e = 4.144509974501716
sum de = -5.421010862427522e-19
Info: CFL hydro = 0.00933201123914118 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00933201123914118 cfl multiplier : 0.8356251280755727 [sph::Model][rank=0]
Info: Timestep 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.0488e+04 | 800 | 1 | 3.905e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 775.1096532923596 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6211597109552827, dt = 0.00933201123914118 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.4%)
patch tree reduce : 1382.00 ns (0.3%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 398.81 us (95.0%)
LB move op cnt : 0
LB apply : 4.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.137551849700644e-19,-4.232863419024495e-18,-1.1197766072408751e-17)
sum a = (-7.151232522218879e-17,-1.206650661842227e-16,9.753859371793175e-17)
sum e = 4.144510063251091
sum de = 3.0357660829594124e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011780747754587234
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.519099208599776e-19,-4.802038259516112e-18,-1.113485727424915e-17)
sum a = (-3.271257504299186e-17,-3.273654029943361e-17,-4.84098180123396e-18)
sum e = 4.1445094402013165
sum de = -2.1955093992831465e-18
Info: CFL hydro = 0.004971255806458558 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004971255806458558 cfl multiplier : 0.44520837602519087 [sph::Model][rank=0]
Info: Timestep 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.5132e+04 | 800 | 1 | 5.287e-02 | 0.1% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 635.4400201195997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.630491722194424, dt = 0.004971255806458558 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.3%)
patch tree reduce : 1473.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 404.60 us (95.6%)
LB move op cnt : 0
LB apply : 3.58 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.24239984663331e-20,-4.31075050246019e-18,-1.1750464799096662e-17)
sum a = (4.476709903319325e-17,7.43641907387573e-17,-8.129014985042371e-17)
sum e = 4.144509615590895
sum de = -1.463672932855431e-18
Info: CFL hydro = 0.00703588422362297 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00703588422362297 cfl multiplier : 0.6301389173501272 [sph::Model][rank=0]
Info: Timestep 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.0373e+04 | 800 | 1 | 3.927e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 455.7672011966649 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6354629780008825, dt = 0.00703588422362297 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.3%)
patch tree reduce : 1903.00 ns (0.4%)
gen split merge : 1032.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1103.00 ns (0.2%)
LB compute : 407.43 us (89.9%)
LB move op cnt : 0
LB apply : 3.73 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.63 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.30311081902028e-19,-3.735958804990038e-18,-1.243796809326943e-17)
sum a = (-3.034001465525838e-17,-8.656250626760921e-17,4.783465185773754e-17)
sum e = 4.144509778796785
sum de = -2.710505431213761e-19
Info: CFL hydro = 0.008414092829386299 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008414092829386299 cfl multiplier : 0.7534259449000847 [sph::Model][rank=0]
Info: Timestep 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.0224e+04 | 800 | 1 | 3.956e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 640.3342001350507 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6424988622245054, dt = 0.008414092829386299 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.4%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 397.64 us (95.2%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (66.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.7295930337476976e-19,-4.650383121095648e-18,-1.1482353492654559e-17)
sum a = (-1.3190477145540453e-16,1.2008990002962066e-16,4.505468211049428e-17)
sum e = 4.144509912221337
sum de = -6.2341624917916505e-19
Info: CFL hydro = 0.00933771853114827 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00933771853114827 cfl multiplier : 0.8356172966000566 [sph::Model][rank=0]
Info: Timestep 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.0289e+04 | 800 | 1 | 3.943e-02 | 0.1% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 768.2145087422969 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6509129550538917, dt = 0.00933771853114827 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.4%)
patch tree reduce : 1402.00 ns (0.3%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 402.17 us (95.3%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (73.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7359832634994303e-18,-2.6017281524577314e-18,-1.1248692242347473e-17)
sum a = (5.488043725161271e-17,4.960808083442721e-18,5.571922122707404e-17)
sum e = 4.144510015085858
sum de = 2.846030702774449e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011116481389155169
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0739430542960238e-18,-3.3955772720907753e-18,-1.1350544582224922e-17)
sum a = (8.00918870283361e-17,5.440113212277766e-17,-2.5546963366907924e-17)
sum e = 4.144509447773932
sum de = 1.6263032587282567e-19
Info: CFL hydro = 0.004977518147290905 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004977518147290905 cfl multiplier : 0.44520576553335217 [sph::Model][rank=0]
Info: Timestep 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.5076e+04 | 800 | 1 | 5.307e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 633.4719799302865 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.66025067358504, dt = 0.004977518147290905 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.3%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 398.04 us (95.5%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.79265237270916e-19,-2.9185188860471443e-18,-1.1641123316581167e-17)
sum a = (-1.8728847909229403e-16,3.005243157795735e-17,5.936194020622038e-17)
sum e = 4.144509606929691
sum de = -4.0657581468206416e-19
Info: CFL hydro = 0.00704634747433459 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00704634747433459 cfl multiplier : 0.6301371770222347 [sph::Model][rank=0]
Info: Timestep 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.0255e+04 | 800 | 1 | 3.950e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 453.6876304640818 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6652281917323308, dt = 0.00704634747433459 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.4%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 391.34 us (95.2%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4923866699422367e-18,-2.8181643746973066e-18,-1.1320588011672731e-17)
sum a = (-6.175846585039562e-17,-2.2524944529602963e-16,1.1143844245414807e-17)
sum e = 4.144509772375256
sum de = -5.149960319306146e-19
Info: CFL hydro = 0.008428821249022379 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008428821249022379 cfl multiplier : 0.7534247846814898 [sph::Model][rank=0]
Info: Timestep 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.0267e+04 | 800 | 1 | 3.947e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 642.6398195724844 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6722745392066654, dt = 0.008428821249022379 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.3%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 421.93 us (95.5%)
LB move op cnt : 0
LB apply : 4.07 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2377558202486185e-18,-5.509762238811609e-18,-1.1284640127010101e-17)
sum a = (-1.440551564713729e-16,6.357982533996879e-17,7.040992342586818e-17)
sum e = 4.144509924578865
sum de = 2.439454888092385e-19
Info: CFL hydro = 0.00935459914925415 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00935459914925415 cfl multiplier : 0.8356165231209932 [sph::Model][rank=0]
Info: Timestep 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.0052e+04 | 800 | 1 | 3.990e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 760.5516102844668 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6807033604556878, dt = 0.00935459914925415 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.3%)
patch tree reduce : 1413.00 ns (0.3%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 424.07 us (95.3%)
LB move op cnt : 0
LB apply : 4.15 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (74.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.0119337112020915e-18,-3.764043089882717e-18,-1.0287086327622163e-17)
sum a = (2.5185087994637465e-16,1.1086327629954602e-16,-1.7518602458920914e-17)
sum e = 4.144510060076039
sum de = 1.870248747537495e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011706836815422962
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1246697664141e-18,-3.3581315589005374e-18,-1.09221656233286e-17)
sum a = (-8.70178461400025e-17,3.973439518042527e-17,1.4966302647874296e-16)
sum e = 4.144509458726917
sum de = 2.0057740190981832e-18
Info: CFL hydro = 0.004987940249030713 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004987940249030713 cfl multiplier : 0.4452055077069977 [sph::Model][rank=0]
Info: Timestep 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.5186e+04 | 800 | 1 | 5.268e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 639.2809096598015 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6900579596049419, dt = 0.004987940249030713 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.5%)
patch tree reduce : 1332.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 384.15 us (95.1%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.014929368257311e-18,-3.263768361661138e-18,-9.09181916258977e-18)
sum a = (-5.2459946350995726e-17,-1.4602030749959662e-16,1.0839485488604554e-16)
sum e = 4.144509627036077
sum de = 4.87890977618477e-19
Info: CFL hydro = 0.007062967842036992 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007062967842036992 cfl multiplier : 0.6301370051379984 [sph::Model][rank=0]
Info: Timestep 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.0167e+04 | 800 | 1 | 3.967e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 452.67052025341076 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6950458998539726, dt = 0.007062967842036992 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.3%)
patch tree reduce : 1322.00 ns (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 398.33 us (95.3%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.735759347169391e-18,-4.990764653994911e-18,-8.516653007987714e-18)
sum a = (9.528585961240705e-17,3.1732396054524185e-16,5.864298251296782e-17)
sum e = 4.144509817221455
sum de = 1.734723475976807e-18
Info: CFL hydro = 0.008452443731891737 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008452443731891737 cfl multiplier : 0.753424670091999 [sph::Model][rank=0]
Info: Timestep 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.0447e+04 | 800 | 1 | 3.913e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 649.8830040495616 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7021088676960097, dt = 0.008452443731891737 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.4%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 410.54 us (95.2%)
LB move op cnt : 0
LB apply : 4.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.59 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2154633916457308e-18,-9.151732303694149e-19,-8.265017815349315e-18)
sum a = (-1.7518602458920914e-17,7.208749137679084e-17,1.9867197590212635e-17)
sum e = 4.1445100019975465
sum de = 6.2341624917916505e-19
Info: CFL hydro = 0.009379287517458885 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009379287517458885 cfl multiplier : 0.8356164467279994 [sph::Model][rank=0]
Info: Timestep 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.0189e+04 | 800 | 1 | 3.963e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 767.8979967772814 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7105613114279015, dt = 0.009379287517458885 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.2%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 410.12 us (95.6%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.56 us (77.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.93779119908542e-18,-1.2282193926398041e-18,-8.226074273631469e-18)
sum a = (2.069879198874144e-16,8.958212857927001e-17,7.817466651299592e-17)
sum e = 4.144510170509369
sum de = 0
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.012114892223187105
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5571677537613482e-18,-9.001949450933198e-19,-7.893556340502155e-18)
sum a = (7.098508958047024e-17,-2.255130631168889e-17,-6.461033136696413e-17)
sum e = 4.144509469533089
sum de = 1.2197274440461925e-18
Info: CFL hydro = 0.005002063573136326 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005002063573136326 cfl multiplier : 0.4452054822426665 [sph::Model][rank=0]
Info: Timestep 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.5229e+04 | 800 | 1 | 5.253e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 642.7559776792463 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7199405989453604, dt = 0.005002063573136326 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.2%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 418.78 us (95.6%)
LB move op cnt : 0
LB apply : 3.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2308161340537283e-18,-1.773428976689668e-18,-8.960010252160131e-18)
sum a = (1.5313798866279702e-16,2.0514259514139946e-17,-1.815368175462735e-16)
sum e = 4.14450966594858
sum de = 3.2390539903004445e-18
Info: CFL hydro = 0.007083678413054726 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007083678413054726 cfl multiplier : 0.6301369881617777 [sph::Model][rank=0]
Info: Timestep 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.0334e+04 | 800 | 1 | 3.934e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 457.70752688140385 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7249426625184967, dt = 0.007083678413054726 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.2%)
patch tree reduce : 1422.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 402.29 us (95.3%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9052378871193058e-18,-1.5217937840512694e-18,-1.0613612946641039e-17)
sum a = (-1.2370865375232523e-16,-1.2315745285416495e-16,5.1441422952221256e-17)
sum e = 4.144509889337663
sum de = -3.916680348103885e-18
Info: CFL hydro = 0.008478034973993178 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008478034973993178 cfl multiplier : 0.7534246587745184 [sph::Model][rank=0]
Info: Timestep 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.0346e+04 | 800 | 1 | 3.932e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 648.5579694836807 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7320263409315515, dt = 0.008478034973993178 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (1.5%)
patch tree reduce : 1432.00 ns (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 400.11 us (95.1%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.16 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.8606530299135304e-18,-2.714065292028445e-18,-9.178693217191122e-18)
sum a = (1.6109445380145878e-16,1.5205955212291818e-17,1.1527288348482844e-17)
sum e = 4.144510102813961
sum de = 2.6359665318553827e-18
Info: CFL hydro = 0.00940370656033716 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00940370656033716 cfl multiplier : 0.8356164391830122 [sph::Model][rank=0]
Info: Timestep 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.0568e+04 | 800 | 1 | 3.890e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 784.6882328301807 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7405043759055447, dt = 0.00940370656033716 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.2%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 414.96 us (95.7%)
LB move op cnt : 0
LB apply : 4.07 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (74.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0305060269953479e-18,-2.603225980985341e-18,-9.232615044185064e-18)
sum a = (7.227921342832486e-17,-6.159070905530335e-17,1.135354023928014e-16)
sum e = 4.144510287281011
sum de = -1.0299920638612292e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010749381613984487
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.523291612578879e-18,-2.696091349697131e-18,-8.795249114123085e-18)
sum a = (3.834441030680364e-18,3.8452253960791525e-17,-5.998503687370594e-17)
sum e = 4.144509476829966
sum de = -1.043544591017298e-18
Info: CFL hydro = 0.0050118914278787004 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0050118914278787004 cfl multiplier : 0.4452054797276707 [sph::Model][rank=0]
Info: Timestep 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.5410e+04 | 800 | 1 | 5.191e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 652.1116925449261 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.749908082465882, dt = 0.0050118914278787004 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.4%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.3%)
LB compute : 400.37 us (95.3%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7824159478553256e-18,-1.992111941720658e-18,-9.987520622100261e-18)
sum a = (-8.066705318293816e-17,-4.123222370803479e-17,-1.1535676188237457e-16)
sum e = 4.144509704246197
sum de = 1.5212711732687234e-18
Info: CFL hydro = 0.007095160534013712 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007095160534013712 cfl multiplier : 0.6301369864851138 [sph::Model][rank=0]
Info: Timestep 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.0277e+04 | 800 | 1 | 3.945e-02 | 0.1% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 457.306714530489 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7549199738937606, dt = 0.007095160534013712 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.4%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 379.59 us (95.0%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.60622163804056e-18,-2.26471673374559e-18,-1.082630459756159e-17)
sum a = (9.490241550933901e-18,6.848072028230712e-17,-1.4864000959438565e-16)
sum e = 4.144509950691696
sum de = 1.3442412872925746e-18
Info: CFL hydro = 0.008487231532615803 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008487231532615803 cfl multiplier : 0.7534246576567426 [sph::Model][rank=0]
Info: Timestep 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.0068e+04 | 800 | 1 | 3.986e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 640.735468066069 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7620151344277744, dt = 0.008487231532615803 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (1.6%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 411.99 us (95.1%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (73.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.177842679144238e-18,-1.5817069251556502e-18,-1.2246246041735413e-17)
sum a = (1.1103103309463829e-16,6.522743672033925e-17,1.6579164406404223e-16)
sum e = 4.144510172822585
sum de = -1.5517643593698782e-18
Info: CFL hydro = 0.009409554885742341 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009409554885742341 cfl multiplier : 0.8356164384378285 [sph::Model][rank=0]
Info: Timestep 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.9983e+04 | 800 | 1 | 4.003e-02 | 0.1% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 763.184863743698 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7705023659603902, dt = 0.009409554885742341 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.5%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 383.91 us (94.9%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.94992436810816e-19,-1.045484312271443e-18,-9.166710588970245e-18)
sum a = (-5.610266533014208e-17,1.362305002431408e-16,4.8547618236879667e-17)
sum e = 4.1445103477151966
sum de = -3.638853541404474e-18
Info: CFL hydro = 0.010019421950433436 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010019421950433436 cfl multiplier : 0.8904109589585524 [sph::Model][rank=0]
Info: Timestep 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.0302e+04 | 800 | 1 | 3.940e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 859.6627029274002 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7799119208461325, dt = 0.010019421950433436 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.5%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 386.02 us (95.1%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1149338809846382e-18,7.9684477668826315e-19,-9.406363153387768e-18)
sum a = (-5.054272583565555e-17,-3.155250684835828e-17,3.335963696691917e-17)
sum e = 4.144510471370283
sum de = -5.963111948670274e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010159921056335664
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9411857717819342e-18,2.007090226996753e-19,-9.514206807375652e-18)
sum a = (7.982826920747683e-17,1.6909884945300406e-16,-1.2967600260632156e-16)
sum e = 4.144509483522728
sum de = -2.5478751053409354e-18
Info: CFL hydro = 0.005213527539759611 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005213527539759611 cfl multiplier : 0.46347031965285074 [sph::Model][rank=0]
Info: Timestep 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.4844e+04 | 800 | 1 | 5.389e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 669.2788892795618 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.789931342796566, dt = 0.005213527539759611 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.3%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 409.08 us (95.5%)
LB move op cnt : 0
LB apply : 3.61 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.028360907987012e-19,1.8932552588984296e-18,-1.0850269854003342e-17)
sum a = (1.2718361593637932e-16,3.7028567945298675e-17,-7.620951548477223e-18)
sum e = 4.144509748378647
sum de = -1.3552527156068805e-20
Info: CFL hydro = 0.007224191359141943 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007224191359141943 cfl multiplier : 0.6423135464352338 [sph::Model][rank=0]
Info: Timestep 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.0419e+04 | 800 | 1 | 3.918e-02 | 0.1% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 479.0384371946678 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.7951448703363255, dt = 0.007224191359141943 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.4%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 410.44 us (95.3%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (76.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.189576932525682e-20,1.5397677263825836e-18,-1.0781369741733304e-17)
sum a = (-5.813971212769102e-17,-1.246163378400566e-16,-7.785113555103226e-17)
sum e = 4.144509988831707
sum de = 3.577867169202165e-18
Info: CFL hydro = 0.008564603160016364 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008564603160016364 cfl multiplier : 0.7615423642901558 [sph::Model][rank=0]
Info: Timestep 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.0069e+04 | 800 | 1 | 3.986e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 652.4208323230505 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8023690616954675, dt = 0.008564603160016364 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.4%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 388.43 us (95.2%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.837188312896151e-19,-2.3066559325186563e-19,-1.1572223204311129e-17)
sum a = (8.361477972527369e-17,-1.3554749043455087e-16,2.988467478286509e-17)
sum e = 4.144510182643854
sum de = -9.0801931945661e-19
Info: CFL hydro = 0.009459738302551408 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009459738302551408 cfl multiplier : 0.8410282428601038 [sph::Model][rank=0]
Info: Timestep 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.0424e+04 | 800 | 1 | 3.917e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 787.1443214586293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.810933664855484, dt = 0.009459738302551408 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.4%)
patch tree reduce : 1322.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1253.00 ns (0.3%)
LB compute : 413.44 us (95.4%)
LB move op cnt : 0
LB apply : 3.56 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (76.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.2723564171855e-19,-1.5547460116586787e-18,-1.0568678090812754e-17)
sum a = (-7.21593871461161e-17,6.967898310439473e-17,-1.7949977074872454e-17)
sum e = 4.144510314118057
sum de = -8.131516293641283e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01037056819524797
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.965700484666844e-19,-5.751661546020546e-19,-1.0991065735598636e-17)
sum a = (-1.2883721863086023e-16,-4.753508615221564e-17,-3.1418451195137235e-17)
sum e = 4.144509481170517
sum de = -3.713392440762853e-18
Info: CFL hydro = 0.0050304404331119506 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0050304404331119506 cfl multiplier : 0.4470094142867012 [sph::Model][rank=0]
Info: Timestep 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.5617e+04 | 800 | 1 | 5.123e-02 | 0.1% | 1.8% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 664.7855779622925 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8203934031580353, dt = 0.0050304404331119506 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.4%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 411.21 us (95.4%)
LB move op cnt : 0
LB apply : 3.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (74.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.216236764418928e-18,-1.476858928222984e-18,-1.1302614069341417e-17)
sum a = (-5.255580737676274e-17,7.475961747004622e-17,1.284537745277922e-17)
sum e = 4.14450971525802
sum de = -1.463672932855431e-18
Info: CFL hydro = 0.007106830206981155 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007106830206981155 cfl multiplier : 0.6313396095244674 [sph::Model][rank=0]
Info: Timestep 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.0556e+04 | 800 | 1 | 3.892e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 465.33460647280657 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8254238435911472, dt = 0.007106830206981155 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.4%)
patch tree reduce : 1243.00 ns (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 384.79 us (95.2%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (73.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4379153865051364e-18,-4.972790711663597e-19,-1.1024017963206046e-17)
sum a = (4.320935736447935e-17,-2.050347514874116e-16,1.890619080689837e-16)
sum e = 4.144509932061893
sum de = 8.131516293641283e-20
Info: CFL hydro = 0.008472831484233594 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008472831484233594 cfl multiplier : 0.754226406349645 [sph::Model][rank=0]
Info: Timestep 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.0384e+04 | 800 | 1 | 3.925e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 651.8868802817357 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8325306737981284, dt = 0.008472831484233594 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.2%)
patch tree reduce : 1342.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 408.79 us (95.4%)
LB move op cnt : 0
LB apply : 4.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (74.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.897101454000532e-19,-2.9357439141146535e-18,-8.459735523938553e-18)
sum a = (-1.5673277712905986e-17,1.3463681068976428e-16,1.3305510376460862e-16)
sum e = 4.144510097039738
sum de = 2.981555974335137e-19
Info: CFL hydro = 0.009373137099217478 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009373137099217478 cfl multiplier : 0.8361509375664301 [sph::Model][rank=0]
Info: Timestep 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.0371e+04 | 800 | 1 | 3.927e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 776.6953095519609 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.841003505282362, dt = 0.009373137099217478 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.3%)
patch tree reduce : 1243.00 ns (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 412.28 us (95.7%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1623149374249853e-18,-6.05122725154245e-19,-7.641921147863757e-18)
sum a = (-1.5481555661371968e-17,-2.9597091705564057e-17,-2.6481608368136263e-17)
sum e = 4.144510199690219
sum de = 4.716279450311944e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011151325929322536
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.219232421474147e-18,-1.703031035892021e-18,-8.429778953386362e-18)
sum a = (-1.8692900024566773e-18,-1.6775679509226593e-17,-1.1179792130077436e-16)
sum e = 4.14450947974252
sum de = 3.2526065174565133e-19
Info: CFL hydro = 0.004984170864074963 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004984170864074963 cfl multiplier : 0.44538364585547674 [sph::Model][rank=0]
Info: Timestep 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.5347e+04 | 800 | 1 | 5.213e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 647.3179234368796 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8503766423815793, dt = 0.004984170864074963 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.2%)
patch tree reduce : 1313.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.2%)
LB compute : 395.44 us (95.6%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.63 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0724452257684142e-18,-1.442408872087965e-18,-9.373410925780358e-18)
sum a = (-1.7301716888123055e-16,-7.994809548968559e-17,9.466276294492148e-17)
sum e = 4.144509682167613
sum de = -2.846030702774449e-18
Info: CFL hydro = 0.007046832568739446 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007046832568739446 cfl multiplier : 0.6302557639036511 [sph::Model][rank=0]
Info: Timestep 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.0328e+04 | 800 | 1 | 3.935e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 455.93764224331153 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8553608132456543, dt = 0.007046832568739446 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.3%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 393.97 us (95.3%)
LB move op cnt : 0
LB apply : 4.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (74.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5493041539913983e-18,-2.401019129758056e-18,-8.205104674244935e-18)
sum a = (-8.33032313915309e-17,-1.7456292792172357e-16,-5.895453084671059e-18)
sum e = 4.14450986562246
sum de = 1.0028870095490916e-18
Info: CFL hydro = 0.008416505936317407 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008416505936317407 cfl multiplier : 0.753503842602434 [sph::Model][rank=0]
Info: Timestep 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.0590e+04 | 800 | 1 | 3.885e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 652.9387496836986 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8624076458143937, dt = 0.008416505936317407 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.70 us (1.2%)
patch tree reduce : 1413.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 386.49 us (95.4%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1005050521517004e-18,-3.69214732055746e-18,-8.522644322098152e-18)
sum a = (7.075741964427359e-17,-8.44056331878515e-17,-3.077138927120992e-17)
sum e = 4.144510005718798
sum de = -2.710505431213761e-19
Info: CFL hydro = 0.009326718355253031 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009326718355253031 cfl multiplier : 0.8356692284016226 [sph::Model][rank=0]
Info: Timestep 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.0636e+04 | 800 | 1 | 3.877e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 781.5693596142726 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8708241517507112, dt = 0.009326718355253031 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.2%)
patch tree reduce : 1903.00 ns (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 415.22 us (95.5%)
LB move op cnt : 0
LB apply : 3.61 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8573073742358012e-18,-4.90089494233834e-18,-8.943534138356427e-18)
sum a = (-7.807880548722892e-17,1.085146811682543e-16,-4.673225006141694e-17)
sum e = 4.144510096534385
sum de = -2.0599841277224584e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.012194987128413532
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.540317182825741e-18,-2.7335370628873687e-18,-9.30600864203793e-18)
sum a = (6.897200803936305e-17,-4.553398723932932e-19,1.4029261121001782e-16)
sum e = 4.144509481458648
sum de = 1.4094628242311558e-18
Info: CFL hydro = 0.004968137529480891 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004968137529480891 cfl multiplier : 0.44522307613387424 [sph::Model][rank=0]
Info: Timestep 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.5526e+04 | 800 | 1 | 5.153e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 651.6256545265687 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8801508701059642, dt = 0.004968137529480891 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.89 us (1.1%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 419.00 us (95.8%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6056721815974024e-18,-4.160967649699238e-18,-7.526588351237823e-18)
sum a = (-8.232065587741906e-17,8.363874498171544e-17,-4.1124380054046904e-17)
sum e = 4.144509654669822
sum de = -4.2825985813177425e-18
Info: CFL hydro = 0.007031181312571338 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007031181312571338 cfl multiplier : 0.6301487174225828 [sph::Model][rank=0]
Info: Timestep 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.0823e+04 | 800 | 1 | 3.842e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 465.5420276424899 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8851190076354452, dt = 0.007031181312571338 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.2%)
patch tree reduce : 1342.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 413.37 us (95.6%)
LB move op cnt : 0
LB apply : 3.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.552299811046617e-18,-2.553797639574227e-18,-8.543613921484686e-18)
sum a = (1.2815420882227029e-16,-1.1623149374249852e-16,-1.539048768689331e-16)
sum e = 4.144509817042526
sum de = -2.168404344971009e-19
Info: CFL hydro = 0.008408157881831024 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008408157881831024 cfl multiplier : 0.7534324782817219 [sph::Model][rank=0]
Info: Timestep 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.0784e+04 | 800 | 1 | 3.849e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 657.6110792346103 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.8921501889480166, dt = 0.008408157881831024 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (1.0%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.2%)
LB compute : 392.20 us (96.0%)
LB move op cnt : 0
LB apply : 3.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.627492319030819e-19,-4.014180453993506e-18,-1.0099857761670974e-17)
sum a = (2.238295038518558e-16,-1.0122924320996161e-16,-1.1551253604924595e-17)
sum e = 4.144509949225329
sum de = 5.963111948670274e-19
Info: CFL hydro = 0.00933079045397679 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00933079045397679 cfl multiplier : 0.8356216521878146 [sph::Model][rank=0]
Info: Timestep 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.0769e+04 | 800 | 1 | 3.852e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 785.8158595018032 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9005583468298477, dt = 0.00933079045397679 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (1.0%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 389.01 us (96.0%)
LB move op cnt : 0
LB apply : 3.06 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5817069251556502e-18,-5.4404876694096686e-18,-9.555397091884915e-18)
sum a = (-3.45459171607859e-17,-9.58610257670091e-20,-2.5786615931325448e-17)
sum e = 4.144510048114202
sum de = 1.0570971181733668e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.012155288106485994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.8943541717847446e-19,-4.6983136339791526e-18,-9.448676809292736e-18)
sum a = (-8.87792924884713e-17,-9.154727960749369e-18,-8.718560293509477e-17)
sum e = 4.144509487001232
sum de = -3.821812658011403e-18
Info: CFL hydro = 0.004978048803640244 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004978048803640244 cfl multiplier : 0.4452072173959382 [sph::Model][rank=0]
Info: Timestep 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.6307e+04 | 800 | 1 | 4.906e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 684.7242663863896 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9098891372838245, dt = 0.004978048803640244 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.3%)
patch tree reduce : 1262.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 390.49 us (95.4%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (73.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.055570196323415e-19,-4.917371056142045e-18,-1.0312174955459623e-17)
sum a = (1.2731542484680896e-18,-2.962105696200581e-17,-8.876730986025042e-17)
sum e = 4.144509644950111
sum de = 4.0657581468206416e-19
Info: CFL hydro = 0.0070510794489227965 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0070510794489227965 cfl multiplier : 0.6301381449306255 [sph::Model][rank=0]
Info: Timestep 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.0913e+04 | 800 | 1 | 3.825e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 468.4874191731286 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9148671860874646, dt = 0.0070510794489227965 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (1.1%)
patch tree reduce : 1352.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 396.87 us (95.7%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (72.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4978285276095172e-19,-4.856147315076006e-18,-1.0811513540851446e-17)
sum a = (-8.752261435380692e-17,-3.733786953625004e-17,-2.2407514773038374e-16)
sum e = 4.1445098054012535
sum de = 2.7647155398380363e-18
Info: CFL hydro = 0.008431175853007337 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008431175853007337 cfl multiplier : 0.7534254299537503 [sph::Model][rank=0]
Info: Timestep 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.0390e+04 | 800 | 1 | 3.923e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 646.983652428801 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9219182655363873, dt = 0.008431175853007337 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.83 us (1.2%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 384.37 us (95.5%)
LB move op cnt : 0
LB apply : 3.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0664539116579761e-18,-5.499277439118342e-18,-1.3183137785755165e-17)
sum a = (-2.807042997879806e-17,1.8731244434873577e-16,-1.0079786859401006e-16)
sum e = 4.144509947613491
sum de = 4.851804721872632e-18
Info: CFL hydro = 0.009353367424023849 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009353367424023849 cfl multiplier : 0.8356169533025003 [sph::Model][rank=0]
Info: Timestep 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.0202e+04 | 800 | 1 | 3.960e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 766.4589384323812 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9303494413893947, dt = 0.009353367424023849 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.2%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 395.02 us (95.4%)
LB move op cnt : 0
LB apply : 3.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0125320846640336e-18,-3.099007223624091e-18,-1.3814472510142576e-17)
sum a = (-1.9389090724199677e-16,3.733786953625004e-17,4.562984826509633e-17)
sum e = 4.144510067474209
sum de = -1.463672932855431e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011105365545540404
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6356287521495926e-18,-3.4824513266921274e-18,-1.3039346247104651e-17)
sum a = (-1.6412306308428522e-16,-1.1536874451059545e-16,9.959960577192245e-17)
sum e = 4.144509495288928
sum de = -1.1926223897340549e-18
Info: CFL hydro = 0.004987094977134209 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004987094977134209 cfl multiplier : 0.4452056511008335 [sph::Model][rank=0]
Info: Timestep 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.5579e+04 | 800 | 1 | 5.135e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 655.7289468530598 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9397028088134185, dt = 0.004987094977134209 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (1.2%)
patch tree reduce : 1392.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 382.65 us (95.7%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5642824392674932e-18,-4.6732250061416936e-18,-1.2261224327011507e-17)
sum a = (3.269759675771576e-17,-9.37520832001349e-17,-1.1062362373512849e-16)
sum e = 4.144509655717964
sum de = 5.231275482242559e-18
Info: CFL hydro = 0.007056884937725299 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007056884937725299 cfl multiplier : 0.6301371007338891 [sph::Model][rank=0]
Info: Timestep 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.0500e+04 | 800 | 1 | 3.902e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 460.0656448907592 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9446899037905527, dt = 0.007056884937725299 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.81 us (1.1%)
patch tree reduce : 1332.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 405.25 us (95.7%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.7854116049105443e-18,-5.452095840498642e-18,-1.3633235258301825e-17)
sum a = (1.4550505448609893e-16,-2.0897703617207983e-17,1.7202261073889781e-16)
sum e = 4.144509829723797
sum de = -5.149960319306146e-18
Info: CFL hydro = 0.008433538396168498 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008433538396168498 cfl multiplier : 0.7534247338225928 [sph::Model][rank=0]
Info: Timestep 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.0758e+04 | 800 | 1 | 3.854e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 659.1758039368909 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.951746788728278, dt = 0.008433538396168498 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.45 us (1.0%)
patch tree reduce : 1503.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 427.94 us (96.0%)
LB move op cnt : 0
LB apply : 3.56 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.096959938653324e-19,-5.02371688160232e-18,-1.098207876443298e-17)
sum a = (2.978282244298764e-17,1.1934697707992632e-17,-9.05886693498236e-18)
sum e = 4.144509991997481
sum de = 2.222614453595284e-18
Info: CFL hydro = 0.00935172826454455 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00935172826454455 cfl multiplier : 0.8356164892150618 [sph::Model][rank=0]
Info: Timestep 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.0763e+04 | 800 | 1 | 3.853e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 787.9638956819978 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9601803271244465, dt = 0.00935172826454455 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (1.0%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 418.21 us (95.8%)
LB move op cnt : 0
LB apply : 3.67 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.516351926383989e-19,-4.950323283749454e-18,-1.1861304110139766e-17)
sum a = (3.3551359018453184e-19,1.4144294351922192e-16,-9.883271756578638e-17)
sum e = 4.1445101342214725
sum de = -5.55653613398821e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011302644293311166
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.145439907979986e-19,-4.231365590496886e-18,-1.2168358958299718e-17)
sum a = (2.0622103168127833e-16,8.895903191178445e-17,6.058416828474975e-17)
sum e = 4.14450950380087
sum de = -1.3010426069826053e-18
Info: CFL hydro = 0.004984857446044732 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004984857446044732 cfl multiplier : 0.44520549640502055 [sph::Model][rank=0]
Info: Timestep 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.5088e+04 | 800 | 1 | 5.302e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 634.9542871638398 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.969532055388991, dt = 0.004984857446044732 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.4%)
patch tree reduce : 1653.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 389.52 us (95.1%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5277850981617075e-18,-4.253833018411029e-18,-1.1212744357684845e-17)
sum a = (8.901894505288882e-17,3.2065513119064546e-17,4.586950082951385e-17)
sum e = 4.144509680436603
sum de = -5.5429836068321414e-18
Info: CFL hydro = 0.007057461415551063 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007057461415551063 cfl multiplier : 0.630136997603347 [sph::Model][rank=0]
Info: Timestep 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.0159e+04 | 800 | 1 | 3.968e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 452.2087031764963 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9745169128350357, dt = 0.007057461415551063 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.3%)
patch tree reduce : 1392.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 380.25 us (95.4%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.755455034358354e-18,-4.409607185282418e-18,-1.1018026649095607e-17)
sum a = (-1.2545811747257315e-16,-1.0769986244923472e-16,-6.48260186749399e-17)
sum e = 4.144509875822333
sum de = 2.791820594150174e-18
Info: CFL hydro = 0.008443719308551886 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008443719308551886 cfl multiplier : 0.7534246650688979 [sph::Model][rank=0]
Info: Timestep 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.0132e+04 | 800 | 1 | 3.974e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 639.3712373722755 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9815743742505867, dt = 0.008443719308551886 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.4%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 405.74 us (95.2%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (73.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.991314110438069e-20,-5.290330359516814e-18,-1.1931702050937414e-17)
sum a = (5.1321596670012494e-17,4.074093595097887e-18,2.033212356518263e-16)
sum e = 4.144510058754573
sum de = -2.859583229930518e-18
Info: CFL hydro = 0.009375430641260509 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009375430641260509 cfl multiplier : 0.8356164433792653 [sph::Model][rank=0]
Info: Timestep 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.0273e+04 | 800 | 1 | 3.946e-02 | 0.1% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 770.3183401251795 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.9900180935591385, dt = 0.009375430641260509 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.3%)
patch tree reduce : 1402.00 ns (0.3%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 428.82 us (95.6%)
LB move op cnt : 0
LB apply : 3.78 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (74.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2282193926398041e-18,-4.706177233749103e-18,-8.879127511669218e-18)
sum a = (-4.141196313134793e-17,-1.7561739920516067e-16,2.6050233752184723e-17)
sum e = 4.144510216008424
sum de = 9.0801931945661e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011194612912862277
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.919967797555969e-19,-5.940387940499345e-18,-9.822759484063214e-18)
sum a = (-2.774817217108287e-16,3.9806290949750525e-17,1.1817267951428046e-16)
sum e = 4.14450951022116
sum de = 3.604972223514302e-18
Info: CFL hydro = 0.005004526184375019 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005004526184375019 cfl multiplier : 0.4452054811264217 [sph::Model][rank=0]
Info: Timestep 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.5316e+04 | 800 | 1 | 5.223e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 646.1585610332256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.999393524200399, dt = 0.0006064757996009362 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.2%)
patch tree reduce : 1382.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 385.16 us (95.2%)
LB move op cnt : 0
LB apply : 4.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.961357539885878e-19,-4.5054682110494275e-18,-9.151732303694149e-18)
sum a = (2.243148002948013e-17,1.2941238478546228e-18,8.172152446637525e-18)
sum e = 4.144509506785845
sum de = 7.724940478959219e-19
Info: CFL hydro = 0.0070842010394697045 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0070842010394697045 cfl multiplier : 0.6301369874176145 [sph::Model][rank=0]
Info: Timestep 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.0273e+04 | 800 | 1 | 3.946e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.327889454636164 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 279 [SPH][rank=0]
Info: time since start : 857.8477450490001 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15080125595322974 max=0.15149777691267832 delta=0.0006965209594485822
Number of particle pairs: 319600
Distance min=0.164422 max=2.265674 mean=0.934948
---------------- t = 2, dt = 0.0070842010394697045 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.27 us (1.6%)
patch tree reduce : 1322.00 ns (0.2%)
gen split merge : 561.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.1%)
LB compute : 607.85 us (96.4%)
LB move op cnt : 0
LB apply : 3.97 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.691748404916165e-20,-4.694194605528227e-18,-9.09181916258977e-18)
sum a = (2.3246298748499706e-17,-1.8065010305792865e-16,1.2869342709220971e-17)
sum e = 4.144509915820928
sum de = -3.8963515573697816e-18
Info: CFL hydro = 0.008471639075249228 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008471639075249228 cfl multiplier : 0.7534246582784098 [sph::Model][rank=0]
Info: Timestep 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.8528e+04 | 800 | 1 | 4.318e-02 | 0.1% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 590.6395683720388 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.00708420103947, dt = 0.008471639075249228 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.2%)
patch tree reduce : 1513.00 ns (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 444.43 us (95.8%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (77.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.290879815959972e-20,-6.7372327171876084e-18,-9.196667159522436e-18)
sum a = (-2.1815572938927095e-16,-7.27585185571599e-17,-1.9148239896960067e-17)
sum e = 4.144510109033016
sum de = 9.486769009248164e-19
Info: CFL hydro = 0.009394374851353773 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009394374851353773 cfl multiplier : 0.8356164388522732 [sph::Model][rank=0]
Info: Timestep 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.0044e+04 | 800 | 1 | 3.991e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 764.1154279285129 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.015555840114719, dt = 0.009394374851353773 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.4%)
patch tree reduce : 1553.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 404.95 us (90.6%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.8548611736237396e-18,-6.866045970562027e-18,-9.574119948480034e-18)
sum a = (1.1973042118299435e-16,-2.0082884898188406e-17,-5.175297128596404e-17)
sum e = 4.144510263693969
sum de = -1.514494909690689e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01059251509297479
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4648763000021078e-18,-7.144642076697397e-18,-9.70892451596489e-18)
sum a = (-1.9210549563708624e-16,8.610716639521592e-17,7.618555022833048e-17)
sum e = 4.144509513080631
sum de = 2.4415724704605207e-19
Info: CFL hydro = 0.005006681602280603 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005006681602280603 cfl multiplier : 0.44520547961742435 [sph::Model][rank=0]
Info: Timestep 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.5223e+04 | 800 | 1 | 5.255e-02 | 0.1% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 643.5454193036509 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.024950214966073, dt = 0.005006681602280603 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (1.5%)
patch tree reduce : 1774.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 402.98 us (95.0%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (75.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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.777523546631202e-18,-5.994309767493288e-18,-8.633483633141257e-18)
sum a = (5.670179674118588e-17,3.8320445050361884e-17,8.974988537436227e-18)
sum e = 4.144509724105268
sum de = -2.3513634615779377e-18
Info: CFL hydro = 0.007087631230983121 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007087631230983121 cfl multiplier : 0.6301369864116162 [sph::Model][rank=0]
Info: Timestep 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.9931e+04 | 800 | 1 | 4.014e-02 | 0.1% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 449.0571824982271 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0299568965683537, dt = 0.007087631230983121 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.2%)
patch tree reduce : 1913.00 ns (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 433.21 us (95.7%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (74.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.7020826638075687e-18,-5.8744834852845265e-18,-8.894105796945312e-18)
sum a = (-2.8003402152187534e-16,9.998304987499049e-17,2.0226676436838918e-17)
sum e = 4.144509941869509
sum de = -5.082197683525802e-20
Info: CFL hydro = 0.008477892326904402 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008477892326904402 cfl multiplier : 0.7534246576077441 [sph::Model][rank=0]
Info: Timestep 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.9845e+04 | 800 | 1 | 4.031e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 632.9438045000476 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.037044527799337, dt = 0.008477892326904402 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.3%)
patch tree reduce : 1734.00 ns (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 407.31 us (95.4%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.401719127003076e-18,-4.475511640497237e-18,-8.765292543570894e-18)
sum a = (-1.8189629639289975e-17,-3.954267312889125e-18,-1.3315695610448609e-16)
sum e = 4.144510129497438
sum de = -4.472333961502706e-19
Info: CFL hydro = 0.009409739358179788 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009409739358179788 cfl multiplier : 0.8356164384051628 [sph::Model][rank=0]
Info: Timestep 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.0575e+04 | 800 | 1 | 3.888e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 784.9475122786777 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0455224201262414, dt = 0.009409739358179788 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.3%)
patch tree reduce : 1453.00 ns (0.3%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 420.00 us (95.6%)
LB move op cnt : 0
LB apply : 3.70 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.383195728228605e-18,-4.9847733398844734e-18,-1.0598634661364943e-17)
sum a = (8.579561806147314e-18,-4.757103403687826e-18,-3.9437825131958584e-17)
sum e = 4.1445102703786265
sum de = -6.911788849595091e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.0103772874150939
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.116582250314111e-18,-5.194469333749805e-18,-1.0077390333756831e-17)
sum a = (3.8823715435638683e-17,-7.94448251044088e-17,6.738730545715218e-17)
sum e = 4.144509513898898
sum de = 2.8866882842426556e-18
Info: CFL hydro = 0.005019673452376419 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005019673452376419 cfl multiplier : 0.44520547946838757 [sph::Model][rank=0]
Info: Timestep 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.5443e+04 | 800 | 1 | 5.180e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 653.9270839415999 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.054932159484421, dt = 0.005019673452376419 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.4%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 397.62 us (95.2%)
LB move op cnt : 0
LB apply : 3.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.7541077466326075e-18,-5.763644174241422e-18,-9.4273327527743e-18)
sum a = (-7.74796740761851e-17,1.2416399362471854e-16,7.122361877349205e-18)
sum e = 4.1445097274228235
sum de = 1.111307226797642e-18
Info: CFL hydro = 0.007109297655329975 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007109297655329975 cfl multiplier : 0.6301369863122583 [sph::Model][rank=0]
Info: Timestep 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.0423e+04 | 800 | 1 | 3.917e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 461.32764725222245 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0599518329367976, dt = 0.007109297655329975 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.3%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 397.58 us (95.6%)
LB move op cnt : 0
LB apply : 3.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.70672669019226e-18,-4.4695203263867994e-18,-9.490241550933901e-18)
sum a = (-6.254931931297343e-17,-6.569475922095342e-17,-9.705928858909671e-19)
sum e = 4.1445099374788
sum de = -7.182839392716467e-19
Info: CFL hydro = 0.00850265542283322 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00850265542283322 cfl multiplier : 0.7534246575415056 [sph::Model][rank=0]
Info: Timestep 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.0874e+04 | 800 | 1 | 3.833e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 667.7852895032654 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0670611305921276, dt = 0.00850265542283322 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (1.3%)
patch tree reduce : 1413.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 374.98 us (95.4%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.952370568720221e-18,-5.775626802462298e-18,-9.448302352160834e-18)
sum a = (-1.3108995273638494e-17,-1.2649461481367894e-16,-2.1421943601871314e-16)
sum e = 4.144510109551274
sum de = -1.666960840196463e-18
Info: CFL hydro = 0.009432517033439699 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009432517033439699 cfl multiplier : 0.8356164383610037 [sph::Model][rank=0]
Info: Timestep 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.1461e+04 | 800 | 1 | 3.728e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 821.157295337739 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.075563786014961, dt = 0.009432517033439699 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.2%)
patch tree reduce : 1463.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 409.76 us (95.7%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.0257641665730875e-18,-7.393281612280577e-18,-1.2599733574251258e-17)
sum a = (1.6449752021618762e-16,-5.096773468036475e-17,4.1783424606195093e-17)
sum e = 4.144510229496351
sum de = 5.421010862427522e-20
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010711183391294236
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.21244327608112e-18,-6.901993855224655e-18,-1.1086926761365646e-17)
sum a = (1.159439106651975e-16,-3.147087519360357e-17,-3.824854928103663e-17)
sum e = 4.144509513722822
sum de = -7.860465750519907e-19
Info: CFL hydro = 0.005016671788968023 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005016671788968023 cfl multiplier : 0.44520547945366795 [sph::Model][rank=0]
Info: Timestep 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.6040e+04 | 800 | 1 | 4.988e-02 | 0.1% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 680.8277183653755 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0849963030484004, dt = 0.005016671788968023 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.3%)
patch tree reduce : 1863.00 ns (0.4%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.2%)
LB compute : 419.20 us (95.3%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.947327626694235e-18,-7.03979407976473e-18,-1.1808880111673432e-17)
sum a = (-1.6464131175483813e-17,8.384844097558078e-17,9.080435665779937e-17)
sum e = 4.1445097147671515
sum de = 2.1955093992831465e-18
Info: CFL hydro = 0.007094044725488607 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007094044725488607 cfl multiplier : 0.6301369863024453 [sph::Model][rank=0]
Info: Timestep 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.1311e+04 | 800 | 1 | 3.754e-02 | 0.1% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 481.1041077667009 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.0900129748373684, dt = 0.007094044725488607 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.3%)
patch tree reduce : 1453.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 419.50 us (95.6%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.281343388351157e-18,-6.212992732524277e-18,-1.0844278539892905e-17)
sum a = (7.872586741115622e-17,-9.703532333265496e-17,-2.439543279488173e-16)
sum e = 4.144509904807741
sum de = 5.149960319306146e-19
Info: CFL hydro = 0.008472725671178849 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008472725671178849 cfl multiplier : 0.7534246575349636 [sph::Model][rank=0]
Info: Timestep 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.1355e+04 | 800 | 1 | 3.746e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 681.7154992282883 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.097107019562857, dt = 0.008472725671178849 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.2%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.2%)
LB compute : 425.34 us (95.8%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (73.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.430576784668952e-18,-7.471168695716272e-18,-1.3869892165664129e-17)
sum a = (2.624195580371874e-16,5.2136415389032074e-17,9.178693217191121e-17)
sum e = 4.144510055428292
sum de = -6.2341624917916505e-19
Info: CFL hydro = 0.009387465724517348 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009387465724517348 cfl multiplier : 0.8356164383566425 [sph::Model][rank=0]
Info: Timestep 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.1624e+04 | 800 | 1 | 3.700e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 824.4481550701821 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.105579745234036, dt = 0.009387465724517348 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.3%)
patch tree reduce : 1804.00 ns (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 427.48 us (95.7%)
LB move op cnt : 0
LB apply : 3.63 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0005494564431575e-18,-6.314845072401724e-18,-1.188077588099869e-17)
sum a = (-2.226372323438786e-17,1.3837539069467763e-16,-1.7997907587755957e-17)
sum e = 4.1445101573620615
sum de = 3.713392440762853e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011987004743125194
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1943187929479427e-18,-5.967348853996316e-18,-1.234809838161286e-17)
sum a = (-6.770184944795018e-17,-1.811773386996472e-17,-9.116383550442565e-17)
sum e = 4.14450951464643
sum de = 2.981555974335137e-19
Info: CFL hydro = 0.004998659097798404 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004998659097798404 cfl multiplier : 0.44520547945221417 [sph::Model][rank=0]
Info: Timestep 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.5151e+04 | 800 | 1 | 5.280e-02 | 0.1% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 640.0372802151861 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1149672109585533, dt = 0.004998659097798404 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.4%)
patch tree reduce : 1553.00 ns (0.3%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 424.58 us (95.5%)
LB move op cnt : 0
LB apply : 3.70 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.769484947549997e-18,-7.13565510553174e-18,-1.3228821555847255e-17)
sum a = (9.157124486393543e-17,-8.4357702674968e-18,-5.825953840989978e-17)
sum e = 4.144509695544706
sum de = -3.686287386450715e-18
Info: CFL hydro = 0.007073001669537843 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007073001669537843 cfl multiplier : 0.6301369863014762 [sph::Model][rank=0]
Info: Timestep 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.1087e+04 | 800 | 1 | 3.794e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 474.33802545411936 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.119965870056352, dt = 0.007073001669537843 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (0.7%)
patch tree reduce : 1683.00 ns (0.2%)
gen split merge : 1112.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.1%)
LB compute : 746.60 us (97.3%)
LB move op cnt : 0
LB apply : 4.15 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.6775679509226592e-18,-6.8540633423411504e-18,-1.3282743382841198e-17)
sum a = (6.63358298307703e-17,4.299367005650358e-17,-1.1834043630937274e-16)
sum e = 4.144509866820894
sum de = 6.776263578034403e-19
Info: CFL hydro = 0.008453911285455782 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008453911285455782 cfl multiplier : 0.7534246575343175 [sph::Model][rank=0]
Info: Timestep 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.9714e+04 | 800 | 1 | 4.058e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 627.4827876568622 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.12703887172589, dt = 0.008453911285455782 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.4%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1193.00 ns (0.3%)
LB compute : 404.93 us (95.5%)
LB move op cnt : 0
LB apply : 3.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4633784714744982e-18,-6.767189287739798e-18,-1.4537923688977972e-17)
sum a = (-7.019423611789241e-17,2.1089425668742e-18,2.789555849819965e-17)
sum e = 4.144510005118707
sum de = -6.776263578034403e-19
Info: CFL hydro = 0.009365958232706707 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009365958232706707 cfl multiplier : 0.8356164383562117 [sph::Model][rank=0]
Info: Timestep 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.0104e+04 | 800 | 1 | 3.979e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 764.815365396039 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1354927830113457, dt = 0.009365958232706707 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.4%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 382.87 us (95.2%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.615957523470022e-18,-6.686306547248884e-18,-1.3741078912289711e-17)
sum a = (8.167359395349175e-17,1.5366522430451559e-16,5.488043725161271e-17)
sum e = 4.14451010306535
sum de = -3.415236843329339e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.012132305265403586
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8745324023033107e-18,-5.787609430683174e-18,-1.3615261315970511e-17)
sum a = (-1.4681116096217444e-16,1.9002051832665379e-16,7.920517253999127e-17)
sum e = 4.144509517888195
sum de = 1.6263032587282567e-19
Info: CFL hydro = 0.004986204944695343 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004986204944695343 cfl multiplier : 0.44520547945207056 [sph::Model][rank=0]
Info: Timestep 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.5130e+04 | 800 | 1 | 5.287e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 637.6973020573013 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1448587412440525, dt = 0.004986204944695343 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.3%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 401.43 us (95.4%)
LB move op cnt : 0
LB apply : 3.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.526637268256608e-18,-4.811025230681769e-18,-1.3138951844190685e-17)
sum a = (-2.202886372125869e-16,-1.3159322312166173e-16,-6.254931931297343e-17)
sum e = 4.144509682243814
sum de = -1.81603863891322e-18
Info: CFL hydro = 0.0070539311895574585 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0070539311895574585 cfl multiplier : 0.6301369863013804 [sph::Model][rank=0]
Info: Timestep 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.0395e+04 | 800 | 1 | 3.923e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 457.61123174804743 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1498449461887477, dt = 0.0070539311895574585 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.4%)
patch tree reduce : 1814.00 ns (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 380.40 us (95.2%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.3592304717868524e-18,-6.6054238067579704e-18,-1.3968748848486356e-17)
sum a = (4.145989364423144e-18,-1.064057386013801e-17,-3.3263775941152156e-17)
sum e = 4.144509843195615
sum de = -3.63207727782644e-18
Info: CFL hydro = 0.008429790267052957 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008429790267052957 cfl multiplier : 0.7534246575342536 [sph::Model][rank=0]
Info: Timestep 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.0777e+04 | 800 | 1 | 3.850e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 659.5045710661088 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.156898877378305, dt = 0.008429790267052957 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.4%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 379.76 us (95.3%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.42168342778627e-18,-6.096162107370735e-18,-1.4322236381002204e-17)
sum a = (7.443608650808256e-17,3.069949350188466e-17,-3.273654029943361e-17)
sum e = 4.144509979323939
sum de = 3.7947076036992655e-19
Info: CFL hydro = 0.009346384857549296 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009346384857549296 cfl multiplier : 0.8356164383561691 [sph::Model][rank=0]
Info: Timestep 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.0550e+04 | 800 | 1 | 3.893e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 779.5493883177463 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1653286676453583, dt = 0.009346384857549296 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.3%)
patch tree reduce : 1683.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 407.07 us (95.5%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.373016229893657e-18,-5.700735376081822e-18,-1.442109306382443e-17)
sum a = (-6.108743867002654e-17,-2.971691798777282e-17,-4.457537698165923e-17)
sum e = 4.144510084990241
sum de = 3.415236843329339e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011545187421689885
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.044230638828672e-18,-5.98532279632763e-18,-1.4220384041124755e-17)
sum a = (-1.4935147814500017e-16,-6.921166060378057e-17,-1.8213594895731728e-17)
sum e = 4.1445095231640225
sum de = 2.2768245622195593e-18
Info: CFL hydro = 0.004980513612916906 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004980513612916906 cfl multiplier : 0.44520547945205635 [sph::Model][rank=0]
Info: Timestep 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.5148e+04 | 800 | 1 | 5.281e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 637.1042641010379 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1746750525029075, dt = 0.004980513612916906 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.88 us (1.1%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 419.39 us (95.6%)
LB move op cnt : 0
LB apply : 3.68 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.394242213619725e-18,-6.386740841726981e-18,-1.4127518672412967e-17)
sum a = (1.5479159135727794e-16,2.549903285402442e-17,-1.0074993808112656e-16)
sum e = 4.144509680930903
sum de = 1.6263032587282567e-19
Info: CFL hydro = 0.007048255828832926 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007048255828832926 cfl multiplier : 0.6301369863013709 [sph::Model][rank=0]
Info: Timestep 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.0641e+04 | 800 | 1 | 3.876e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 462.61021449635655 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1796555661158243, dt = 0.007048255828832926 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.4%)
patch tree reduce : 1894.00 ns (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 385.24 us (95.3%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.492936126385394e-18,-6.269910216573439e-18,-1.522992046873357e-17)
sum a = (-1.758091212566947e-16,4.447951595589222e-17,8.723353344797827e-18)
sum e = 4.144509843101819
sum de = -2.3310346708438345e-18
Info: CFL hydro = 0.008424880803838573 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008424880803838573 cfl multiplier : 0.7534246575342474 [sph::Model][rank=0]
Info: Timestep 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.9800e+04 | 800 | 1 | 4.040e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 627.9906790793381 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.1867038219446573, dt = 0.008424880803838573 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.3%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 392.56 us (95.2%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.0729457651927876e-18,-5.781618116572736e-18,-1.497978310462278e-17)
sum a = (6.758202316574141e-17,-8.10984277988897e-17,1.251944996517139e-16)
sum e = 4.144509986668132
sum de = 3.06287113727155e-18
Info: CFL hydro = 0.009344011332343147 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009344011332343147 cfl multiplier : 0.835616438356165 [sph::Model][rank=0]
Info: Timestep 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.0430e+04 | 800 | 1 | 3.916e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 774.531503801358 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.195128702748496, dt = 0.009344011332343147 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.3%)
patch tree reduce : 1743.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 403.58 us (95.5%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.541416095712056e-18,-7.31988801442771e-18,-1.3047771532572455e-17)
sum a = (-1.6588750508980925e-16,-5.5120089816030234e-17,1.79260118184307e-17)
sum e = 4.144510104465644
sum de = 1.8431436932253575e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010906408853719306
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.675272291112461e-18,-6.952920025163378e-18,-1.3567611645935933e-17)
sum a = (3.7984931460177354e-17,4.31853921080376e-17,-3.5995815175511914e-17)
sum e = 4.1445095291977605
sum de = 1.7076184216646695e-18
Info: CFL hydro = 0.004981557130642302 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004981557130642302 cfl multiplier : 0.445205479452055 [sph::Model][rank=0]
Info: Timestep 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.5032e+04 | 800 | 1 | 5.322e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 632.0806588170784 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.204472714080839, dt = 0.004981557130642302 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.3%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 397.66 us (95.5%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.110041479760515e-18,-6.23695798896603e-18,-1.4113476529966627e-17)
sum a = (7.957663401483842e-17,8.651457575472571e-17,1.624844386750804e-17)
sum e = 4.1445096907205
sum de = -1.5720931501039814e-18
Info: CFL hydro = 0.0070533724922984846 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0070533724922984846 cfl multiplier : 0.63013698630137 [sph::Model][rank=0]
Info: Timestep 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.0726e+04 | 800 | 1 | 3.860e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 464.61154665424755 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2094542712114813, dt = 0.0070533724922984846 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.4%)
patch tree reduce : 1904.00 ns (0.5%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 377.79 us (94.8%)
LB move op cnt : 0
LB apply : 4.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.79924206028154e-18,-5.45808715460908e-18,-1.3934298792351337e-17)
sum a = (-2.6936948240529556e-17,9.787410730811629e-17,-3.005243157795735e-17)
sum e = 4.144509861689621
sum de = 1.870248747537495e-18
Info: CFL hydro = 0.008439625395242891 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008439625395242891 cfl multiplier : 0.7534246575342468 [sph::Model][rank=0]
Info: Timestep 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.0455e+04 | 800 | 1 | 3.911e-02 | 0.1% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 649.256692463462 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2165076437037796, dt = 0.008439625395242891 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.3%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 418.30 us (95.6%)
LB move op cnt : 0
LB apply : 3.61 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.115283879607149e-18,-4.677718491724522e-18,-1.4339461409069713e-17)
sum a = (1.376803982578668e-16,8.752111652527931e-17,7.649709856207326e-17)
sum e = 4.144510016266534
sum de = 1.3552527156068805e-19
Info: CFL hydro = 0.009371641989959597 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009371641989959597 cfl multiplier : 0.8356164383561646 [sph::Model][rank=0]
Info: Timestep 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.0479e+04 | 800 | 1 | 3.907e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 777.7427758820129 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2249472690990224, dt = 0.009371641989959597 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.3%)
patch tree reduce : 1884.00 ns (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 375.26 us (91.0%)
LB move op cnt : 0
LB apply : 21.46 us (5.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (72.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0670033681011336e-18,-3.70787452009736e-18,-1.3123973558914589e-17)
sum a = (-2.4415803262857217e-16,-9.605274781854312e-17,-1.4618806429468888e-17)
sum e = 4.144510144523056
sum de = -8.402566836762659e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010822964792435755
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.2643178181042955e-18,-4.584104208748927e-18,-1.328948361121544e-17)
sum a = (-3.5588405816002127e-17,-9.394380525166892e-18,-6.528135854733319e-17)
sum e = 4.144509534516117
sum de = 1.0570971181733668e-18
Info: CFL hydro = 0.005002687586468585 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005002687586468585 cfl multiplier : 0.44520547945205485 [sph::Model][rank=0]
Info: Timestep 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.5298e+04 | 800 | 1 | 5.230e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 645.1375704105328 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.234318911088982, dt = 0.005002687586468585 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.4%)
patch tree reduce : 2.13 us (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 391.40 us (95.2%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.1094920233173574e-18,-4.386390843104471e-18,-1.4075094673946634e-17)
sum a = (-1.6703783739901334e-17,-1.0736434885905019e-16,4.721155519025198e-17)
sum e = 4.1445097063069545
sum de = 6.640738306473715e-19
Info: CFL hydro = 0.007081333584926187 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007081333584926187 cfl multiplier : 0.6301369863013698 [sph::Model][rank=0]
Info: Timestep 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.0359e+04 | 800 | 1 | 3.929e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 458.3292863719197 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2393215986754504, dt = 0.007081333584926187 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.5%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1153.00 ns (0.3%)
LB compute : 377.80 us (95.1%)
LB move op cnt : 0
LB apply : 3.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.166409507366519e-18,-5.347435072131927e-18,-1.3085030017196741e-17)
sum a = (6.662341290807132e-18,2.9132165730594063e-16,-4.9128775705592164e-17)
sum e = 4.144509887245277
sum de = 1.951563910473908e-18
Info: CFL hydro = 0.00846245313884073 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00846245313884073 cfl multiplier : 0.7534246575342465 [sph::Model][rank=0]
Info: Timestep 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.0481e+04 | 800 | 1 | 3.906e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 652.634248441601 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2464029322603767, dt = 0.00846245313884073 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.4%)
patch tree reduce : 1452.00 ns (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 412.21 us (95.5%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.197863906446319e-18,-1.1153205673712367e-18,-1.4200912270265832e-17)
sum a = (4.392831505773192e-17,-2.5403171828257412e-17,-7.249490073630063e-17)
sum e = 4.144510047378272
sum de = -7.318364664277155e-19
Info: CFL hydro = 0.00937912599048637 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00937912599048637 cfl multiplier : 0.8356164383561643 [sph::Model][rank=0]
Info: Timestep 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.0650e+04 | 800 | 1 | 3.874e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 786.3837106501473 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2548653853992175, dt = 0.00937912599048637 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.2%)
patch tree reduce : 1443.00 ns (0.3%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 399.92 us (95.6%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.4339713573654653e-18,-3.073544138654729e-18,-1.5053176702475646e-17)
sum a = (4.547407409822494e-17,-3.153827747734599e-17,1.3149736209589473e-16)
sum e = 4.144510174257458
sum de = -1.8905775382715984e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010757482095698538
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.525338897549646e-18,-2.9207656288385586e-18,-1.395826404879309e-17)
sum a = (3.038914343096397e-16,-1.9344754999782436e-16,8.768887332037157e-17)
sum e = 4.144509538160437
sum de = -8.470329472543003e-19
Info: CFL hydro = 0.004994672850584908 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004994672850584908 cfl multiplier : 0.44520547945205474 [sph::Model][rank=0]
Info: Timestep 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.5437e+04 | 800 | 1 | 5.182e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 651.5420564310024 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.264244511389704, dt = 0.004994672850584908 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.5%)
patch tree reduce : 1833.00 ns (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 384.19 us (95.1%)
LB move op cnt : 0
LB apply : 3.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (74.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4978285276095171e-21,-4.453793126846899e-18,-1.3738083255234491e-17)
sum a = (-2.702082663807569e-17,1.0314646372530179e-16,-3.8320445050361884e-17)
sum e = 4.144509716642204
sum de = -9.75781955236954e-19
Info: CFL hydro = 0.007067687910712283 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007067687910712283 cfl multiplier : 0.6301369863013698 [sph::Model][rank=0]
Info: Timestep 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.0610e+04 | 800 | 1 | 3.882e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 463.23578695306526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.269239184240289, dt = 0.007067687910712283 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.3%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 396.55 us (95.3%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.837188312896151e-19,-3.2929760179495233e-18,-1.4481006204928812e-17)
sum a = (5.4832506738729203e-17,2.7320392343597592e-17,-5.375407019885035e-17)
sum e = 4.144509899734061
sum de = 1.3078188705606397e-18
Info: CFL hydro = 0.008448766764947314 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008448766764947314 cfl multiplier : 0.7534246575342465 [sph::Model][rank=0]
Info: Timestep 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.0187e+04 | 800 | 1 | 3.963e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 642.0305338950008 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.276306872151001, dt = 0.008448766764947314 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.3%)
patch tree reduce : 1483.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 406.17 us (95.2%)
LB move op cnt : 0
LB apply : 4.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.238056901852344e-20,-3.452494756139937e-18,-1.4888415564438602e-17)
sum a = (-1.1125870303083493e-17,-5.502422879026322e-17,1.2442761144557782e-16)
sum e = 4.144510057559318
sum de = 5.539595475043124e-19
Info: CFL hydro = 0.009370031513657765 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009370031513657765 cfl multiplier : 0.8356164383561643 [sph::Model][rank=0]
Info: Timestep 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.0468e+04 | 800 | 1 | 3.909e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 778.1792566487261 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.2847556389159482, dt = 0.009370031513657765 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (1.6%)
patch tree reduce : 1773.00 ns (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 404.96 us (94.9%)
LB move op cnt : 0
LB apply : 3.58 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (75.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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.18248670552893e-19,-4.2208807908036194e-18,-1.2824407853392686e-17)
sum a = (8.21229425117746e-17,3.4917378635633066e-17,-1.101682838627352e-16)
sum e = 4.14451017764513
sum de = 2.0328790734103208e-20
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01058725092096098
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1982628220876137e-19,-3.984223883441316e-18,-1.3947779249099824e-17)
sum a = (-1.536232851057425e-16,1.8537125857695383e-16,-3.105897234851095e-17)
sum e = 4.144509540301541
sum de = -7.064254780100865e-19
Info: CFL hydro = 0.004993859588079027 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004993859588079027 cfl multiplier : 0.44520547945205474 [sph::Model][rank=0]
Info: Timestep 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.5208e+04 | 800 | 1 | 5.261e-02 | 0.1% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 641.2331010433358 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.294125670429606, dt = 0.004993859588079027 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.4%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.3%)
LB compute : 388.57 us (95.2%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9277053150334487e-18,-2.2287688490829614e-18,-1.3815970338670187e-17)
sum a = (8.014580885533005e-17,-1.1239705271181816e-17,-2.0214693808618043e-16)
sum e = 4.144509719651472
sum de = 1.2739375526704677e-18
Info: CFL hydro = 0.007069568550312728 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007069568550312728 cfl multiplier : 0.6301369863013698 [sph::Model][rank=0]
Info: Timestep 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.0534e+04 | 800 | 1 | 3.896e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 461.4410463147152 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.299119530017685, dt = 0.007069568550312728 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.3%)
patch tree reduce : 1413.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 404.30 us (95.4%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (75.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.335814671788258e-19,-2.5328280401876937e-18,-1.5739182168120806e-17)
sum a = (2.8623503162617875e-17,1.2040144836336342e-16,6.685108284426796e-17)
sum e = 4.144509898792427
sum de = 1.4365678785432934e-18
Info: CFL hydro = 0.008454735871795642 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008454735871795642 cfl multiplier : 0.7534246575342465 [sph::Model][rank=0]
Info: Timestep 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.0206e+04 | 800 | 1 | 3.959e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 642.8006700044017 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3061890985679976, dt = 0.008454735871795642 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.4%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 1122.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 411.64 us (95.2%)
LB move op cnt : 0
LB apply : 4.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.76 us (76.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.698838631912918e-19,-1.39597618773207e-18,-1.4226375355235194e-17)
sum a = (4.1399980503127055e-18,-2.414739239070959e-16,1.0376956039278735e-17)
sum e = 4.144510049490859
sum de = -2.019326546254252e-18
Info: CFL hydro = 0.009376311290334297 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009376311290334297 cfl multiplier : 0.8356164383561643 [sph::Model][rank=0]
Info: Timestep 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.0315e+04 | 800 | 1 | 3.938e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 772.9093375398925 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.314643834439793, dt = 0.009376311290334297 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.3%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 401.21 us (95.6%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.421341438663863e-19,-5.281343388351157e-18,-1.4382149522106585e-17)
sum a = (1.070363244115037e-16,-4.7594999293320017e-17,2.4983779840526747e-17)
sum e = 4.144510160068953
sum de = -1.043544591017298e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011478253456875729
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.834441030680364e-19,-3.807480117183393e-18,-1.4217388384069537e-17)
sum a = (2.944745863565587e-16,-8.155376767128299e-17,1.596325731585119e-16)
sum e = 4.144509542059497
sum de = -2.0599841277224584e-18
Info: CFL hydro = 0.004997316049061051 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004997316049061051 cfl multiplier : 0.44520547945205474 [sph::Model][rank=0]
Info: Timestep 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.5592e+04 | 800 | 1 | 5.131e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 657.8600967062047 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3240201457301275, dt = 0.004997316049061051 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.3%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 381.55 us (95.3%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.989116284665439e-18,-4.826003515957864e-18,-1.3055073446644552e-17)
sum a = (2.2834096337701567e-16,-5.653403994609361e-17,4.8044347851602874e-17)
sum e = 4.144509716082824
sum de = -1.9109063290057016e-18
Info: CFL hydro = 0.007074539875871449 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007074539875871449 cfl multiplier : 0.6301369863013698 [sph::Model][rank=0]
Info: Timestep 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.0073e+04 | 800 | 1 | 3.985e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 451.40360743296435 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3290174617791886, dt = 0.007074539875871449 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (0.7%)
patch tree reduce : 1754.00 ns (0.2%)
gen split merge : 761.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.1%)
LB compute : 706.72 us (97.3%)
LB move op cnt : 0
LB apply : 4.21 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (74.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2982184177961567e-18,-5.422139269946452e-18,-1.2836390481613563e-17)
sum a = (-1.3738532603792774e-16,-8.601130536944891e-17,5.0920178624613143e-17)
sum e = 4.144509887236865
sum de = 2.520770051028798e-18
Info: CFL hydro = 0.008457776731715036 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008457776731715036 cfl multiplier : 0.7534246575342465 [sph::Model][rank=0]
Info: Timestep 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.9357e+04 | 800 | 1 | 4.133e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 616.2436457539494 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.33609200165506, dt = 0.008457776731715036 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (1.2%)
patch tree reduce : 1734.00 ns (0.4%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 418.00 us (95.8%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0904191680997284e-18,-5.907435712891936e-18,-1.2369067980999393e-17)
sum a = (5.893468461871977e-17,-1.3887866107995443e-17,-2.392032158592399e-18)
sum e = 4.144510029664652
sum de = -1.2468324983583301e-18
Info: CFL hydro = 0.009380741653447254 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009380741653447254 cfl multiplier : 0.8356164383561643 [sph::Model][rank=0]
Info: Timestep 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.0306e+04 | 800 | 1 | 3.940e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 772.8345827216657 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.344549778386775, dt = 0.009380741653447254 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.4%)
patch tree reduce : 1813.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 398.92 us (95.3%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.35758210245738e-18,-5.655800520253537e-18,-1.2393033237441145e-17)
sum a = (5.3511421977377606e-17,-5.476061096940395e-17,-4.063908361110142e-17)
sum e = 4.144510134647471
sum de = -1.1926223897340549e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01113083328683689
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3021624469358277e-18,-5.916422684057593e-18,-1.2680616314742172e-17)
sum a = (-3.175171804253035e-17,1.2690801548729916e-16,-1.0548607188542786e-16)
sum e = 4.144509544612704
sum de = 1.0570971181733668e-18
Info: CFL hydro = 0.005000974506772721 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005000974506772721 cfl multiplier : 0.44520547945205474 [sph::Model][rank=0]
Info: Timestep 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.4986e+04 | 800 | 1 | 5.338e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 632.6294417130665 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.353930520040222, dt = 0.005000974506772721 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (0.8%)
patch tree reduce : 1653.00 ns (0.2%)
gen split merge : 821.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.1%)
LB compute : 727.63 us (97.2%)
LB move op cnt : 0
LB apply : 4.19 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (77.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0295576549108958e-18,-4.37365930061979e-18,-1.3486448062596092e-17)
sum a = (1.4354289911493046e-16,1.3165313626276612e-16,6.694095255592454e-17)
sum e = 4.144509710793055
sum de = 9.215718466126788e-19
Info: CFL hydro = 0.007080759958409924 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007080759958409924 cfl multiplier : 0.6301369863013698 [sph::Model][rank=0]
Info: Timestep 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.0486e+04 | 800 | 1 | 3.905e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 461.02358852499776 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3589314945469946, dt = 0.007080759958409924 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.97 us (1.3%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 373.25 us (95.5%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3476467592072707e-18,-3.3910837865079467e-18,-1.262369883069301e-17)
sum a = (2.3442514285616552e-17,-1.2485898606152935e-16,1.5486947844071363e-16)
sum e = 4.144509875446517
sum de = 3.333921680392926e-18
Info: CFL hydro = 0.008472048646622285 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008472048646622285 cfl multiplier : 0.7534246575342465 [sph::Model][rank=0]
Info: Timestep 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.1133e+04 | 800 | 1 | 3.786e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 673.3668880922881 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3660122545054043, dt = 0.008472048646622285 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.3%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 369.76 us (95.2%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.9881679125809866e-18,-5.604874350314813e-18,-1.082630459756159e-17)
sum a = (-3.2302170026426846e-17,-3.1127872460780986e-17,4.95601503215437e-17)
sum e = 4.144510015321046
sum de = -3.7947076036992655e-19
Info: CFL hydro = 0.009404448308045255 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009404448308045255 cfl multiplier : 0.8356164383561643 [sph::Model][rank=0]
Info: Timestep 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.0583e+04 | 800 | 1 | 3.887e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 784.7261258159994 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3744843031520264, dt = 0.009404448308045255 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.80 us (1.1%)
patch tree reduce : 1974.00 ns (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 431.69 us (95.8%)
LB move op cnt : 0
LB apply : 4.28 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3096515895738753e-18,-5.3412565294555384e-18,-1.0913178652162941e-17)
sum a = (-2.981877032765027e-17,-3.0166079317489725e-17,5.969745379640492e-17)
sum e = 4.144510122776159
sum de = -1.8431436932253575e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010584962174608734
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2302666776105712e-18,-5.523991609823899e-18,-1.1254683556457912e-17)
sum a = (-1.7166313189227153e-16,-9.912460690010428e-17,-5.9194183411128115e-18)
sum e = 4.144509548535183
sum de = -7.047314121155779e-19
Info: CFL hydro = 0.005011565180205627 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005011565180205627 cfl multiplier : 0.44520547945205474 [sph::Model][rank=0]
Info: Timestep 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.5294e+04 | 800 | 1 | 5.231e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 647.2391990227586 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3838887514600717, dt = 0.005011565180205627 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.3%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 405.23 us (95.5%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (74.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.12177573314196e-19,-6.23695798896603e-18,-1.1092918075476085e-17)
sum a = (6.127017375039491e-17,-4.3466983871228184e-18,1.446662705106376e-16)
sum e = 4.144509709970991
sum de = 2.439454888092385e-19
Info: CFL hydro = 0.00709379570560636 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00709379570560636 cfl multiplier : 0.6301369863013698 [sph::Model][rank=0]
Info: Timestep 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.0763e+04 | 800 | 1 | 3.853e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 468.24525026505773 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.3889003166402776, dt = 0.00709379570560636 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.3%)
patch tree reduce : 1743.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 435.63 us (95.4%)
LB move op cnt : 0
LB apply : 4.27 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.285686333132123e-18,-5.817566001235365e-18,-9.912629195719784e-18)
sum a = (4.95122198086602e-17,-1.5384496372782871e-16,1.3207252825049678e-16)
sum e = 4.144509873640486
sum de = -5.149960319306146e-19
Info: CFL hydro = 0.008482347876252351 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008482347876252351 cfl multiplier : 0.7534246575342465 [sph::Model][rank=0]
Info: Timestep 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.9653e+04 | 800 | 1 | 4.071e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 627.3706853372346 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.395994112345884, dt = 0.008482347876252351 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (0.7%)
patch tree reduce : 1513.00 ns (0.2%)
gen split merge : 771.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.1%)
LB compute : 742.64 us (97.4%)
LB move op cnt : 0
LB apply : 3.89 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.05 us (74.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.540317182825741e-18,-7.959460795716973e-18,-8.657448889583009e-18)
sum a = (-3.7424743590851394e-17,2.0064910955857092e-17,-6.674323919028008e-17)
sum e = 4.144510016091572
sum de = -7.860465750519907e-19
Info: CFL hydro = 0.009395754607685613 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009395754607685613 cfl multiplier : 0.8356164383561643 [sph::Model][rank=0]
Info: Timestep 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.9099e+04 | 800 | 1 | 4.189e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 729.0290764916617 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4044764602221367, dt = 0.009395754607685613 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.4%)
patch tree reduce : 1743.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 393.34 us (95.3%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6236461239287167e-18,-6.884019912893341e-18,-1.0245147128849098e-17)
sum a = (-6.992163132586748e-17,1.005342507731508e-17,-5.562336020130703e-17)
sum e = 4.144510127870058
sum de = 1.4365678785432934e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011460905945150904
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5921917248489167e-18,-6.88701556994856e-18,-1.0164264388358183e-17)
sum a = (-1.4885719473088903e-16,-2.4530836493777626e-16,-1.9651510282236866e-17)
sum e = 4.144509553425413
sum de = 1.3552527156068805e-19
Info: CFL hydro = 0.0050014440794241615 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0050014440794241615 cfl multiplier : 0.44520547945205474 [sph::Model][rank=0]
Info: Timestep 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.5199e+04 | 800 | 1 | 5.264e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 642.6201649013865 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4138722148298224, dt = 0.0050014440794241615 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (1.4%)
patch tree reduce : 1954.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1363.00 ns (0.3%)
LB compute : 443.56 us (94.9%)
LB move op cnt : 0
LB apply : 4.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (74.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2952227607409374e-20,-9.46328063743693e-18,-9.993511936210698e-18)
sum a = (3.713416485649515e-17,8.974988537436226e-17,2.329422926138321e-17)
sum e = 4.144509714422774
sum de = -2.8189256484623115e-18
Info: CFL hydro = 0.0070757667795250025 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0070757667795250025 cfl multiplier : 0.6301369863013698 [sph::Model][rank=0]
Info: Timestep 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.0249e+04 | 800 | 1 | 3.951e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 455.7253170179897 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4188736589092468, dt = 0.0070757667795250025 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.3%)
patch tree reduce : 1944.00 ns (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.3%)
LB compute : 419.10 us (95.2%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.97 us (76.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.792253457067866e-19,-7.87857805522606e-18,-1.0044438106149423e-17)
sum a = (4.5956374884115203e-17,-5.763644174241422e-18,3.568426684176914e-17)
sum e = 4.144509881053895
sum de = -6.2341624917916505e-19
Info: CFL hydro = 0.008456447403763596 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008456447403763596 cfl multiplier : 0.7534246575342465 [sph::Model][rank=0]
Info: Timestep 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.0049e+04 | 800 | 1 | 3.990e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 638.3861364045495 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.425949425688772, dt = 0.008456447403763596 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.5%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 394.88 us (94.9%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5862004107384787e-18,-8.432774610441582e-18,-9.481254579768244e-18)
sum a = (1.395856361449861e-16,1.3329475632902616e-16,7.94448251044088e-17)
sum e = 4.144510028301616
sum de = -1.3552527156068805e-19
Info: CFL hydro = 0.009376827341536187 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009376827341536187 cfl multiplier : 0.8356164383561643 [sph::Model][rank=0]
Info: Timestep 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.0201e+04 | 800 | 1 | 3.960e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 768.74432049775 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4344058730925355, dt = 0.009376827341536187 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.4%)
patch tree reduce : 1903.00 ns (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 399.21 us (94.9%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 us (73.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1229724800658433e-18,-6.281892844794315e-18,-8.697890259828465e-18)
sum a = (-1.8548509354505217e-16,9.293726448111533e-17,5.0135316476145756e-17)
sum e = 4.144510147050596
sum de = 1.1384122811097797e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01120298567652689
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5517503546034598e-18,-6.509562780990961e-18,-8.587050948785362e-18)
sum a = (2.171372059904965e-16,-6.180639636327912e-17,1.592251637990021e-16)
sum e = 4.144509558129132
sum de = -2.981555974335137e-19
Info: CFL hydro = 0.0049973260686567225 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0049973260686567225 cfl multiplier : 0.44520547945205474 [sph::Model][rank=0]
Info: Timestep 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.5369e+04 | 800 | 1 | 5.205e-02 | 0.1% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 648.5227701255421 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4437827004340718, dt = 0.0049973260686567225 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.1%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 427.76 us (95.6%)
LB move op cnt : 0
LB apply : 4.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (74.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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.701683748166274e-18,-7.854612798784309e-18,-7.342355442341853e-18)
sum a = (1.1730393896826695e-16,-2.6289886316602244e-17,-7.659295958784027e-17)
sum e = 4.144509723582851
sum de = 1.870248747537495e-18
Info: CFL hydro = 0.007074397247463124 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007074397247463124 cfl multiplier : 0.6301369863013698 [sph::Model][rank=0]
Info: Timestep 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.0643e+04 | 800 | 1 | 3.875e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 464.2186188197233 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4487800265027286, dt = 0.007074397247463124 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.2%)
patch tree reduce : 1503.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 416.16 us (95.6%)
LB move op cnt : 0
LB apply : 3.67 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.192971505222196e-18,-7.617955891422004e-18,-8.62150100492038e-18)
sum a = (-6.69828917546976e-17,3.422238619882225e-17,-6.959510470684861e-17)
sum e = 4.1445098959605495
sum de = 3.2526065174565133e-19
Info: CFL hydro = 0.00846211640068949 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00846211640068949 cfl multiplier : 0.7534246575342465 [sph::Model][rank=0]
Info: Timestep 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.0754e+04 | 800 | 1 | 3.855e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 660.7072237502547 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.455854423750192, dt = 0.00846211640068949 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.1%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 430.45 us (95.7%)
LB move op cnt : 0
LB apply : 3.69 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.913825942643668e-18,-7.243498759519625e-18,-9.225125901547016e-18)
sum a = (-5.57431864835158e-17,-1.8980483101867802e-17,-4.788258237062104e-17)
sum e = 4.1445100483102175
sum de = -4.2825985813177425e-18
Info: CFL hydro = 0.009392541083651762 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009392541083651762 cfl multiplier : 0.8356164383561643 [sph::Model][rank=0]
Info: Timestep 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.0662e+04 | 800 | 1 | 3.872e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 786.8170299378316 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.464316540150881, dt = 0.009392541083651762 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.2%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.2%)
LB compute : 413.79 us (95.8%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (72.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.862899772704945e-18,-7.62993851964288e-18,-9.649011374860509e-18)
sum a = (1.5978235601127284e-16,-1.1201360860875013e-16,-1.1184585181365787e-16)
sum e = 4.144510169656341
sum de = 1.9786689647860456e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010866436453538004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.5324291245463985e-18,-8.324930956453696e-18,-9.969546679768947e-18)
sum a = (3.548655347612468e-17,-2.0979185489109942e-16,1.5610968046157432e-16)
sum e = 4.144509561712766
sum de = -1.6263032587282567e-19
Info: CFL hydro = 0.005007619889791399 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005007619889791399 cfl multiplier : 0.44520547945205474 [sph::Model][rank=0]
Info: Timestep 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.5334e+04 | 800 | 1 | 5.217e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 648.1259690295998 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.473709081234533, dt = 0.005007619889791399 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.3%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 403.92 us (95.4%)
LB move op cnt : 0
LB apply : 3.58 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.515953010742694e-18,-9.601080861977005e-18,-8.01862502255755e-18)
sum a = (1.454391500308841e-16,-9.770635051302402e-17,1.0877829898911358e-16)
sum e = 4.144509732765144
sum de = 3.1170812458958252e-18
Info: CFL hydro = 0.007085316512453278 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007085316512453278 cfl multiplier : 0.6301369863013698 [sph::Model][rank=0]
Info: Timestep 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.0574e+04 | 800 | 1 | 3.888e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 463.61985684755905 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4787167011243243, dt = 0.007085316512453278 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.2%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 388.58 us (91.5%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (75.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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.561437323014137e-18,-1.0272108042346069e-17,-7.380550069795896e-18)
sum a = (-4.785861711417929e-17,2.5745874995374467e-16,-6.195018790192963e-17)
sum e = 4.144509907690722
sum de = -2.1412992906588713e-18
Info: CFL hydro = 0.008468447061792388 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008468447061792388 cfl multiplier : 0.7534246575342465 [sph::Model][rank=0]
Info: Timestep 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.0445e+04 | 800 | 1 | 3.913e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 651.8811011568366 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4858020176367774, dt = 0.008468447061792388 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.4%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 390.09 us (95.2%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.3437027300676e-18,-6.69978700399737e-18,-8.600531405533847e-18)
sum a = (7.069151518905877e-17,-4.469520326386799e-17,-1.1139051194126457e-16)
sum e = 4.144510058223977
sum de = 5.719166459861036e-18
Info: CFL hydro = 0.009390468047069852 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009390468047069852 cfl multiplier : 0.8356164383561643 [sph::Model][rank=0]
Info: Timestep 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.0240e+04 | 800 | 1 | 3.953e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 771.2964346538989 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.4942704646985696, dt = 0.0057295353014303885 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (1.2%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 381.60 us (95.4%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.532978580989556e-18,-7.976685823784483e-18,-9.420592524400058e-18)
sum a = (1.0937743040015738e-16,-5.4616819430753435e-17,-4.5581917752212827e-17)
sum e = 4.144509789453395
sum de = 2.0057740190981832e-18
Info: CFL hydro = 0.010007279143359405 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010007279143359405 cfl multiplier : 0.8904109589041095 [sph::Model][rank=0]
Info: Timestep 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.0750e+04 | 800 | 1 | 3.855e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 534.996772332847 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 346 [SPH][rank=0]
Info: time since start : 861.509651498 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15086553870567465 max=0.15146172483705708 delta=0.0005961861313824313
Number of particle pairs: 319600
Distance min=0.163521 max=2.299396 mean=0.935098
---------------- t = 2.5, dt = 0.010007279143359405 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.93 us (1.5%)
patch tree reduce : 1883.00 ns (0.3%)
gen split merge : 470.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 650.45 us (96.6%)
LB move op cnt : 0
LB apply : 3.85 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.4811040389663804e-18,-8.749565344030994e-18,-9.513083435979946e-18)
sum a = (3.6115641457720676e-17,1.1527288348482845e-16,-5.607870007370032e-17)
sum e = 4.144510251618873
sum de = 9.893344823930228e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.012093650000814122
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.922413998168031e-18,-8.316692899551844e-18,-9.414975667421523e-18)
sum a = (-2.1785017236963861e-16,1.1661493784556657e-16,3.978232569330878e-18)
sum e = 4.144509564079077
sum de = 1.7753810574450135e-18
Info: CFL hydro = 0.005210954872077001 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005210954872077001 cfl multiplier : 0.4634703196347032 [sph::Model][rank=0]
Info: Timestep 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.2805e+04 | 800 | 1 | 6.248e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 576.6407363790265 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5100072791433594, dt = 0.005210954872077001 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.91 us (1.1%)
patch tree reduce : 1522.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 420.88 us (95.9%)
LB move op cnt : 0
LB apply : 3.73 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.81496925982144e-18,-7.262970530378548e-18,-9.286911328310908e-18)
sum a = (3.6864555721525435e-17,-5.674972725406938e-17,-2.3725603877334752e-17)
sum e = 4.144509748756814
sum de = 2.7647155398380363e-18
Info: CFL hydro = 0.007223660737365615 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007223660737365615 cfl multiplier : 0.6423135464231354 [sph::Model][rank=0]
Info: Timestep 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.0620e+04 | 800 | 1 | 3.880e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 483.520467021503 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5152182340154363, dt = 0.007223660737365615 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.42 us (1.0%)
patch tree reduce : 1323.00 ns (0.3%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.2%)
LB compute : 432.72 us (96.0%)
LB move op cnt : 0
LB apply : 3.82 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.7990426024608925e-18,-7.663265204382193e-18,-9.707052230305378e-18)
sum a = (-1.073823228013815e-16,-3.7289939023366536e-17,-3.8272514537478384e-17)
sum e = 4.144509916796605
sum de = -2.0464316005663896e-18
Info: CFL hydro = 0.008569157635339128 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008569157635339128 cfl multiplier : 0.7615423642820902 [sph::Model][rank=0]
Info: Timestep 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.0962e+04 | 800 | 1 | 3.816e-02 | 0.1% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 681.4074837893661 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.522441894752802, dt = 0.008569157635339128 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (1.1%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 395.65 us (95.7%)
LB move op cnt : 0
LB apply : 3.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.953717856445968e-18,-8.087525134827588e-18,-1.0182987244953302e-17)
sum a = (1.6775679509226592e-19,-9.147538383816843e-17,5.732489340867144e-17)
sum e = 4.144510054916426
sum de = 3.5236570605778894e-19
Info: CFL hydro = 0.009460737763224277 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009460737763224277 cfl multiplier : 0.8410282428547268 [sph::Model][rank=0]
Info: Timestep 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.0666e+04 | 800 | 1 | 3.871e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 796.9011799445747 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.531011052388141, dt = 0.009460737763224277 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.36 us (1.0%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 411.20 us (95.9%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.666684235588098e-18,-9.041267449782948e-18,-9.059615849246164e-18)
sum a = (-1.2569777003699068e-16,-9.020522524675556e-17,4.771482557552878e-17)
sum e = 4.144510153076655
sum de = -1.7889335846010823e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010826477684755066
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8084284892678447e-18,-9.5688775486334e-18,-9.046884306761483e-18)
sum a = (1.7790608119534802e-16,-1.154406402799207e-16,-2.0274606949722424e-17)
sum e = 4.144509565080864
sum de = 2.656295322589486e-18
Info: CFL hydro = 0.005027706969323408 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005027706969323408 cfl multiplier : 0.44700941428490887 [sph::Model][rank=0]
Info: Timestep 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.5491e+04 | 800 | 1 | 5.164e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 659.5226395038358 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.540471790151365, dt = 0.005027706969323408 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.86 us (1.1%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 421.82 us (95.9%)
LB move op cnt : 0
LB apply : 3.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.9937603110501304e-18,-1.0169506788204816e-17,-9.344952183755778e-18)
sum a = (-8.573570492036877e-17,-5.686955353627815e-17,7.951672087373405e-17)
sum e = 4.1445097297409745
sum de = 3.9302328752599536e-19
Info: CFL hydro = 0.007100532479542285 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007100532479542285 cfl multiplier : 0.6313396095232725 [sph::Model][rank=0]
Info: Timestep 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.1078e+04 | 800 | 1 | 3.795e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 476.89007145848524 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.545499497120688, dt = 0.007100532479542285 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.4%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 379.99 us (95.4%)
LB move op cnt : 0
LB apply : 3.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.705627777305945e-18,-1.0311051584063917e-17,-8.62150100492038e-18)
sum a = (-3.351421287096847e-16,1.9939093359537894e-17,2.7320392343597594e-16)
sum e = 4.144509888075867
sum de = 9.317362419797304e-20
Info: CFL hydro = 0.008483211604240091 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008483211604240091 cfl multiplier : 0.7542264063488483 [sph::Model][rank=0]
Info: Timestep 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.0031e+04 | 800 | 1 | 3.994e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 640.0241840479431 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5526000296002302, dt = 0.008483211604240091 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.2%)
patch tree reduce : 1352.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 395.42 us (91.8%)
LB move op cnt : 0
LB apply : 20.44 us (4.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6661347791449403e-19,-1.0352990782836982e-17,-5.736683260744451e-18)
sum a = (-2.0244650379170232e-17,-1.225343561866794e-16,7.549055779151966e-17)
sum e = 4.144510017713185
sum de = -2.067607424247747e-18
Info: CFL hydro = 0.009407539792471196 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009407539792471196 cfl multiplier : 0.836150937565899 [sph::Model][rank=0]
Info: Timestep 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.1273e+04 | 800 | 1 | 3.761e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 812.0899910537013 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.56108324120447, dt = 0.009407539792471196 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 us (0.9%)
patch tree reduce : 911.00 ns (0.2%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 410.29 us (96.5%)
LB move op cnt : 0
LB apply : 2.81 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3420543607381274e-18,-1.1811875768728652e-17,-5.7247006325235744e-18)
sum a = (3.428769152262602e-16,-1.500944010946945e-16,-8.246444741606958e-17)
sum e = 4.144510110631403
sum de = 1.4264034831762418e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011252571702847497
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.757502319329121e-18,-1.1551253604924595e-17,-6.596436835592313e-18)
sum a = (1.4908186901003045e-16,5.809178161480752e-17,-3.2712575042991853e-18)
sum e = 4.144509566862304
sum de = 1.9244588561617704e-18
Info: CFL hydro = 0.005012355868493285 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005012355868493285 cfl multiplier : 0.4453836458552997 [sph::Model][rank=0]
Info: Timestep 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.6416e+04 | 800 | 1 | 4.873e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 694.9345494317698 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5704907809969413, dt = 0.005012355868493285 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.62 us (1.1%)
patch tree reduce : 1413.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 395.38 us (95.8%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5478063254637886e-18,-1.0965602650629274e-17,-6.1246208493953154e-18)
sum a = (2.4768092532550975e-17,-1.8505971024321106e-16,-5.470069782829957e-17)
sum e = 4.144509719880913
sum de = -1.2061749168901237e-18
Info: CFL hydro = 0.0070868783464834335 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0070868783464834335 cfl multiplier : 0.6302557639035332 [sph::Model][rank=0]
Info: Timestep 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.1182e+04 | 800 | 1 | 3.777e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 477.7717136761081 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5755031368654344, dt = 0.0070868783464834335 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.19 us (0.9%)
patch tree reduce : 1112.00 ns (0.2%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.2%)
LB compute : 435.15 us (96.5%)
LB move op cnt : 0
LB apply : 3.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.073544138654729e-18,-1.2183337243575812e-17,-6.458636611052238e-18)
sum a = (2.0178745923955415e-17,-1.258415615756412e-16,1.0940139565659914e-16)
sum e = 4.144509868050511
sum de = -4.675621868843738e-19
Info: CFL hydro = 0.008464114767258382 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008464114767258382 cfl multiplier : 0.7535038426023556 [sph::Model][rank=0]
Info: Timestep 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.0911e+04 | 800 | 1 | 3.826e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 666.8644838208343 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.5825900152119177, dt = 0.008464114767258382 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (1.0%)
patch tree reduce : 1253.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 402.82 us (96.2%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.077288709973753e-18,-1.3567330803087007e-17,-5.21094544755351e-18)
sum a = (1.4570875916585382e-17,4.649259749699941e-18,1.917220515340182e-18)
sum e = 4.144509990444065
sum de = 3.2390539903004445e-18
Info: CFL hydro = 0.009378290642559014 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009378290642559014 cfl multiplier : 0.8356692284015704 [sph::Model][rank=0]
Info: Timestep 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.0768e+04 | 800 | 1 | 3.852e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 791.0396668711194 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.591054129979176, dt = 0.009378290642559014 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (0.9%)
patch tree reduce : 1714.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 392.72 us (96.1%)
LB move op cnt : 0
LB apply : 3.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8773286015378825e-18,-1.3056571275172161e-17,-5.631835263811785e-18)
sum a = (1.480034324701516e-16,1.1922715079771756e-16,-6.546109797064634e-17)
sum e = 4.144510081023516
sum de = 1.2739375526704677e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01161111443290096
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.987219540496535e-18,-1.2791455625785276e-17,-5.922413998168031e-18)
sum a = (8.471119020748385e-17,-6.178243110683736e-17,-1.4552901974254067e-16)
sum e = 4.144509570117903
sum de = 1.599198204416119e-18
Info: CFL hydro = 0.004994002786767147 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004994002786767147 cfl multiplier : 0.44522307613385675 [sph::Model][rank=0]
Info: Timestep 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.5773e+04 | 800 | 1 | 5.072e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 665.6737506545455 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.600432420621735, dt = 0.004994002786767147 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.97 us (1.0%)
patch tree reduce : 982.00 ns (0.2%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 397.63 us (96.1%)
LB move op cnt : 0
LB apply : 3.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.038145710435258e-18,-1.3561339488976567e-17,-6.960409167801426e-18)
sum a = (-1.7813375113154466e-16,-6.393930418659507e-17,-5.1633145003755275e-17)
sum e = 4.144509713560886
sum de = -6.776263578034403e-19
Info: CFL hydro = 0.007066564374499766 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007066564374499766 cfl multiplier : 0.6301487174225712 [sph::Model][rank=0]
Info: Timestep 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.0575e+04 | 800 | 1 | 3.888e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 462.3930372666124 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.605426423408502, dt = 0.007066564374499766 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.04 us (1.0%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1093.00 ns (0.3%)
LB compute : 383.73 us (95.7%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0460337687146004e-18,-1.4136505643578624e-17,-7.153629047863054e-18)
sum a = (-1.9897154160764826e-16,3.00284663215156e-17,-6.478407947616683e-17)
sum e = 4.14450985698433
sum de = 2.574980159653073e-19
Info: CFL hydro = 0.008447863276134955 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008447863276134955 cfl multiplier : 0.7534324782817142 [sph::Model][rank=0]
Info: Timestep 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.0981e+04 | 800 | 1 | 3.813e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 667.1977333674339 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6124929877830017, dt = 0.008447863276134955 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (0.9%)
patch tree reduce : 982.00 ns (0.2%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 388.40 us (92.5%)
LB move op cnt : 0
LB apply : 20.14 us (4.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2207302500017565e-19,-1.3654204857688359e-17,-7.763245258600128e-18)
sum a = (1.857906505646845e-16,5.4772593597624825e-17,1.37710354828419e-17)
sum e = 4.144509980651412
sum de = 1.1384122811097797e-18
Info: CFL hydro = 0.009370551697722556 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009370551697722556 cfl multiplier : 0.8356216521878096 [sph::Model][rank=0]
Info: Timestep 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.0741e+04 | 800 | 1 | 3.857e-02 | 0.1% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 788.4800679686646 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6209408510591365, dt = 0.009370551697722556 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (0.9%)
patch tree reduce : 872.00 ns (0.2%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 362.90 us (96.5%)
LB move op cnt : 0
LB apply : 2.52 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3978240148821895e-18,-1.3390587036829083e-17,-7.256979216268111e-18)
sum a = (-1.3271359886031365e-16,-4.385641928840666e-18,1.250939579117981e-16)
sum e = 4.144510078953509
sum de = -2.168404344971009e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011275158064620911
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2220286207087187e-18,-1.3995709761983327e-17,-6.555995465346857e-18)
sum a = (-2.7350348914149784e-17,-1.0055821602959255e-16,-2.1867547588835145e-17)
sum e = 4.144509574893992
sum de = -1.938011383317839e-18
Info: CFL hydro = 0.004995902314799045 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004995902314799045 cfl multiplier : 0.44520721739593655 [sph::Model][rank=0]
Info: Timestep 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.6158e+04 | 800 | 1 | 4.951e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 681.3594982127021 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6303114027568593, dt = 0.004995902314799045 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.46 us (1.1%)
patch tree reduce : 982.00 ns (0.2%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 401.30 us (96.3%)
LB move op cnt : 0
LB apply : 3.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.708822892181812e-18,-1.396275753437592e-17,-7.56852755001089e-18)
sum a = (2.2413506087148816e-17,1.254161782738001e-16,-1.1062961504923894e-17)
sum e = 4.144509716556221
sum de = 3.0357660829594124e-18
Info: CFL hydro = 0.007073825512630246 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007073825512630246 cfl multiplier : 0.6301381449306244 [sph::Model][rank=0]
Info: Timestep 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.0904e+04 | 800 | 1 | 3.827e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 469.9505667242479 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6353073050716582, dt = 0.007073825512630246 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (1.0%)
patch tree reduce : 972.00 ns (0.2%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.2%)
LB compute : 386.89 us (96.2%)
LB move op cnt : 0
LB apply : 3.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.042838653838734e-18,-1.3144943158301122e-17,-7.562536235900453e-18)
sum a = (-2.4495487740526044e-16,-3.927306399392154e-17,4.8808240400683723e-17)
sum e = 4.144509864169325
sum de = -1.1926223897340549e-18
Info: CFL hydro = 0.008464105208210016 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008464105208210016 cfl multiplier : 0.7534254299537496 [sph::Model][rank=0]
Info: Timestep 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.0745e+04 | 800 | 1 | 3.856e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 660.3548658800374 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6423811305842886, dt = 0.008464105208210016 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (1.1%)
patch tree reduce : 1062.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 385.60 us (96.0%)
LB move op cnt : 0
LB apply : 3.04 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9396879432543247e-19,-1.3690152742350987e-17,-6.934946082832064e-18)
sum a = (-2.235598947168861e-16,-1.0472517499340222e-16,-1.5706229940513396e-16)
sum e = 4.144509996766887
sum de = -1.2468324983583301e-18
Info: CFL hydro = 0.009379288622453337 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009379288622453337 cfl multiplier : 0.8356169533024996 [sph::Model][rank=0]
Info: Timestep 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.0943e+04 | 800 | 1 | 3.820e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 797.6804858348461 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6508452357924988, dt = 0.009379288622453337 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.0%)
patch tree reduce : 1382.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.2%)
LB compute : 424.69 us (96.1%)
LB move op cnt : 0
LB apply : 3.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.25685313397564e-18,-1.5247894411064885e-17,-9.15323013222176e-18)
sum a = (1.744071537548522e-17,-1.5750153762085545e-16,2.559489387979143e-17)
sum e = 4.144510105236218
sum de = 2.574980159653073e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010655012604031046
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.953270023785888e-19,-1.5439616462598904e-17,-8.470220323631819e-18)
sum a = (2.441460500003513e-16,-7.36077873323145e-17,-1.883070024910685e-17)
sum e = 4.144509580346333
sum de = -1.3552527156068805e-19
Info: CFL hydro = 0.004994535941733121 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004994535941733121 cfl multiplier : 0.44520565110083316 [sph::Model][rank=0]
Info: Timestep 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.5981e+04 | 800 | 1 | 5.006e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 674.5022649683722 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6602245244149523, dt = 0.004994535941733121 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (1.0%)
patch tree reduce : 922.00 ns (0.2%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 372.88 us (95.8%)
LB move op cnt : 0
LB apply : 3.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.39887401074972e-19,-1.5673277712905986e-17,-8.741327287129141e-18)
sum a = (-4.847572246755441e-17,5.850218663137253e-17,-4.60971707657105e-17)
sum e = 4.1445097274005835
sum de = -1.599198204416119e-18
Info: CFL hydro = 0.007067318910996293 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007067318910996293 cfl multiplier : 0.6301371007338887 [sph::Model][rank=0]
Info: Timestep 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.0881e+04 | 800 | 1 | 3.831e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 469.3048876331432 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6652190603566854, dt = 0.007067318910996293 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (0.9%)
patch tree reduce : 1022.00 ns (0.2%)
gen split merge : 702.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 701.00 ns (0.2%)
LB compute : 397.39 us (96.5%)
LB move op cnt : 0
LB apply : 2.88 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5088627837459413e-20,-1.5181989955850065e-17,-9.292528185289445e-18)
sum a = (-5.2346111382897406e-17,-4.7127676792705846e-17,5.0327038527679774e-17)
sum e = 4.144509883581199
sum de = 2.5478751053409354e-18
Info: CFL hydro = 0.008448273099952509 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008448273099952509 cfl multiplier : 0.7534247338225925 [sph::Model][rank=0]
Info: Timestep 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.0834e+04 | 800 | 1 | 3.840e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 662.5721735209773 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.672286379267682, dt = 0.008448273099952509 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (1.0%)
patch tree reduce : 1193.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 423.53 us (96.1%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.2500884470920047e-19,-1.536172937916321e-17,-8.350394041423058e-18)
sum a = (3.179590398409483e-17,-6.260923245407782e-18,5.912228764180286e-17)
sum e = 4.144510024781187
sum de = 2.710505431213761e-19
Info: CFL hydro = 0.009369794828458513 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009369794828458513 cfl multiplier : 0.8356164892150616 [sph::Model][rank=0]
Info: Timestep 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.0907e+04 | 800 | 1 | 3.827e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 794.8194763736966 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.6807346523676343, dt = 0.009369794828458513 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (1.0%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 390.83 us (96.1%)
LB move op cnt : 0
LB apply : 3.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.826752430221669e-19,-1.5310803209224484e-17,-7.851617141729089e-18)
sum a = (-2.402097566297935e-16,1.0871838584800919e-16,-1.1008440546518907e-16)
sum e = 4.144510141585347
sum de = -3.415236843329339e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01067001545617381
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2319639639588278e-18,-1.4588849858916696e-17,-8.537622607374248e-18)
sum a = (-2.102771513340449e-16,-2.6062216380405598e-17,-1.80518294147499e-16)
sum e = 4.144509585050612
sum de = -1.734723475976807e-18
Info: CFL hydro = 0.004994293175139896 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004994293175139896 cfl multiplier : 0.44520549640502055 [sph::Model][rank=0]
Info: Timestep 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.5837e+04 | 800 | 1 | 5.051e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 667.7486849168704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.690104447196093, dt = 0.004994293175139896 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.58 us (1.1%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 392.22 us (95.7%)
LB move op cnt : 0
LB apply : 3.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0029711985458266e-18,-1.5643321142353797e-17,-9.83474211228409e-18)
sum a = (7.513107894489338e-17,1.4247344954621726e-17,-1.6787662137447468e-17)
sum e = 4.144509741374795
sum de = -1.0842021724855044e-19
Info: CFL hydro = 0.007070600269429313 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007070600269429313 cfl multiplier : 0.630136997603347 [sph::Model][rank=0]
Info: Timestep 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.0435e+04 | 800 | 1 | 3.915e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 459.2528570199775 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.695098740371233, dt = 0.007070600269429313 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.2%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 390.29 us (95.6%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.200810646482754e-19,-1.5002250532536925e-17,-9.478258922713024e-18)
sum a = (-8.677819357558498e-17,6.538920220132109e-17,1.5098111558303934e-17)
sum e = 4.144509906490963
sum de = 1.6534083130403943e-18
Info: CFL hydro = 0.00845832172018717 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00845832172018717 cfl multiplier : 0.7534246650688979 [sph::Model][rank=0]
Info: Timestep 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.0572e+04 | 800 | 1 | 3.889e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 654.5609310995922 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7021693406406624, dt = 0.00845832172018717 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.83 us (1.2%)
patch tree reduce : 1263.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 388.24 us (95.7%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.0864751389600574e-18,-1.442558654940726e-17,-9.097810476700207e-18)
sum a = (-1.197064559265526e-16,-8.119428882465671e-17,1.960357976935336e-17)
sum e = 4.1445100537433435
sum de = -5.692061405548898e-19
Info: CFL hydro = 0.009389007062438462 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009389007062438462 cfl multiplier : 0.8356164433792653 [sph::Model][rank=0]
Info: Timestep 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.0041e+04 | 800 | 1 | 3.992e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 762.8004145800596 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7106276623608494, dt = 0.009389007062438462 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.2%)
patch tree reduce : 1592.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 416.41 us (95.7%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.2163059201925112e-18,-1.6016280445728568e-17,-8.991464651239932e-18)
sum a = (-1.5666088135973462e-16,-1.3144943158301122e-16,1.8872639447879915e-17)
sum e = 4.14451017158972
sum de = 5.285485590866834e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010607968669019117
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.3426852022095643e-18,-1.6196019869041708e-17,-8.87313619755878e-18)
sum a = (1.1955068175968122e-16,-1.383873733228985e-16,1.3395380088117434e-16)
sum e = 4.144509588090003
sum de = 2.303929616531697e-18
Info: CFL hydro = 0.005004406416339998 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005004406416339998 cfl multiplier : 0.4452054811264217 [sph::Model][rank=0]
Info: Timestep 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.6034e+04 | 800 | 1 | 4.989e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 677.4493619946084 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7200166694232877, dt = 0.005004406416339998 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (1.0%)
patch tree reduce : 1392.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 375.19 us (95.9%)
LB move op cnt : 0
LB apply : 3.04 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4011249732957277e-18,-1.7168110583460284e-17,-7.710821260133795e-18)
sum a = (1.50334053659112e-16,1.0223578398051521e-16,2.4420596314145567e-17)
sum e = 4.144509752194956
sum de = -1.4907779871675686e-19
Info: CFL hydro = 0.007083593283786648 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007083593283786648 cfl multiplier : 0.6301369874176145 [sph::Model][rank=0]
Info: Timestep 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.0726e+04 | 800 | 1 | 3.860e-02 | 0.1% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 466.7364971575255 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.725021075839628, dt = 0.007083593283786648 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.2%)
patch tree reduce : 1412.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 395.42 us (95.7%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.1128743667591752e-19,-1.5805086623335623e-17,-7.830647542342556e-18)
sum a = (-1.029906895584304e-17,-2.5427137084699162e-17,-4.063309229699098e-17)
sum e = 4.144509920260229
sum de = -8.267041565201971e-19
Info: CFL hydro = 0.008471695452494526 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008471695452494526 cfl multiplier : 0.7534246582784098 [sph::Model][rank=0]
Info: Timestep 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.0357e+04 | 800 | 1 | 3.930e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 648.909370246692 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7321046691234145, dt = 0.008471695452494526 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.3%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 387.28 us (95.3%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.103244324867385e-18,-1.6672329340821536e-17,-8.333917927619353e-18)
sum a = (-1.237805495216505e-17,-8.291978728846288e-18,-4.2118938196379624e-17)
sum e = 4.144510064699258
sum de = -3.1170812458958252e-19
Info: CFL hydro = 0.00940109708259369 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00940109708259369 cfl multiplier : 0.8356164388522732 [sph::Model][rank=0]
Info: Timestep 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.0500e+04 | 800 | 1 | 3.902e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 781.5234029557744 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.740576364575909, dt = 0.00940109708259369 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (1.1%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 389.12 us (95.8%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.159412894652742e-18,-1.631135266566764e-17,-8.939789567037403e-18)
sum a = (-1.811174255585428e-17,-6.971493098905736e-17,1.1208550437807538e-16)
sum e = 4.144510173480331
sum de = 2.15485181781494e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010260098900767903
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1354476382109896e-18,-1.6423689805238355e-17,-7.990915194796774e-18)
sum a = (4.375456694852921e-17,1.001747719265245e-17,-8.447752895717676e-18)
sum e = 4.144509589366513
sum de = -3.3745792618611326e-18
Info: CFL hydro = 0.005014108693405435 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005014108693405435 cfl multiplier : 0.44520547961742435 [sph::Model][rank=0]
Info: Timestep 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.5807e+04 | 800 | 1 | 5.061e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 668.7179163722635 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7499774616585024, dt = 0.005014108693405435 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.76 us (1.2%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 391.01 us (95.8%)
LB move op cnt : 0
LB apply : 3.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.682386976618606e-19,-1.641320500554509e-17,-8.760799057988066e-18)
sum a = (-2.902552033942827e-16,-4.088472748962938e-17,-1.2334917490569895e-16)
sum e = 4.144509754085273
sum de = 1.179069862577986e-18
Info: CFL hydro = 0.0071010184061661916 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0071010184061661916 cfl multiplier : 0.6301369864116162 [sph::Model][rank=0]
Info: Timestep 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.0951e+04 | 800 | 1 | 3.818e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 472.72102336707036 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.754991570351908, dt = 0.0071010184061661916 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (1.1%)
patch tree reduce : 962.00 ns (0.2%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 388.77 us (96.2%)
LB move op cnt : 0
LB apply : 2.88 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.7127424628120904e-18,-1.681462305094444e-17,-9.663989660136605e-18)
sum a = (1.37614493802652e-16,-1.2751912952656385e-16,8.498079934245357e-17)
sum e = 4.1445099169120105
sum de = -2.574980159653073e-19
Info: CFL hydro = 0.008498676944674858 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008498676944674858 cfl multiplier : 0.7534246576077441 [sph::Model][rank=0]
Info: Timestep 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.0186e+04 | 800 | 1 | 3.963e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 645.0383619697103 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7620925887580743, dt = 0.008498676944674858 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.11 us (0.6%)
patch tree reduce : 982.00 ns (0.1%)
gen split merge : 672.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.2%)
LB compute : 657.25 us (97.6%)
LB move op cnt : 0
LB apply : 2.98 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.77727517179177e-19,-1.8184387239443344e-17,-8.446255067190067e-18)
sum a = (1.1964654278544823e-17,4.7594999293320017e-17,-9.262571614737254e-18)
sum e = 4.144510052114764
sum de = -5.082197683525802e-19
Info: CFL hydro = 0.009413948262886992 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009413948262886992 cfl multiplier : 0.8356164384051628 [sph::Model][rank=0]
Info: Timestep 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.9882e+04 | 800 | 1 | 4.024e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 760.3668362150086 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.770591265702749, dt = 0.009413948262886992 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (1.1%)
patch tree reduce : 1012.00 ns (0.3%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.2%)
LB compute : 377.60 us (96.0%)
LB move op cnt : 0
LB apply : 2.94 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4064609874253366e-18,-1.691422864803047e-17,-8.6874054601352e-18)
sum a = (-1.8698891338677213e-17,-6.027261995100697e-17,-2.1904244387761578e-17)
sum e = 4.144510146047229
sum de = 2.134523027080837e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010096756151605499
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.521419326919367e-18,-1.75481845723412e-17,-8.801240428233523e-18)
sum a = (-2.9764848500656325e-17,-8.208100331300154e-17,-1.4558893288364507e-17)
sum e = 4.144509589871717
sum de = -4.1335207826009857e-19
Info: CFL hydro = 0.005009577266859248 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005009577266859248 cfl multiplier : 0.44520547946838757 [sph::Model][rank=0]
Info: Timestep 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.5592e+04 | 800 | 1 | 5.131e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 660.5314694754852 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.780005213965636, dt = 0.005009577266859248 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (0.9%)
patch tree reduce : 18.86 us (4.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 396.65 us (92.1%)
LB move op cnt : 0
LB apply : 3.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.8108746898799064e-18,-1.8093768613522966e-17,-9.021421221792122e-18)
sum a = (-1.5710423860390703e-16,1.176933743854454e-16,-1.1686657303820498e-16)
sum e = 4.144509746133209
sum de = -1.7279472123987727e-18
Info: CFL hydro = 0.007086031009623613 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007086031009623613 cfl multiplier : 0.6301369863122583 [sph::Model][rank=0]
Info: Timestep 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.0649e+04 | 800 | 1 | 3.874e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 465.4956115462175 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.7850147912324954, dt = 0.007086031009623613 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (1.0%)
patch tree reduce : 1203.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 382.48 us (95.9%)
LB move op cnt : 0
LB apply : 3.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.322183674237909e-18,-1.6614288485376666e-17,-9.813772512897557e-18)
sum a = (1.280763217388346e-16,9.250588986516378e-17,1.0502773635597934e-16)
sum e = 4.144509895726913
sum de = 3.1848438816761693e-18
Info: CFL hydro = 0.008466411855795131 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008466411855795131 cfl multiplier : 0.7534246575415056 [sph::Model][rank=0]
Info: Timestep 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.0626e+04 | 800 | 1 | 3.879e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 657.6901381418857 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.792100822242119, dt = 0.008466411855795131 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.4%)
patch tree reduce : 1903.00 ns (0.5%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 379.09 us (95.1%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1289882526856736e-18,-1.5972094504164087e-17,-8.322777827945258e-18)
sum a = (-1.2706378965417055e-16,-1.5181989955850065e-16,1.460682380124801e-17)
sum e = 4.1445100162343875
sum de = 8.927727264060326e-19
Info: CFL hydro = 0.009384486695457805 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009384486695457805 cfl multiplier : 0.8356164383610037 [sph::Model][rank=0]
Info: Timestep 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.0404e+04 | 800 | 1 | 3.921e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 777.3753371338933 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.800567234097914, dt = 0.009384486695457805 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.4%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 386.70 us (95.0%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.3480212163391733e-18,-1.8579813970732255e-17,-8.27363032938307e-18)
sum a = (6.132109992033363e-17,4.1124380054046904e-17,-5.2435981094553976e-17)
sum e = 4.144510100133776
sum de = -1.3671111768684407e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011451631922076069
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5406916399576436e-18,-1.742105637606034e-17,-8.869766083371658e-18)
sum a = (-5.0638586861422555e-17,-6.245345828720643e-17,1.185561236173485e-16)
sum e = 4.144509591072676
sum de = -1.5805634795765244e-18
Info: CFL hydro = 0.00499912825175397 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00499912825175397 cfl multiplier : 0.44520547945366795 [sph::Model][rank=0]
Info: Timestep 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.5240e+04 | 800 | 1 | 5.249e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 643.5937780940801 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.809951720793372, dt = 0.00499912825175397 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.4%)
patch tree reduce : 1974.00 ns (0.5%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 384.05 us (95.2%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.3749821298361443e-18,-1.8094143070654868e-17,-7.141271962510275e-18)
sum a = (-1.11300642229608e-16,1.2430778516336905e-16,7.324980631421582e-17)
sum e = 4.1445097343557755
sum de = 3.859082107690592e-18
Info: CFL hydro = 0.007075179329113502 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007075179329113502 cfl multiplier : 0.6301369863024453 [sph::Model][rank=0]
Info: Timestep 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.0304e+04 | 800 | 1 | 3.940e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.76097878293274 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.814950849045126, dt = 0.007075179329113502 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.3%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 395.95 us (95.2%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.63 us (74.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.362425586662719e-18,-1.696253361804588e-17,-6.960221939235475e-18)
sum a = (1.576314742456256e-16,-1.0966501347745841e-16,1.1324781931550038e-16)
sum e = 4.144509872007628
sum de = 5.759824041329242e-20
Info: CFL hydro = 0.008460095996495555 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008460095996495555 cfl multiplier : 0.7534246575349636 [sph::Model][rank=0]
Info: Timestep 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.9998e+04 | 800 | 1 | 4.000e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 636.7111914443935 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8220260283742395, dt = 0.008460095996495555 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.2%)
patch tree reduce : 1532.00 ns (0.3%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 418.06 us (95.4%)
LB move op cnt : 0
LB apply : 4.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (73.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9898651989292433e-18,-1.8856163334076213e-17,-5.640822234977442e-18)
sum a = (1.1515305720261967e-17,-4.486296005896026e-17,9.329075201363117e-17)
sum e = 4.144509985179497
sum de = 1.2874900798265365e-18
Info: CFL hydro = 0.00938630611569166 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00938630611569166 cfl multiplier : 0.8356164383566425 [sph::Model][rank=0]
Info: Timestep 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.9962e+04 | 800 | 1 | 4.008e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 759.9645550371184 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.830486124370735, dt = 0.00938630611569166 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.3%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 388.62 us (95.1%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (73.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.6915978641143024e-18,-1.8884622076100793e-17,-5.089621336817139e-18)
sum a = (5.000350756571612e-17,-1.5464779981862743e-16,6.012882841235646e-17)
sum e = 4.144510068691445
sum de = -5.441339653161625e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01178715735285362
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.5852520386540268e-18,-1.9192425838524548e-17,-5.225549275697703e-18)
sum a = (2.797943689574578e-18,1.1572822335722173e-16,-3.3767046326428955e-17)
sum e = 4.144509594084296
sum de = 1.8431436932253575e-18
Info: CFL hydro = 0.005005207472631545 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005005207472631545 cfl multiplier : 0.44520547945221417 [sph::Model][rank=0]
Info: Timestep 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.5096e+04 | 800 | 1 | 5.299e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 637.6344291226026 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8398724304864267, dt = 0.005005207472631545 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.3%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.3%)
LB compute : 388.04 us (95.3%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.717060949083664e-18,-1.7685610339749375e-17,-5.716462575621722e-18)
sum a = (-2.993859660985903e-17,-9.461483243203798e-17,1.7444909295362524e-16)
sum e = 4.144509727736113
sum de = -1.3213713977167085e-18
Info: CFL hydro = 0.007087617183764438 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007087617183764438 cfl multiplier : 0.6301369863014762 [sph::Model][rank=0]
Info: Timestep 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.0650e+04 | 800 | 1 | 3.874e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 465.1066485107644 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8448776379590583, dt = 0.007087617183764438 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.46 us (1.1%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 1092.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.2%)
LB compute : 404.02 us (96.0%)
LB move op cnt : 0
LB apply : 3.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.909531914881487e-18,-1.9034404928861744e-17,-4.076340337889301e-18)
sum a = (-1.0149885234493131e-16,-1.3926210518302247e-16,7.217736108844742e-17)
sum e = 4.14450986116397
sum de = 5.014435047745458e-19
Info: CFL hydro = 0.008481350629313046 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008481350629313046 cfl multiplier : 0.7534246575343175 [sph::Model][rank=0]
Info: Timestep 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.0299e+04 | 800 | 1 | 3.941e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 647.4282012106079 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8519652551428227, dt = 0.008481350629313046 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.2%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.2%)
LB compute : 410.38 us (95.6%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (74.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.8823715435638685e-18,-2.0002002157697493e-17,-3.6985130917998e-18)
sum a = (1.6261624758551006e-16,-5.573120385529491e-17,-5.52099595276868e-18)
sum e = 4.144509976761827
sum de = 1.2197274440461925e-18
Info: CFL hydro = 0.009418094206509487 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009418094206509487 cfl multiplier : 0.8356164383562117 [sph::Model][rank=0]
Info: Timestep 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.0912e+04 | 800 | 1 | 3.825e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 798.1450022031746 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8604466057721356, dt = 0.009418094206509487 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (1.1%)
patch tree reduce : 1492.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 394.94 us (95.8%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4813524138058124e-18,-2.0246148207697844e-17,-3.926557485128349e-18)
sum a = (9.490241550933901e-17,5.068651737430606e-18,-2.2181960519636978e-16)
sum e = 4.1445100698913455
sum de = 1.0977546996415732e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011127879622235949
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.9089824584383294e-18,-2.0078391412605576e-17,-5.221804704378679e-18)
sum a = (1.1105499835108003e-16,3.430626459636838e-17,6.437929131658037e-17)
sum e = 4.144509598997612
sum de = 4.784042086092288e-18
Info: CFL hydro = 0.005021928760782978 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005021928760782978 cfl multiplier : 0.44520547945207056 [sph::Model][rank=0]
Info: Timestep 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.5542e+04 | 800 | 1 | 5.147e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 658.6909881871507 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.869864699978645, dt = 0.005021928760782978 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.19 us (1.1%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 373.93 us (95.6%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (74.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.163165475471868e-19,-1.9498731772420694e-17,-3.4195425285325276e-18)
sum a = (2.704778755157266e-16,1.5843431033642428e-16,-3.211868603179468e-16)
sum e = 4.1445097313453365
sum de = -6.505213034913027e-19
Info: CFL hydro = 0.007105166005646449 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007105166005646449 cfl multiplier : 0.6301369863013804 [sph::Model][rank=0]
Info: Timestep 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.1480e+04 | 800 | 1 | 3.724e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 485.41599584866447 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.874886628739428, dt = 0.007105166005646449 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.16 us (1.0%)
patch tree reduce : 872.00 ns (0.2%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 398.69 us (96.4%)
LB move op cnt : 0
LB apply : 3.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1533279662593281e-18,-1.8141699126406472e-17,-6.671702719104692e-18)
sum a = (1.6404218034379432e-17,8.681414146024761e-17,-1.342473752725858e-16)
sum e = 4.144509869772343
sum de = -3.1170812458958252e-19
Info: CFL hydro = 0.00849210926808701 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00849210926808701 cfl multiplier : 0.7534246575342536 [sph::Model][rank=0]
Info: Timestep 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.0348e+04 | 800 | 1 | 3.932e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 650.5996278388279 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8819917947450744, dt = 0.00849210926808701 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (1.1%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 397.09 us (95.7%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.691748404916165e-19,-1.7609969999105093e-17,-7.284314586896984e-18)
sum a = (9.59868433633283e-17,5.2435981094553976e-17,6.713567026451377e-17)
sum e = 4.1445099946881525
sum de = 1.0706496453294356e-18
Info: CFL hydro = 0.009416771905087292 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009416771905087292 cfl multiplier : 0.8356164383561691 [sph::Model][rank=0]
Info: Timestep 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.0650e+04 | 800 | 1 | 3.874e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 789.1470385958291 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8904839040131614, dt = 0.009416771905087292 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (1.1%)
patch tree reduce : 1594.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 420.38 us (95.8%)
LB move op cnt : 0
LB apply : 3.57 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.501573098928541e-18,-1.758900039971856e-17,-5.653928234594025e-18)
sum a = (1.3016129904926704e-17,5.740877180621757e-17,2.7803891392309943e-16)
sum e = 4.14451009983844
sum de = -2.3310346708438345e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01079668779907367
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2851368766889657e-18,-1.736881960615996e-17,-4.68370980583496e-18)
sum a = (3.0705484815995102e-18,-2.3464981713530695e-16,6.29687113007041e-17)
sum e = 4.144509604726501
sum de = -1.2197274440461925e-18
Info: CFL hydro = 0.005018542425744003 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005018542425744003 cfl multiplier : 0.44520547945205635 [sph::Model][rank=0]
Info: Timestep 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.5648e+04 | 800 | 1 | 5.113e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 663.0750604964 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.8999006759182486, dt = 0.005018542425744003 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (1.1%)
patch tree reduce : 1263.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 375.43 us (95.7%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2431976779158992e-18,-1.9868695418740244e-17,-5.330022815498467e-18)
sum a = (-6.54551066565359e-17,3.09571200086335e-17,-5.500026353382147e-18)
sum e = 4.144509743618927
sum de = 5.421010862427522e-20
Info: CFL hydro = 0.007104370649355018 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007104370649355018 cfl multiplier : 0.6301369863013709 [sph::Model][rank=0]
Info: Timestep 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.0813e+04 | 800 | 1 | 3.844e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 470.02600105574305 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9049192183439927, dt = 0.007104370649355018 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (1.1%)
patch tree reduce : 1131.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 366.30 us (95.8%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.4260832990861235e-19,-1.883070024910685e-17,-5.43449635529923e-18)
sum a = (4.7762756088412285e-17,-9.8047855417319e-17,1.2186332900631031e-16)
sum e = 4.144509893224357
sum de = -1.3552527156068805e-20
Info: CFL hydro = 0.008497882078376233 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008497882078376233 cfl multiplier : 0.7534246575342474 [sph::Model][rank=0]
Info: Timestep 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.0670e+04 | 800 | 1 | 3.870e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 660.820666809448 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.912023588993348, dt = 0.008497882078376233 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (0.9%)
patch tree reduce : 901.00 ns (0.2%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 712.00 ns (0.2%)
LB compute : 382.42 us (96.5%)
LB move op cnt : 0
LB apply : 2.88 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2836390481613562e-18,-2.0547211741747356e-17,-4.193919877306648e-18)
sum a = (-1.6413504571250612e-16,1.480154150983725e-17,1.1423039482961222e-16)
sum e = 4.144510030546877
sum de = 1.531435568635775e-18
Info: CFL hydro = 0.00943102342700953 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00943102342700953 cfl multiplier : 0.835616438356165 [sph::Model][rank=0]
Info: Timestep 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.0814e+04 | 800 | 1 | 3.844e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 795.9281894405112 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.920521471071724, dt = 0.00943102342700953 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (1.1%)
patch tree reduce : 1293.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 366.15 us (95.5%)
LB move op cnt : 0
LB apply : 3.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.029757112731543e-18,-1.978631484972172e-17,-2.9698195131177703e-18)
sum a = (-5.78701029927213e-17,-1.3294501336782934e-16,-3.939888159024074e-17)
sum e = 4.144510146250923
sum de = 1.5720931501039814e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010577537593670614
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.471018154914409e-19,-2.0575670483771936e-17,-3.673611692528292e-18)
sum a = (-7.189876498231205e-17,-1.158667724960256e-16,-1.6291581329103196e-16)
sum e = 4.144509609597392
sum de = 8.402566836762659e-19
Info: CFL hydro = 0.005019870256746814 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005019870256746814 cfl multiplier : 0.445205479452055 [sph::Model][rank=0]
Info: Timestep 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.5456e+04 | 800 | 1 | 5.176e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 655.9444423731513 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9299524944987336, dt = 0.005019870256746814 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.3%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 403.83 us (95.5%)
LB move op cnt : 0
LB apply : 3.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2836390481613562e-18,-2.0494787743281023e-17,-5.116582250314111e-18)
sum a = (-5.172001905835663e-17,1.4988770075788438e-17,-2.7140652920284452e-17)
sum e = 4.144509759872397
sum de = 3.0493186101154812e-18
Info: CFL hydro = 0.00710150661144055 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00710150661144055 cfl multiplier : 0.63013698630137 [sph::Model][rank=0]
Info: Timestep 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.0663e+04 | 800 | 1 | 3.872e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 466.7574202785133 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9349723647554806, dt = 0.00710150661144055 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (1.1%)
patch tree reduce : 1273.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 396.33 us (95.6%)
LB move op cnt : 0
LB apply : 4.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4349197294499174e-18,-1.9939093359537894e-17,-5.092757415296822e-18)
sum a = (-6.025764166573088e-17,-1.2882523600263936e-16,-1.860902162702064e-17)
sum e = 4.144509919528177
sum de = -1.3552527156068805e-18
Info: CFL hydro = 0.008485946825145247 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008485946825145247 cfl multiplier : 0.7534246575342468 [sph::Model][rank=0]
Info: Timestep 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.5759e+04 | 800 | 1 | 5.076e-02 | 0.0% | 1.1% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 503.6118764384854 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.942073871366921, dt = 0.008485946825145247 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.3%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 404.90 us (95.5%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (73.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.906735715646915e-18,-2.2340112489295947e-17,-5.178086834229076e-18)
sum a = (4.8286996073075616e-17,-1.1192373889709356e-16,1.4546910660143632e-17)
sum e = 4.144510061917502
sum de = 3.198396408832238e-18
Info: CFL hydro = 0.009406781847941019 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009406781847941019 cfl multiplier : 0.8356164383561646 [sph::Model][rank=0]
Info: Timestep 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.0623e+04 | 800 | 1 | 3.879e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 787.5076688884236 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9505598181920663, dt = 0.009406781847941019 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.4%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 1142.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1071.00 ns (0.3%)
LB compute : 400.06 us (95.4%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1458388236212807e-18,-2.3160922522425963e-17,-4.863449229148102e-18)
sum a = (-4.724151176080417e-17,-5.852315623075905e-17,4.494683845650639e-17)
sum e = 4.144510175149543
sum de = 2.168404344971009e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010556028565809868
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5412655549101932e-18,-2.2509367112915825e-17,-4.651132035359453e-18)
sum a = (9.685558390934182e-17,1.6237659502109252e-16,-1.786609867732632e-17)
sum e = 4.144509612233564
sum de = -1.6398557858843255e-18
Info: CFL hydro = 0.005010691768533403 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005010691768533403 cfl multiplier : 0.44520547945205485 [sph::Model][rank=0]
Info: Timestep 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.5826e+04 | 800 | 1 | 5.055e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 669.9305927364593 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.959966600040007, dt = 0.005010691768533403 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (1.3%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 375.78 us (95.3%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.197464990805024e-19,-2.11523344669016e-17,-5.2279832470550685e-18)
sum a = (-2.593040746997596e-17,3.746967844667968e-17,-1.0888614264310146e-16)
sum e = 4.14450977038235
sum de = 3.699839913606784e-18
Info: CFL hydro = 0.007091331299134886 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007091331299134886 cfl multiplier : 0.6301369863013698 [sph::Model][rank=0]
Info: Timestep 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.0514e+04 | 800 | 1 | 3.900e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 462.56044186733254 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9649772918085406, dt = 0.007091331299134886 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.3%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.3%)
LB compute : 416.36 us (95.7%)
LB move op cnt : 0
LB apply : 3.63 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.67597228835748e-19,-2.0580163969354766e-17,-6.1968910758524746e-18)
sum a = (1.2311251799833666e-16,5.6078700073700324e-18,-5.472466308474132e-17)
sum e = 4.144509931987483
sum de = -1.0299920638612292e-18
Info: CFL hydro = 0.008478704219072075 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008478704219072075 cfl multiplier : 0.7534246575342465 [sph::Model][rank=0]
Info: Timestep 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.0681e+04 | 800 | 1 | 3.868e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 659.9363080131118 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9720686231076754, dt = 0.008478704219072075 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (1.2%)
patch tree reduce : 922.00 ns (0.2%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 387.16 us (95.8%)
LB move op cnt : 0
LB apply : 3.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.601878693259594e-19,-2.1230221550337295e-17,-6.473614896328333e-18)
sum a = (2.729492925862823e-16,-1.848919534481188e-17,-1.2326529650815282e-16)
sum e = 4.14451006975982
sum de = -2.0328790734103208e-19
Info: CFL hydro = 0.00940547880175264 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00940547880175264 cfl multiplier : 0.8356164383561643 [sph::Model][rank=0]
Info: Timestep 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.0806e+04 | 800 | 1 | 3.845e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 793.8186898975468 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9805473273267475, dt = 0.00940547880175264 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.74 us (1.1%)
patch tree reduce : 1293.00 ns (0.3%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 397.07 us (95.5%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.725099548164869e-18,-2.1071451726410687e-17,-7.926508568109565e-18)
sum a = (1.6414403268367177e-16,-1.7470671946037408e-17,1.1109094623574267e-16)
sum e = 4.144510171210737
sum de = -7.724940478959219e-19
Info: CFL hydro = 0.010026973055645386 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010026973055645386 cfl multiplier : 0.8904109589041095 [sph::Model][rank=0]
Info: Timestep 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.0019e+04 | 800 | 1 | 3.996e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 847.3019477796366 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9899528061285, dt = 0.010026973055645386 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (1.0%)
patch tree reduce : 1061.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 375.94 us (96.2%)
LB move op cnt : 0
LB apply : 2.81 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.233412875467653e-18,-2.1383000060153468e-17,-5.601878693259594e-18)
sum a = (-2.4798348668808686e-16,-7.800690971790365e-18,3.936293370557811e-17)
sum e = 4.144510236989329
sum de = 5.692061405548898e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011207349691664129
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.064557167489072e-18,-2.1519302456165932e-17,-6.057967479916692e-18)
sum a = (-6.89330644976452e-17,-9.877280442468199e-17,-7.757553510195211e-17)
sum e = 4.14450961288835
sum de = 3.6591823321385775e-19
Info: CFL hydro = 0.005224116343970257 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005224116343970257 cfl multiplier : 0.4634703196347032 [sph::Model][rank=0]
Info: Timestep 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.5587e+04 | 800 | 1 | 5.132e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 703.3218393720805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 2.9999797791841454, dt = 2.022081585462132e-05 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (1.1%)
patch tree reduce : 1452.00 ns (0.3%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 427.84 us (95.8%)
LB move op cnt : 0
LB apply : 4.20 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.5708232098210886e-18,-2.1842833418129587e-17,-6.507316038199547e-18)
sum a = (-9.042540604031416e-17,1.2131212810815e-16,-1.8309455921498737e-17)
sum e = 4.144509615191476
sum de = 2.358139725155972e-18
Info: CFL hydro = 0.007240003799642599 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007240003799642599 cfl multiplier : 0.6423135464231354 [sph::Model][rank=0]
Info: Timestep 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.0573e+04 | 800 | 1 | 3.889e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8719828783079377 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 413 [SPH][rank=0]
Info: time since start : 865.294496146 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15089529909605034 max=0.15143935284514326 delta=0.0005440537490929154
Number of particle pairs: 319600
Distance min=0.164405 max=2.239407 mean=0.935005
---------------- t = 3, dt = 0.007240003799642599 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.23 us (1.6%)
patch tree reduce : 1783.00 ns (0.3%)
gen split merge : 480.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.1%)
LB compute : 614.03 us (96.3%)
LB move op cnt : 0
LB apply : 4.04 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1649116788389097e-18,-2.0951625444201925e-17,-6.547757408445004e-18)
sum a = (-3.489491120771892e-17,8.018774805410311e-17,-4.7762756088412285e-17)
sum e = 4.144509933792507
sum de = 7.589415207398531e-19
Info: CFL hydro = 0.008589955245853185 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008589955245853185 cfl multiplier : 0.7615423642820902 [sph::Model][rank=0]
Info: Timestep 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.7157e+04 | 800 | 1 | 4.663e-02 | 0.0% | 1.1% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 558.967566145176 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0072400037996427, dt = 0.008589955245853185 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (0.7%)
patch tree reduce : 1102.00 ns (0.2%)
gen split merge : 721.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.1%)
LB compute : 605.13 us (97.4%)
LB move op cnt : 0
LB apply : 3.04 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0016483693294725e-18,-2.041090934573489e-17,-7.198563903691339e-18)
sum a = (-1.1904591354587682e-16,1.1783716592409592e-16,3.086725029697693e-17)
sum e = 4.144510051475679
sum de = -2.405573570202213e-18
Info: CFL hydro = 0.009496914565551613 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009496914565551613 cfl multiplier : 0.8410282428547268 [sph::Model][rank=0]
Info: Timestep 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.0220e+04 | 800 | 1 | 3.956e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 781.6172612106628 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.015829959045496, dt = 0.009496914565551613 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.05 us (1.0%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 396.97 us (96.3%)
LB move op cnt : 0
LB apply : 3.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7284941208613827e-18,-1.8928808017665273e-17,-6.6705793477089845e-18)
sum a = (5.773529842523645e-17,-9.394380525166892e-18,-6.535325431665845e-17)
sum e = 4.144510129901476
sum de = -1.0333801956502464e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010731630537798315
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.736532719942588e-18,-1.9371416347573887e-17,-7.07274630737214e-18)
sum a = (3.9252393960240528e-16,1.6056721815974023e-17,-2.6685313047891156e-17)
sum e = 4.14450961340575
sum de = 7.115076756936123e-20
Info: CFL hydro = 0.005046040937946367 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005046040937946367 cfl multiplier : 0.44700941428490887 [sph::Model][rank=0]
Info: Timestep 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.5898e+04 | 800 | 1 | 5.032e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 679.4160925239652 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0253268736110477, dt = 0.005046040937946367 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.93 us (1.0%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 396.47 us (96.1%)
LB move op cnt : 0
LB apply : 3.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.1950187901929626e-18,-1.933097497732843e-17,-7.11543442040901e-18)
sum a = (1.141360316323728e-16,2.4851970930097107e-16,-1.522992046873357e-16)
sum e = 4.144509758215485
sum de = -1.1655173354219173e-18
Info: CFL hydro = 0.00712280484715185 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00712280484715185 cfl multiplier : 0.6313396095232725 [sph::Model][rank=0]
Info: Timestep 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.0504e+04 | 800 | 1 | 3.902e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 465.5826664234985 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.030372914548994, dt = 0.00712280484715185 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.86 us (1.1%)
patch tree reduce : 1483.00 ns (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 416.52 us (95.8%)
LB move op cnt : 0
LB apply : 3.61 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.2654167309906105e-18,-1.7024319044809772e-17,-8.258277586975073e-18)
sum a = (1.0636604614539845e-16,1.3013134247871484e-16,1.666663759241662e-16)
sum e = 4.144509890759766
sum de = -2.702035101741218e-18
Info: CFL hydro = 0.00850381682666988 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00850381682666988 cfl multiplier : 0.7542264063488483 [sph::Model][rank=0]
Info: Timestep 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.0703e+04 | 800 | 1 | 3.864e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 663.5816297988027 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.037495719396146, dt = 0.00850381682666988 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.4%)
patch tree reduce : 1784.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 403.54 us (95.1%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (64.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.921465626083579e-18,-1.6218861754087755e-17,-5.843029086204726e-18)
sum a = (2.5642524826969412e-16,-2.528334554604865e-17,6.404714784058295e-18)
sum e = 4.144509992888463
sum de = 2.0161501727020484e-18
Info: CFL hydro = 0.009422689917928972 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009422689917928972 cfl multiplier : 0.836150937565899 [sph::Model][rank=0]
Info: Timestep 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.0539e+04 | 800 | 1 | 3.895e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 785.9576106114051 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.045999536222816, dt = 0.009422689917928972 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.2%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 399.83 us (95.4%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.017025570246862e-17,-1.7150511098260872e-17,-6.5155540951013995e-18)
sum a = (-5.893562076154952e-17,-7.400471189213102e-17,4.134006736202267e-18)
sum e = 4.144510058872014
sum de = -5.929230630780102e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011258867123223491
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.727846830380656e-18,-1.7420307461796537e-17,-6.473614896328333e-18)
sum a = (-8.264942923922935e-17,1.0453644859892342e-16,5.812173818535971e-17)
sum e = 4.1445096138634625
sum de = -1.582257545471033e-18
Info: CFL hydro = 0.005018622370582651 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005018622370582651 cfl multiplier : 0.4453836458552997 [sph::Model][rank=0]
Info: Timestep 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.5156e+04 | 800 | 1 | 5.278e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 642.6534789403757 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.055422226140745, dt = 0.005018622370582651 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.3%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 381.70 us (95.3%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.037347879152668e-18,-1.577419390995368e-17,-6.081183822094639e-18)
sum a = (-5.444456915007834e-17,1.3032306453024887e-16,-1.7997907587755957e-17)
sum e = 4.1445097391280274
sum de = 3.496552006265752e-18
Info: CFL hydro = 0.007101566270335911 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007101566270335911 cfl multiplier : 0.6302557639035332 [sph::Model][rank=0]
Info: Timestep 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.0325e+04 | 800 | 1 | 3.936e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 459.02579670148367 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0604408485113277, dt = 0.007101566270335911 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.93 us (1.2%)
patch tree reduce : 1783.00 ns (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 386.59 us (95.4%)
LB move op cnt : 0
LB apply : 3.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.745271316268812e-18,-1.524227755408635e-17,-6.2669145595182195e-18)
sum a = (-1.4098498244690531e-16,-1.6559992201250822e-17,-9.810177724431293e-17)
sum e = 4.144509855433522
sum de = 5.522654816098038e-19
Info: CFL hydro = 0.008491431540836094 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008491431540836094 cfl multiplier : 0.7535038426023556 [sph::Model][rank=0]
Info: Timestep 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.0493e+04 | 800 | 1 | 3.904e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 654.8870354666401 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0675424147816637, dt = 0.008491431540836094 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.76 us (1.2%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 393.69 us (95.8%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (73.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.517051923629009e-18,-1.584534076501513e-17,-7.396277269335796e-18)
sum a = (-6.121175843781814e-17,1.0518351052285073e-16,-1.225223735584585e-18)
sum e = 4.144509948204392
sum de = -4.336808689942018e-19
Info: CFL hydro = 0.009421313006905716 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009421313006905716 cfl multiplier : 0.8356692284015704 [sph::Model][rank=0]
Info: Timestep 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.0776e+04 | 800 | 1 | 3.851e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 793.8835653763152 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0760338463225, dt = 0.009421313006905716 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (1.1%)
patch tree reduce : 1243.00 ns (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.2%)
LB compute : 414.99 us (95.8%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.92540965522325e-18,-1.4149237186063304e-17,-6.812124143568084e-18)
sum a = (-5.677818599609396e-17,-2.282211370948069e-16,-8.034052656391928e-17)
sum e = 4.144510014681196
sum de = -3.2526065174565133e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011577697441090511
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.244447131604077e-18,-1.5486049146954798e-17,-7.309403214734444e-18)
sum a = (8.816668062067901e-17,7.9037415744899e-17,2.282810502359113e-16)
sum e = 4.1445096169161575
sum de = 1.1655173354219173e-18
Info: CFL hydro = 0.005024165943567212 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005024165943567212 cfl multiplier : 0.44522307613385675 [sph::Model][rank=0]
Info: Timestep 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.5776e+04 | 800 | 1 | 5.071e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 668.8576793190896 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0854551593294057, dt = 0.005024165943567212 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.2%)
patch tree reduce : 1533.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 419.86 us (95.8%)
LB move op cnt : 0
LB apply : 3.67 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.084728935593016e-18,-1.3832820909605794e-17,-4.5653813521538086e-18)
sum a = (-5.797045750407114e-17,8.087075786269304e-17,-7.808180114428413e-17)
sum e = 4.1445097288432
sum de = -1.8228149024912543e-18
Info: CFL hydro = 0.007110366710406872 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007110366710406872 cfl multiplier : 0.6301487174225712 [sph::Model][rank=0]
Info: Timestep 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.0725e+04 | 800 | 1 | 3.860e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 468.57280420467305 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0904793252729728, dt = 0.007110366710406872 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.46 us (1.0%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 424.19 us (96.0%)
LB move op cnt : 0
LB apply : 3.72 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.4421604972485336e-18,-1.3016129904926704e-17,-5.757652860130984e-18)
sum a = (2.1022772299263376e-17,-1.6497682534502266e-16,-1.2771983854926353e-17)
sum e = 4.144509839689816
sum de = 7.047314121155779e-19
Info: CFL hydro = 0.008500174856820489 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008500174856820489 cfl multiplier : 0.7534324782817142 [sph::Model][rank=0]
Info: Timestep 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.9752e+04 | 800 | 1 | 4.050e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 631.9941618726924 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.0975896919833796, dt = 0.008500174856820489 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.62 us (1.1%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 402.92 us (95.7%)
LB move op cnt : 0
LB apply : 3.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.815119800623303e-18,-1.5548957945114397e-17,-5.709722347247479e-18)
sum a = (-9.271558585902911e-18,-5.780419853750649e-17,-1.9168610364935557e-16)
sum e = 4.144509936067861
sum de = 3.2390539903004445e-18
Info: CFL hydro = 0.00942780715035625 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00942780715035625 cfl multiplier : 0.8356216521878096 [sph::Model][rank=0]
Info: Timestep 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.0576e+04 | 800 | 1 | 3.888e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 787.0601911846585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1060898668402, dt = 0.00942780715035625 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (1.1%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 382.05 us (95.6%)
LB move op cnt : 0
LB apply : 3.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.437667011665704e-18,-1.539468160677062e-17,-8.242550387435172e-18)
sum a = (2.3398927475463114e-16,3.067552824544291e-18,1.4956566762444833e-16)
sum e = 4.144510016062209
sum de = 4.336808689942018e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011860182497528545
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.522094865654994e-18,-1.5497282860911868e-17,-6.564982436512514e-18)
sum a = (1.0518351052285073e-16,-1.1214541751917977e-16,1.3335167381307532e-17)
sum e = 4.1445096227775675
sum de = 2.6834003769016235e-18
Info: CFL hydro = 0.00502529616863145 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00502529616863145 cfl multiplier : 0.44520721739593655 [sph::Model][rank=0]
Info: Timestep 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.5624e+04 | 800 | 1 | 5.120e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 662.8623435927561 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1155176739905563, dt = 0.00502529616863145 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.1%)
patch tree reduce : 1684.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 426.86 us (95.8%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.492138295102805e-18,-1.6670831512293927e-17,-7.180589961360025e-18)
sum a = (1.0240803426119029e-16,-2.348595131291723e-18,1.3144943158301122e-17)
sum e = 4.144509732981327
sum de = 2.2632720350634905e-18
Info: CFL hydro = 0.00711454617318944 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00711454617318944 cfl multiplier : 0.6301381449306244 [sph::Model][rank=0]
Info: Timestep 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.0140e+04 | 800 | 1 | 3.972e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 455.4383308414484 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1205429701591876, dt = 0.00711454617318944 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.2%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 400.26 us (95.5%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (73.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.37435929786481e-18,-1.651730408821395e-17,-6.98137876718796e-18)
sum a = (-1.9957816216133012e-16,-5.130961404179162e-17,-4.025563950803338e-17)
sum e = 4.144509852503515
sum de = 2.4123498337802474e-18
Info: CFL hydro = 0.008502629164839329 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008502629164839329 cfl multiplier : 0.7534254299537496 [sph::Model][rank=0]
Info: Timestep 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.0436e+04 | 800 | 1 | 3.915e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 654.2828042949375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.127657516332377, dt = 0.008502629164839329 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.3%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 1082.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 413.04 us (95.3%)
LB move op cnt : 0
LB apply : 4.01 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.556943837431308e-18,-1.6735238138981135e-17,-7.369316355838824e-18)
sum a = (-2.1454596263773203e-16,-4.487494268718113e-17,8.586152251668796e-17)
sum e = 4.144509964948329
sum de = -7.995991022080595e-19
Info: CFL hydro = 0.00942419934543015 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00942419934543015 cfl multiplier : 0.8356169533024996 [sph::Model][rank=0]
Info: Timestep 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.0299e+04 | 800 | 1 | 3.941e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 776.6593815222471 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1361601454972163, dt = 0.00942419934543015 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.3%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 405.41 us (95.5%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.085526766875605e-18,-1.7511113316282866e-17,-6.160568734057944e-18)
sum a = (-1.239363236885219e-16,1.3421142738792318e-16,7.623947205532442e-17)
sum e = 4.14451006598573
sum de = -2.642742795433417e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01120121967733196
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.844925830373631e-18,-1.6798146937140734e-17,-6.311849415346505e-18)
sum a = (7.153329482157532e-17,-1.2536225644680615e-16,2.569854361390201e-16)
sum e = 4.144509630090958
sum de = 2.6291902682773483e-18
Info: CFL hydro = 0.0050194945546579404 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0050194945546579404 cfl multiplier : 0.44520565110083316 [sph::Model][rank=0]
Info: Timestep 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.5614e+04 | 800 | 1 | 5.124e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 662.1820978947659 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1455843448426464, dt = 0.0050194945546579404 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.5%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 378.14 us (95.0%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (73.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.998253796632959e-18,-1.833042552088527e-17,-4.116032793870953e-18)
sum a = (-1.228369175492565e-16,-1.1816069688605959e-16,-4.3113496338712344e-17)
sum e = 4.144509751908302
sum de = 1.2061749168901237e-18
Info: CFL hydro = 0.007103395876790986 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007103395876790986 cfl multiplier : 0.6301371007338887 [sph::Model][rank=0]
Info: Timestep 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.0666e+04 | 800 | 1 | 3.871e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 466.8004090331612 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1506038393973044, dt = 0.007103395876790986 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.3%)
patch tree reduce : 1522.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 393.08 us (95.4%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.788008346324469e-18,-1.9338464119966477e-17,-5.08662567976192e-18)
sum a = (-7.828850148109425e-17,6.113536918291005e-17,-3.267063584421879e-17)
sum e = 4.144509890164611
sum de = -3.6591823321385775e-19
Info: CFL hydro = 0.008492502310103357 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008492502310103357 cfl multiplier : 0.7534247338225925 [sph::Model][rank=0]
Info: Timestep 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.0152e+04 | 800 | 1 | 3.970e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 644.1786471230807 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1577072352740956, dt = 0.008492502310103357 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.2%)
patch tree reduce : 1803.00 ns (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 410.06 us (95.3%)
LB move op cnt : 0
LB apply : 4.01 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (75.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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1948682493911002e-18,-1.8120729527019937e-17,-5.221430247246777e-18)
sum a = (1.3947779249099824e-16,1.0520747577929249e-16,6.079985559272552e-17)
sum e = 4.14451002349557
sum de = 5.149960319306146e-19
Info: CFL hydro = 0.009419984865645378 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009419984865645378 cfl multiplier : 0.8356164892150616 [sph::Model][rank=0]
Info: Timestep 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.0624e+04 | 800 | 1 | 3.879e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 788.160765788271 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.166199737584199, dt = 0.009419984865645378 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.2%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 401.32 us (95.4%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.4296284125844996e-18,-1.6911981905239058e-17,-4.348196215650428e-18)
sum a = (1.566429074174033e-16,2.236452709429598e-16,-1.152968487412702e-16)
sum e = 4.14451014339507
sum de = 1.2197274440461925e-19
Info: CFL hydro = 0.0100414700368211 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0100414700368211 cfl multiplier : 0.8904109928100411 [sph::Model][rank=0]
Info: Timestep 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.0064e+04 | 800 | 1 | 3.987e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 850.5133062790653 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.175619722449844, dt = 0.0100414700368211 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.5%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 392.85 us (95.0%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.028560365807658e-18,-1.4015181532842253e-17,-6.332819014733038e-18)
sum a = (-2.211993169573735e-17,-4.4863708973224064e-17,1.1822061002716397e-16)
sum e = 4.1445102480400875
sum de = -1.7618285302889447e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01075192140280847
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.333567928996843e-18,-1.541714903468476e-17,-5.324031501388029e-18)
sum a = (-4.477309034730369e-17,-2.2230771006780454e-17,7.656899433139851e-18)
sum e = 4.144509645346424
sum de = -2.3852447794681098e-18
Info: CFL hydro = 0.005231067772868311 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005231067772868311 cfl multiplier : 0.46347033093668033 [sph::Model][rank=0]
Info: Timestep 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.5591e+04 | 800 | 1 | 5.131e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 704.4841583658384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1856611924866653, dt = 0.005231067772868311 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.3%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 415.52 us (95.4%)
LB move op cnt : 0
LB apply : 3.69 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (74.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.066205536818544e-18,-1.560138194358073e-17,-5.878976970867355e-18)
sum a = (-1.9457391705058672e-16,2.552434615614102e-16,-6.021270680990258e-17)
sum e = 4.144509806121457
sum de = -1.4907779871675686e-19
Info: CFL hydro = 0.007252797826665669 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007252797826665669 cfl multiplier : 0.6423135539577869 [sph::Model][rank=0]
Info: Timestep 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.0143e+04 | 800 | 1 | 3.972e-02 | 0.1% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 474.1628454258094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1908922602595338, dt = 0.007252797826665669 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.2%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 419.58 us (95.7%)
LB move op cnt : 0
LB apply : 3.61 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.049379424392329e-18,-1.2909784079466428e-17,-6.472865982064529e-18)
sum a = (-7.24889094221902e-17,6.294774170131757e-17,-4.9272567244242676e-17)
sum e = 4.144509970632564
sum de = -8.809142651444724e-19
Info: CFL hydro = 0.008605534612444296 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008605534612444296 cfl multiplier : 0.7615423693051913 [sph::Model][rank=0]
Info: Timestep 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.0660e+04 | 800 | 1 | 3.872e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 674.2780467579003 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.1981450580861996, dt = 0.008605534612444296 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.3%)
patch tree reduce : 1904.00 ns (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 390.05 us (95.3%)
LB move op cnt : 0
LB apply : 3.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.990964111815559e-18,-1.2959212420877543e-17,-6.642869519948208e-18)
sum a = (-1.2671629343576515e-17,-3.09571200086335e-17,-9.715514961486372e-17)
sum e = 4.144510120346789
sum de = -5.014435047745458e-19
Info: CFL hydro = 0.009514015714658455 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009514015714658455 cfl multiplier : 0.8410282462034608 [sph::Model][rank=0]
Info: Timestep 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.0496e+04 | 800 | 1 | 3.903e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 793.6896905760537 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.206750592698644, dt = 0.009514015714658455 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.2%)
patch tree reduce : 1843.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 412.49 us (95.6%)
LB move op cnt : 0
LB apply : 3.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (74.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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.092067537429201e-18,-1.383693993805672e-17,-7.854612798784309e-18)
sum a = (3.340157616569223e-17,7.015828823322978e-17,6.396326944303682e-17)
sum e = 4.14451024279666
sum de = 1.1655173354219173e-18
Info: CFL hydro = 0.010127865351934202 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010127865351934202 cfl multiplier : 0.8940188308023073 [sph::Model][rank=0]
Info: Timestep 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.0288e+04 | 800 | 1 | 3.943e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 868.5878044282434 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.216264608413302, dt = 0.010127865351934202 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.2%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 418.25 us (95.7%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.588597694331756e-18,-1.256228786106102e-17,-6.5627356937210996e-18)
sum a = (-1.510410287241437e-17,1.2561389163944455e-16,4.2106955568158746e-17)
sum e = 4.144510334856107
sum de = -2.9002408113987244e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011022104546740578
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.650008663963746e-18,-1.2153380673023622e-17,-6.702782661052589e-18)
sum a = (-1.6710374185422817e-16,-6.446653982831362e-17,4.5138560508040406e-17)
sum e = 4.144509651188246
sum de = 1.4094628242311558e-18
Info: CFL hydro = 0.0052644675738906105 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0052644675738906105 cfl multiplier : 0.4646729436007691 [sph::Model][rank=0]
Info: Timestep 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.5692e+04 | 800 | 1 | 5.098e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 715.1601873759024 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2263924737652365, dt = 0.0052644675738906105 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (1.1%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 405.63 us (95.8%)
LB move op cnt : 0
LB apply : 3.58 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (73.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.99341031242762e-18,-1.3573322117197444e-17,-6.287509701772851e-18)
sum a = (1.6480307723581995e-16,7.871388478293535e-17,-6.852865079519062e-17)
sum e = 4.144509833906498
sum de = 5.827586677109586e-19
Info: CFL hydro = 0.007283526277885836 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007283526277885836 cfl multiplier : 0.6431152957338461 [sph::Model][rank=0]
Info: Timestep 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.0359e+04 | 800 | 1 | 3.930e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 482.2981002955309 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.231656941339127, dt = 0.007283526277885836 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.2%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 437.20 us (95.5%)
LB move op cnt : 0
LB apply : 4.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.972790711663597e-18,-1.2598235745723649e-17,-7.336738585363317e-18)
sum a = (1.6392235406158557e-17,3.737381742091267e-17,-1.9735388679782997e-17)
sum e = 4.144510001994705
sum de = -1.0842021724855044e-18
Info: CFL hydro = 0.008627633310226205 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008627633310226205 cfl multiplier : 0.7620768638225641 [sph::Model][rank=0]
Info: Timestep 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.0323e+04 | 800 | 1 | 3.936e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 666.1167479260745 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.238940467617013, dt = 0.008627633310226205 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.4%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 401.37 us (95.3%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.372910386355985e-18,-1.2291929811827502e-17,-7.110940934826182e-18)
sum a = (1.855989285131505e-16,4.8098269678596816e-17,-4.793051288350455e-18)
sum e = 4.144510139187947
sum de = 5.149960319306146e-19
Info: CFL hydro = 0.00951750822669454 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00951750822669454 cfl multiplier : 0.8413845758817095 [sph::Model][rank=0]
Info: Timestep 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.0678e+04 | 800 | 1 | 3.869e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 802.8284413435948 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2475681009272392, dt = 0.00951750822669454 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.90 us (1.1%)
patch tree reduce : 1994.00 ns (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 414.23 us (95.6%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.11843007746423e-18,-1.1918221594188927e-17,-7.090533021137504e-18)
sum a = (1.1736984342348177e-16,-1.6255633444440568e-16,7.944482510440879e-18)
sum e = 4.144510232594648
sum de = -1.9109063290057016e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01085768658185808
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.800890429611013e-18,-1.2920268879159695e-17,-7.078737621482578e-18)
sum a = (-1.7335268247141506e-16,-1.5643321142353796e-16,-9.789807256455803e-17)
sum e = 4.1445096489853395
sum de = -4.0657581468206416e-20
Info: CFL hydro = 0.005054424320401484 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005054424320401484 cfl multiplier : 0.44712819196056985 [sph::Model][rank=0]
Info: Timestep 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.5445e+04 | 800 | 1 | 5.180e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 661.473374751503 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.257085609153934, dt = 0.005054424320401484 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.4%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 390.37 us (95.2%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.4335724417241706e-18,-1.39597618773207e-17,-8.05494736435208e-18)
sum a = (-2.0200314654752991e-16,-1.0832295911672028e-17,1.1650709419157867e-16)
sum e = 4.144509812580835
sum de = 3.7269449679189215e-19
Info: CFL hydro = 0.00713234727511927 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00713234727511927 cfl multiplier : 0.6314187946403799 [sph::Model][rank=0]
Info: Timestep 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.0670e+04 | 800 | 1 | 3.870e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 470.14556182722566 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2621400334743353, dt = 0.00713234727511927 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (1.4%)
patch tree reduce : 1874.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 422.68 us (95.2%)
LB move op cnt : 0
LB apply : 3.95 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7874588898813116e-18,-1.3493188290970335e-17,-6.772689126864615e-18)
sum a = (3.002966458433769e-16,-3.3287741197593906e-17,6.3088537582912866e-18)
sum e = 4.144509963588894
sum de = -1.2807138162485021e-18
Info: CFL hydro = 0.008511363653751883 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008511363653751883 cfl multiplier : 0.7542791964269199 [sph::Model][rank=0]
Info: Timestep 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.9882e+04 | 800 | 1 | 4.024e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 638.131109646687 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2692723807494546, dt = 0.008511363653751883 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.3%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 389.71 us (95.3%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.012084252003955e-18,-1.3966502105694942e-17,-7.344648992274755e-18)
sum a = (-1.395856361449861e-16,6.901993855224655e-18,-1.727295858039295e-17)
sum e = 4.144510078526018
sum de = 1.362028979184915e-18
Info: CFL hydro = 0.009423441110238281 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009423441110238281 cfl multiplier : 0.83618613095128 [sph::Model][rank=0]
Info: Timestep 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.9764e+04 | 800 | 1 | 4.048e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 756.967729464272 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2777837444032065, dt = 0.009423441110238281 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.2%)
patch tree reduce : 1783.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 402.04 us (95.6%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.026163082214382e-18,-1.3698016342120937e-17,-7.192947046712804e-18)
sum a = (-5.40296706479305e-17,-6.892407752647955e-17,-5.639623972155354e-17)
sum e = 4.1445101473461206
sum de = -1.4433441421213278e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.012053746276400407
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.274428160665659e-18,-1.3944221906346752e-17,-7.409008811820477e-18)
sum a = (-6.851666816696975e-17,4.5773639803746845e-17,-7.175796910071675e-17)
sum e = 4.144509646501944
sum de = 2.0328790734103208e-20
Info: CFL hydro = 0.00501420978139186 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00501420978139186 cfl multiplier : 0.44539537698376 [sph::Model][rank=0]
Info: Timestep 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.5242e+04 | 800 | 1 | 5.249e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 646.3586913778827 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2872071855134446, dt = 0.00501420978139186 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.2%)
patch tree reduce : 1764.00 ns (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 392.54 us (95.4%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.872261201002504e-18,-1.323743406988101e-17,-8.181888332066987e-18)
sum a = (-4.189126826018298e-17,-1.5805086623335626e-16,-1.5098111558303932e-16)
sum e = 4.144509787639031
sum de = 7.352245982167327e-19
Info: CFL hydro = 0.007091628555496506 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007091628555496506 cfl multiplier : 0.63026358465584 [sph::Model][rank=0]
Info: Timestep 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.0395e+04 | 800 | 1 | 3.923e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 460.1864564604207 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.2922213952948365, dt = 0.007091628555496506 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.2%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.2%)
LB compute : 406.07 us (95.5%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (73.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.426657214038673e-18,-1.4713216433849775e-17,-9.13769016124781e-18)
sum a = (1.6955418932539734e-17,1.6763696881005717e-16,-4.265216515220861e-17)
sum e = 4.1445099119214985
sum de = -1.4568966692773966e-18
Info: CFL hydro = 0.00847318841136991 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00847318841136991 cfl multiplier : 0.7535090564372267 [sph::Model][rank=0]
Info: Timestep 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.0979e+04 | 800 | 1 | 3.813e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 669.4772484758736 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.299313023850333, dt = 0.00847318841136991 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.3%)
patch tree reduce : 1754.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 375.12 us (95.2%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.050877252919939e-18,-1.2538135376053316e-17,-9.104737933640402e-18)
sum a = (-4.492287320006464e-17,-1.118218865572161e-16,1.1056970190813455e-17)
sum e = 4.1445100021463395
sum de = -2.5038293920837118e-18
Info: CFL hydro = 0.00939232286257606 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00939232286257606 cfl multiplier : 0.8356727042914844 [sph::Model][rank=0]
Info: Timestep 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.0417e+04 | 800 | 1 | 3.918e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 778.4863138681036 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.307786212261703, dt = 0.00939232286257606 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.2%)
patch tree reduce : 1803.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 415.44 us (95.5%)
LB move op cnt : 0
LB apply : 4.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2970950464004496e-18,-1.4576118316432017e-17,-8.883808225817997e-18)
sum a = (1.0136105212039125e-16,-5.993710636082244e-17,-4.459634658104576e-17)
sum e = 4.144510053567016
sum de = 2.0383847875674738e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011924246834002308
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.277798274852781e-18,-1.412527192962155e-17,-9.22418975871726e-18)
sum a = (2.2938345203223187e-16,-6.894804278292129e-17,8.001399994490041e-17)
sum e = 4.14450964576461
sum de = -8.593149249894877e-19
Info: CFL hydro = 0.005003255133798405 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005003255133798405 cfl multiplier : 0.44522423476382816 [sph::Model][rank=0]
Info: Timestep 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.5027e+04 | 800 | 1 | 5.324e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 635.117422870816 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.317178535124279, dt = 0.005003255133798405 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (1.5%)
patch tree reduce : 1783.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 397.23 us (94.9%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.781992573704638e-18,-1.494683087701537e-17,-8.189751931836937e-18)
sum a = (9.067254774736973e-17,-1.8956517845426048e-16,-1.2424936985079227e-16)
sum e = 4.144509760816909
sum de = -2.558039500707987e-18
Info: CFL hydro = 0.007080921875736994 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007080921875736994 cfl multiplier : 0.6301494898425521 [sph::Model][rank=0]
Info: Timestep 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.0544e+04 | 800 | 1 | 3.894e-02 | 0.1% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 462.54544394281874 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3221817902580772, dt = 0.007080921875736994 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.4%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 1223.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 399.15 us (95.1%)
LB move op cnt : 0
LB apply : 4.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (74.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.0021733672632374e-18,-1.6485100774870345e-17,-9.497730693571949e-18)
sum a = (-2.040162280886371e-16,-7.958861664305931e-17,-9.604750541869649e-17)
sum e = 4.144509862191339
sum de = -1.1858461261560205e-19
Info: CFL hydro = 0.008466781655110668 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008466781655110668 cfl multiplier : 0.7534329932283681 [sph::Model][rank=0]
Info: Timestep 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.0091e+04 | 800 | 1 | 3.982e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 640.1747501935348 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.329262712133814, dt = 0.008466781655110668 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.5%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.2%)
LB compute : 406.44 us (95.2%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1270915085167696e-18,-1.6282145009379256e-17,-1.0157149702852037e-17)
sum a = (-1.745389626652818e-16,-1.395496882603235e-16,3.64504061336414e-17)
sum e = 4.144509938592552
sum de = -2.947674656444965e-19
Info: CFL hydro = 0.009393198531371785 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009393198531371785 cfl multiplier : 0.8356219954855787 [sph::Model][rank=0]
Info: Timestep 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.0144e+04 | 800 | 1 | 3.971e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 767.5128017381815 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.337729493788925, dt = 0.009393198531371785 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.3%)
patch tree reduce : 1803.00 ns (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 380.68 us (95.2%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8685410881928725e-18,-1.798218038821606e-17,-9.315744527467392e-18)
sum a = (1.2569777003699069e-17,-1.0832295911672028e-16,-1.2678519354803518e-16)
sum e = 4.144509989281379
sum de = -1.0706496453294356e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011057621460461546
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2010590213221855e-18,-1.7924513989903092e-17,-1.0091994161901025e-17)
sum a = (-6.676720444672184e-17,-1.1925111605415933e-16,-1.9465779544813284e-17)
sum e = 4.144509648405514
sum de = -7.182839392716467e-19
Info: CFL hydro = 0.005008292002825572 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005008292002825572 cfl multiplier : 0.4452073318285262 [sph::Model][rank=0]
Info: Timestep 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.5396e+04 | 800 | 1 | 5.196e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 650.7725102121698 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.347122692320297, dt = 0.005008292002825572 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.4%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 411.98 us (95.3%)
LB move op cnt : 0
LB apply : 3.95 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0145793696348005e-18,-1.8775280593585296e-17,-9.847099197636867e-18)
sum a = (3.874103530091464e-16,-7.316592791666969e-17,-1.3883971753823659e-16)
sum e = 4.144509744339761
sum de = -3.903127820947816e-18
Info: CFL hydro = 0.007091547958953918 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007091547958953918 cfl multiplier : 0.6301382212190174 [sph::Model][rank=0]
Info: Timestep 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.0704e+04 | 800 | 1 | 3.864e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 466.61093540534955 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3521309843231224, dt = 0.007091547958953918 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.4%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 393.94 us (95.2%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.8258040581372166e-18,-1.879625019297183e-17,-1.1066893304808869e-17)
sum a = (-4.290979165895745e-17,-7.33576499682037e-17,-1.6883523163214478e-17)
sum e = 4.144509836901379
sum de = -5.488773498207866e-19
Info: CFL hydro = 0.008482416967807705 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008482416967807705 cfl multiplier : 0.7534254808126782 [sph::Model][rank=0]
Info: Timestep 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.0482e+04 | 800 | 1 | 3.906e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 653.636391484573 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.359222532282076, dt = 0.008482416967807705 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (1.6%)
patch tree reduce : 1854.00 ns (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.2%)
LB compute : 422.94 us (94.8%)
LB move op cnt : 0
LB apply : 4.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.722852805373455e-18,-1.945379691659241e-17,-1.0550142462783585e-17)
sum a = (7.289032746758954e-17,2.6385747342369254e-17,-1.188556893228704e-16)
sum e = 4.144509916568032
sum de = -4.0657581468206416e-20
Info: CFL hydro = 0.009409635910544166 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009409635910544166 cfl multiplier : 0.8356169872084521 [sph::Model][rank=0]
Info: Timestep 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.0426e+04 | 800 | 1 | 3.917e-02 | 0.1% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 779.6856884850766 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.367704949249884, dt = 0.009409635910544166 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (1.4%)
patch tree reduce : 1753.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.2%)
LB compute : 412.95 us (95.2%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 us (76.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.169006248780444e-18,-1.8728847909229402e-17,-1.2435908579043967e-17)
sum a = (2.5986725822614076e-16,-1.6828403073398447e-16,-2.2731045735002032e-17)
sum e = 4.144509983254589
sum de = -1.0232158002831948e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011401460476217621
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.655051605989732e-18,-1.9690453823954712e-17,-1.17445670992692e-17)
sum a = (1.6643870598796956e-16,1.5156826436586226e-16,-1.2731542484680896e-17)
sum e = 4.144509654464788
sum de = -2.6630715861675203e-18
Info: CFL hydro = 0.005017218567500665 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005017218567500665 cfl multiplier : 0.4452056624028174 [sph::Model][rank=0]
Info: Timestep 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.5091e+04 | 800 | 1 | 5.301e-02 | 0.1% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 639.0161079745658 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.377114585160428, dt = 0.005017218567500665 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.2%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 417.73 us (95.7%)
LB move op cnt : 0
LB apply : 3.56 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.353788614119572e-18,-1.7789709422418236e-17,-1.2002942520281841e-17)
sum a = (1.9483753487144598e-17,-1.0202009667253943e-16,1.0830498517438896e-16)
sum e = 4.144509746522189
sum de = -7.453889935837843e-19
Info: CFL hydro = 0.0071036963260821175 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0071036963260821175 cfl multiplier : 0.6301371082685449 [sph::Model][rank=0]
Info: Timestep 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.0132e+04 | 800 | 1 | 3.974e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 454.52238382197066 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3821318037279284, dt = 0.0071036963260821175 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.3%)
patch tree reduce : 1913.00 ns (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 398.89 us (95.2%)
LB move op cnt : 0
LB apply : 4.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.066205536818544e-18,-1.8400823461682917e-17,-1.0818206962084201e-17)
sum a = (1.308143522873048e-16,1.2213892945539047e-16,-2.3893360672427018e-17)
sum e = 4.144509847870092
sum de = 1.043544591017298e-18
Info: CFL hydro = 0.008490905272400229 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008490905272400229 cfl multiplier : 0.7534247388456965 [sph::Model][rank=0]
Info: Timestep 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.0636e+04 | 800 | 1 | 3.877e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 659.6722447179421 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3892355000540104, dt = 0.008490905272400229 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.3%)
patch tree reduce : 1874.00 ns (0.5%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 396.02 us (95.4%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.898049826084983e-18,-1.709321915707981e-17,-1.1827977425400455e-17)
sum a = (1.331749300468174e-16,1.3528387261369159e-17,-1.228818524050848e-16)
sum e = 4.144509945564185
sum de = -1.7618285302889447e-19
Info: CFL hydro = 0.009415898700887892 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009415898700887892 cfl multiplier : 0.8356164925637977 [sph::Model][rank=0]
Info: Timestep 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.0772e+04 | 800 | 1 | 3.851e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 793.6732411736654 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.3977264053264107, dt = 0.009415898700887892 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.2%)
patch tree reduce : 1412.00 ns (0.3%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 405.07 us (95.6%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.02441687884734e-18,-1.7731294109841464e-17,-1.3152245072373219e-17)
sum a = (-2.7188583433167955e-17,2.538459875451505e-16,3.998603037306367e-17)
sum e = 4.144510037149588
sum de = 1.4772254600114998e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010995676782150169
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.506168208294448e-18,-1.579010833805953e-17,-1.2333307324902715e-17)
sum a = (1.566129508468511e-17,1.470268482701502e-16,-8.327926613508916e-18)
sum e = 4.144509662223203
sum de = 9.622294280808852e-19
Info: CFL hydro = 0.00501813849861374 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00501813849861374 cfl multiplier : 0.44520549752126587 [sph::Model][rank=0]
Info: Timestep 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.5537e+04 | 800 | 1 | 5.149e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 658.3346039488772 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.407142304027299, dt = 0.00501813849861374 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.4%)
patch tree reduce : 1844.00 ns (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 389.49 us (95.3%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (74.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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.386341926085686e-18,-1.6278400438060233e-17,-1.2489643177471958e-17)
sum a = (-8.146988927373686e-17,-1.2761499055233085e-18,-5.672576199762764e-17)
sum e = 4.144509766921315
sum de = -2.995108501491206e-18
Info: CFL hydro = 0.007103821692841109 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007103821692841109 cfl multiplier : 0.6301369983475106 [sph::Model][rank=0]
Info: Timestep 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.0233e+04 | 800 | 1 | 3.954e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.8965181522369 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4121604425259124, dt = 0.007103821692841109 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.3%)
patch tree reduce : 1743.00 ns (0.4%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 390.89 us (95.4%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.040343536207888e-18,-1.6642372770269344e-17,-1.2980930934527881e-17)
sum a = (1.1602778906274365e-16,4.116631925281997e-17,3.6271415624592066e-17)
sum e = 4.144509889727358
sum de = 1.4501204056993622e-18
Info: CFL hydro = 0.008497137780483898 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008497137780483898 cfl multiplier : 0.7534246655650071 [sph::Model][rank=0]
Info: Timestep 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.0534e+04 | 800 | 1 | 3.896e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 656.4287411479652 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4192642642187536, dt = 0.008497137780483898 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.3%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 406.45 us (95.5%)
LB move op cnt : 0
LB apply : 3.56 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.02441687884734e-18,-1.6212495982845413e-17,-1.2296423297410331e-17)
sum a = (1.3624248287136169e-16,-7.925010739581955e-17,-4.051326601478222e-17)
sum e = 4.144510011785122
sum de = 1.3552527156068805e-18
Info: CFL hydro = 0.009430852016563032 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009430852016563032 cfl multiplier : 0.8356164437100047 [sph::Model][rank=0]
Info: Timestep 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.0823e+04 | 800 | 1 | 3.842e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 796.2083968451934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4277614019992377, dt = 0.009430852016563032 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.2%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 392.55 us (95.6%)
LB move op cnt : 0
LB apply : 3.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0926659108911428e-17,-1.7253486809534027e-17,-1.3251288983761399e-17)
sum a = (-7.056569759273958e-17,-1.9092520675732994e-16,-2.1692151868252072e-16)
sum e = 4.144510125497406
sum de = -2.358139725155972e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010232804238199455
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.527687264124138e-18,-1.7614463484687923e-17,-1.3938792277934167e-17)
sum a = (-1.8054225940394075e-16,-4.685507200068092e-17,1.6514458214011492e-16)
sum e = 4.144509669066832
sum de = -1.6534083130403943e-18
Info: CFL hydro = 0.005030739967107337 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005030739967107337 cfl multiplier : 0.4452054812366682 [sph::Model][rank=0]
Info: Timestep 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.4996e+04 | 800 | 1 | 5.335e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 636.4330169800224 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.437192254015801, dt = 0.005030739967107337 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.4%)
patch tree reduce : 1953.00 ns (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 384.48 us (95.1%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (73.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.15867198988904e-18,-1.6977886360453878e-17,-1.1314596697562292e-17)
sum a = (-1.717350276615968e-16,5.701783856051149e-17,-8.363874498171544e-18)
sum e = 4.144509797054796
sum de = -2.5614276324970042e-18
Info: CFL hydro = 0.007125153506892398 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007125153506892398 cfl multiplier : 0.6301369874911121 [sph::Model][rank=0]
Info: Timestep 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.0629e+04 | 800 | 1 | 3.878e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 467.0006363349589 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.442222993982908, dt = 0.007125153506892398 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.2%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 414.65 us (95.6%)
LB move op cnt : 0
LB apply : 3.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.22852047424353e-18,-1.6425187633765964e-17,-1.1944433593422094e-17)
sum a = (-2.6305463733289383e-16,-1.8338364012081601e-16,2.863848144789397e-18)
sum e = 4.144509944087362
sum de = -1.6398557858843255e-18
Info: CFL hydro = 0.008528466607093017 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008528466607093017 cfl multiplier : 0.7534246583274081 [sph::Model][rank=0]
Info: Timestep 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.0190e+04 | 800 | 1 | 3.962e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 647.3461995934207 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4493481474898005, dt = 0.008528466607093017 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.3%)
patch tree reduce : 1483.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.2%)
LB compute : 414.77 us (95.5%)
LB move op cnt : 0
LB apply : 3.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.5743683233194656e-18,-1.901043967241999e-17,-1.1913728108606099e-17)
sum a = (1.821838794702008e-16,-7.159620361973491e-18,-9.88207349375655e-17)
sum e = 4.144510084826963
sum de = -7.589415207398531e-19
Info: CFL hydro = 0.009462154946294548 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009462154946294548 cfl multiplier : 0.8356164388849386 [sph::Model][rank=0]
Info: Timestep 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.9551e+04 | 800 | 1 | 4.092e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 750.318677262629 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4578766140968935, dt = 0.009462154946294548 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.5%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 1012.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 392.56 us (95.3%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (74.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.333917927619353e-18,-1.8074296842664043e-17,-1.3020623390509533e-17)
sum a = (-7.80308749743454e-17,-2.0022971757084025e-17,2.147167150898795e-16)
sum e = 4.144510205622978
sum de = 2.859583229930518e-18
Info: CFL hydro = 0.01006978089023955 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01006978089023955 cfl multiplier : 0.8904109592566257 [sph::Model][rank=0]
Info: Timestep 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.0297e+04 | 800 | 1 | 3.941e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 864.2354410510535 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.467338769043188, dt = 0.01006978089023955 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.2%)
patch tree reduce : 1734.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 432.19 us (95.8%)
LB move op cnt : 0
LB apply : 3.70 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.042240280376792e-18,-1.8564086771192355e-17,-9.36592178314231e-18)
sum a = (3.875181966631343e-17,-9.306308207743452e-17,-2.8926064525194996e-17)
sum e = 4.14451029996106
sum de = 6.098637220230962e-19
Info: CFL hydro = 0.010471911327121558 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010471911327121558 cfl multiplier : 0.9269406395044172 [sph::Model][rank=0]
Info: Timestep 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.9962e+04 | 800 | 1 | 4.008e-02 | 0.1% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 904.5415928852551 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4774085499334277, dt = 0.010471911327121558 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (0.8%)
patch tree reduce : 1693.00 ns (0.2%)
gen split merge : 851.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.1%)
LB compute : 762.61 us (97.3%)
LB move op cnt : 0
LB apply : 3.79 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (75.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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.243498759519625e-18,-1.9685960338371885e-17,-1.0898200366886847e-17)
sum a = (-9.570525160013771e-17,6.423886989211698e-17,8.794050851300998e-17)
sum e = 4.14451036807074
sum de = -1.7753810574450135e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011484855760762223
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.293875473015191e-18,-1.932947714880082e-17,-1.0341008154616107e-17)
sum a = (-5.5419655521552136e-17,9.157124486393543e-17,-5.2412015838112226e-17)
sum e = 4.144509684562264
sum de = 3.0086610286472748e-18
Info: CFL hydro = 0.005370434843512179 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005370434843512179 cfl multiplier : 0.4756468798348057 [sph::Model][rank=0]
Info: Timestep 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.4726e+04 | 800 | 1 | 5.433e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 693.9415151854301 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4878804612605494, dt = 0.005370434843512179 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.2%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.2%)
LB compute : 427.16 us (95.7%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.6563499766966945e-18,-1.845624311720447e-17,-1.1304111897869026e-17)
sum a = (4.952420243688107e-17,-3.963853415465826e-17,1.8285490665056984e-17)
sum e = 4.144509862027058
sum de = -3.279711571768651e-18
Info: CFL hydro = 0.0073417936925269335 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0073417936925269335 cfl multiplier : 0.6504312532232038 [sph::Model][rank=0]
Info: Timestep 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.0752e+04 | 800 | 1 | 3.855e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 501.5078370634046 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.4932508961040614, dt = 0.006749103895938635 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.2%)
patch tree reduce : 1692.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 405.65 us (95.7%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.423238182832767e-18,-1.888911556168362e-17,-1.1160320359218512e-17)
sum a = (1.2165962432655542e-16,4.9847733398844734e-18,-6.782167573015893e-17)
sum e = 4.144509966205367
sum de = -1.7076184216646695e-18
Info: CFL hydro = 0.008655350927962225 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008655350927962225 cfl multiplier : 0.7669541688154693 [sph::Model][rank=0]
Info: Timestep 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.0730e+04 | 800 | 1 | 3.859e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 629.5990550246003 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 478 [SPH][rank=0]
Info: time since start : 868.850801861 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.1508853290067597 max=0.1514459864507427 delta=0.0005606574439830092
Number of particle pairs: 319600
Distance min=0.165188 max=2.237870 mean=0.935027
---------------- t = 3.5, dt = 0.008655350927962225 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.93 us (1.5%)
patch tree reduce : 1543.00 ns (0.2%)
gen split merge : 461.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.1%)
LB compute : 619.40 us (96.2%)
LB move op cnt : 0
LB apply : 4.37 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (82.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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.387839754613297e-18,-1.867342825370785e-17,-1.1897251994802395e-17)
sum a = (-1.222228078529366e-16,-5.472466308474132e-17,-1.609266970063665e-17)
sum e = 4.144510145555663
sum de = 5.014435047745458e-19
Info: CFL hydro = 0.009531534199440549 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009531534199440549 cfl multiplier : 0.8446361125436462 [sph::Model][rank=0]
Info: Timestep 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.8076e+04 | 800 | 1 | 4.426e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 704.0552335048739 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5086553509279623, dt = 0.009531534199440549 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.4%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 388.51 us (94.9%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.323832043567381e-18,-1.9545164456776588e-17,-1.1729495199710128e-17)
sum a = (-7.927107699520609e-17,-1.0065407705535956e-18,4.174747672153246e-17)
sum e = 4.144510232663053
sum de = 8.673617379884035e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01124407600603673
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.1231230208677065e-18,-1.9365425033463448e-17,-1.1429929494188226e-17)
sum a = (1.8495186658922317e-17,1.1390686386764855e-16,-4.447951595589222e-17)
sum e = 4.144509681889894
sum de = -3.096752455161722e-18
Info: CFL hydro = 0.0050599485379294075 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0050599485379294075 cfl multiplier : 0.4482120375145488 [sph::Model][rank=0]
Info: Timestep 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.5135e+04 | 800 | 1 | 5.286e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 649.1890315683664 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.518186885127403, dt = 0.0050599485379294075 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.97 us (1.1%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 421.20 us (95.7%)
LB move op cnt : 0
LB apply : 4.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (75.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.686306547248884e-18,-1.8231568838063042e-17,-1.2145891530385575e-17)
sum a = (-1.0840683751426641e-16,9.652007031915728e-17,-1.2364874061122087e-16)
sum e = 4.144509836178735
sum de = -7.928228386300251e-19
Info: CFL hydro = 0.007137935944350878 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007137935944350878 cfl multiplier : 0.6321413583430325 [sph::Model][rank=0]
Info: Timestep 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.0263e+04 | 800 | 1 | 3.948e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 461.38366702800306 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.523246833665332, dt = 0.007137935944350878 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (1.0%)
patch tree reduce : 1263.00 ns (0.3%)
gen split merge : 1072.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 431.13 us (95.9%)
LB move op cnt : 0
LB apply : 3.80 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.5719221227074036e-18,-1.7566532971804417e-17,-1.3270760754620322e-17)
sum a = (-3.06958987134184e-16,-1.5805086623335626e-16,9.756255897437351e-17)
sum e = 4.144509978437023
sum de = 8.131516293641283e-20
Info: CFL hydro = 0.008526480203660779 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008526480203660779 cfl multiplier : 0.7547609055620216 [sph::Model][rank=0]
Info: Timestep 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.9938e+04 | 800 | 1 | 4.012e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 640.433103219253 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5303847696096833, dt = 0.008526480203660779 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.4%)
patch tree reduce : 1262.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 377.82 us (95.2%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.633182551537531e-18,-1.988367370401634e-17,-1.153927097670372e-17)
sum a = (1.2464329875355358e-16,-1.7734289766896682e-17,5.257977263320449e-17)
sum e = 4.144510087514106
sum de = 1.9651164376299768e-19
Info: CFL hydro = 0.009457278887358827 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009457278887358827 cfl multiplier : 0.836507270374681 [sph::Model][rank=0]
Info: Timestep 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.0558e+04 | 800 | 1 | 3.891e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 788.7956480732637 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.538911249813344, dt = 0.009457278887358827 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.3%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 404.73 us (95.6%)
LB move op cnt : 0
LB apply : 3.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (75.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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.455091497553862e-18,-1.9236611780089028e-17,-1.113485727424915e-17)
sum a = (4.169954620864896e-18,-7.520297471421863e-17,-6.898399066758392e-17)
sum e = 4.144510153920306
sum de = -1.412850956020173e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011956053823358665
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.8439774582891784e-18,-1.9548909028095613e-17,-1.1870291081305423e-17)
sum a = (1.0682812624616598e-16,-9.799393359032505e-17,-4.500675159761077e-17)
sum e = 4.144509679408457
sum de = -2.6529071908004687e-18
Info: CFL hydro = 0.005027702002007717 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005027702002007717 cfl multiplier : 0.445502423458227 [sph::Model][rank=0]
Info: Timestep 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.5280e+04 | 800 | 1 | 5.236e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 650.2748074454696 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5483685287007027, dt = 0.005027702002007717 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.4%)
patch tree reduce : 1392.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.3%)
LB compute : 395.62 us (95.3%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.775626802462298e-18,-2.0260377578710133e-17,-1.194218685063068e-17)
sum a = (-5.0135316476145756e-17,-2.78715932417579e-17,4.687604160006745e-17)
sum e = 4.144509812922157
sum de = -7.657177843178875e-19
Info: CFL hydro = 0.007105107969972375 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007105107969972375 cfl multiplier : 0.6303349489721514 [sph::Model][rank=0]
Info: Timestep 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.0383e+04 | 800 | 1 | 3.925e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 461.1646551871571 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5533962307027105, dt = 0.007105107969972375 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.5%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 401.00 us (95.2%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (73.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.4610828116643e-18,-2.0292580892053738e-17,-1.153927097670372e-17)
sum a = (-1.1141148154065112e-16,7.00504445792419e-17,2.956114382090143e-17)
sum e = 4.144509929948632
sum de = -1.8126505071242027e-19
Info: CFL hydro = 0.008481139476588276 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008481139476588276 cfl multiplier : 0.753556632648101 [sph::Model][rank=0]
Info: Timestep 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.0502e+04 | 800 | 1 | 3.902e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 655.504551364094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5605013386726827, dt = 0.008481139476588276 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.2%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 414.88 us (95.7%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.160967649699238e-18,-1.9446682231086263e-17,-1.1155826873635684e-17)
sum a = (2.0243920187763025e-16,5.368217442952509e-17,4.063908361110142e-17)
sum e = 4.144510014423071
sum de = -3.5380566206812125e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010311655386587695
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.45808715460908e-18,-1.93027034638698e-17,-1.1149835559525246e-17)
sum a = (-6.9248357402707e-17,-1.1886767195109128e-17,1.0966501347745841e-16)
sum e = 4.144509681912436
sum de = 4.722208680942724e-19
Info: CFL hydro = 0.004696216130365973 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004696216130365973 cfl multiplier : 0.41785221088270036 [sph::Model][rank=0]
Info: Timestep 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.5454e+04 | 800 | 1 | 5.177e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 589.7871452662553 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.568982478149271, dt = 0.004696216130365973 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.1%)
patch tree reduce : 1513.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 440.35 us (95.7%)
LB move op cnt : 0
LB apply : 4.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.56 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9183194282264965e-18,-1.9927297959882967e-17,-1.0320038555229574e-17)
sum a = (4.3590554724755973e-17,-1.433122335216786e-16,-1.161476153449524e-16)
sum e = 4.144509783048437
sum de = 4.247870230480316e-19
Info: CFL hydro = 0.006871942117994769 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006871942117994769 cfl multiplier : 0.6119014739218002 [sph::Model][rank=0]
Info: Timestep 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.0367e+04 | 800 | 1 | 3.928e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 430.41944078897797 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.573678694279637, dt = 0.006871942117994769 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.05 us (1.2%)
patch tree reduce : 1273.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.3%)
LB compute : 408.27 us (95.5%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.277798274852781e-18,-2.097765021486914e-17,-1.1500327434985873e-17)
sum a = (6.587150298721134e-17,8.711370716576952e-17,2.3039598411689594e-16)
sum e = 4.1445098856369835
sum de = -1.153658874160357e-18
Info: CFL hydro = 0.008317071049937513 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008317071049937513 cfl multiplier : 0.7412676492812 [sph::Model][rank=0]
Info: Timestep 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.0459e+04 | 800 | 1 | 3.910e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 632.6576464723825 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.5805506363976316, dt = 0.008317071049937513 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.74 us (1.2%)
patch tree reduce : 1733.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 385.02 us (95.5%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.0476821380440725e-18,-1.951895245754342e-17,-8.37585712639242e-18)
sum a = (-5.118379644547242e-17,7.812673600011242e-17,7.547857516329879e-17)
sum e = 4.144509963336293
sum de = -8.385626177817573e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01010503420469562
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.709172890804322e-18,-2.0065285412988994e-17,-9.019923393264512e-18)
sum a = (-1.9774332221500846e-17,-9.420742307252819e-17,-9.019923393264512e-18)
sum e = 4.144509683896015
sum de = -1.6279973246227653e-18
Info: CFL hydro = 0.004639166096116185 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004639166096116185 cfl multiplier : 0.41375588309373335 [sph::Model][rank=0]
Info: Timestep 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.6099e+04 | 800 | 1 | 4.969e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 602.5371048371848 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.588867707447569, dt = 0.004639166096116185 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.83 us (1.1%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 681.00 ns (0.2%)
LB compute : 403.91 us (95.9%)
LB move op cnt : 0
LB apply : 3.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.5054682110494275e-18,-2.0635209167744415e-17,-9.562137320259157e-18)
sum a = (-1.6556996544195602e-16,7.886965894980673e-17,4.846074418227832e-17)
sum e = 4.144509770037086
sum de = -6.301925127571995e-19
Info: CFL hydro = 0.006827791244409402 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006827791244409402 cfl multiplier : 0.6091705887291555 [sph::Model][rank=0]
Info: Timestep 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.1685e+04 | 800 | 1 | 3.689e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 452.6923787264389 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.593506873543685, dt = 0.006827791244409402 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.60 us (1.1%)
patch tree reduce : 1273.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 400.75 us (95.8%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.241300933746995e-18,-1.9981781472574762e-17,-8.971992880381007e-18)
sum a = (3.7601487357109317e-17,-1.8716865281008527e-17,1.442708437793487e-17)
sum e = 4.144509862012294
sum de = -2.1412992906588713e-18
Info: CFL hydro = 0.00828518153503732 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00828518153503732 cfl multiplier : 0.7394470591527703 [sph::Model][rank=0]
Info: Timestep 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.0700e+04 | 800 | 1 | 3.865e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 636.0074213451807 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6003346647880945, dt = 0.00828518153503732 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.2%)
patch tree reduce : 1412.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 398.70 us (95.6%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (73.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.134006736202267e-18,-2.0228923179630335e-17,-9.133758361362835e-18)
sum a = (1.1928706393882195e-17,3.3479463249127925e-17,9.062311940595861e-17)
sum e = 4.144509936465985
sum de = 6.098637220230962e-19
Info: CFL hydro = 0.009257285532320277 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009257285532320277 cfl multiplier : 0.8262980394351803 [sph::Model][rank=0]
Info: Timestep 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.0779e+04 | 800 | 1 | 3.850e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 774.7213320461512 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6086198463231316, dt = 0.009257285532320277 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.64 us (1.1%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 399.45 us (95.8%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.020171768103944e-18,-2.0169010038525954e-17,-7.671877718415947e-18)
sum a = (-2.7228126106296845e-16,5.1764953914184915e-17,7.297926103641636e-17)
sum e = 4.144509991245952
sum de = 4.1674021004911577e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.012095613505110103
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.687104378531474e-18,-2.000799347180793e-17,-7.899547654612594e-18)
sum a = (-3.613960671416243e-17,4.874533160252413e-17,3.341337156534716e-17)
sum e = 4.144509686603076
sum de = -1.412850956020173e-18
Info: CFL hydro = 0.00495522005911868 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00495522005911868 cfl multiplier : 0.4420993464783935 [sph::Model][rank=0]
Info: Timestep 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.5400e+04 | 800 | 1 | 5.195e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 641.5377287450691 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.617877131855452, dt = 0.00495522005911868 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.90 us (1.2%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1433.00 ns (0.4%)
LB compute : 382.98 us (95.3%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.867393258287773e-18,-1.9298022749721018e-17,-7.935495539275222e-18)
sum a = (-1.2815420882227029e-16,4.1795407234415965e-17,-1.394703033483602e-17)
sum e = 4.144509772885413
sum de = -1.1316360175317453e-18
Info: CFL hydro = 0.007041470143467499 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007041470143467499 cfl multiplier : 0.6280662309855957 [sph::Model][rank=0]
Info: Timestep 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.1155e+04 | 800 | 1 | 3.782e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 471.7191368845307 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6228323519145706, dt = 0.007041470143467499 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (1.1%)
patch tree reduce : 882.00 ns (0.2%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 388.12 us (96.2%)
LB move op cnt : 0
LB apply : 3.12 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8518655165685208e-18,-1.954366662824898e-17,-8.09426536320183e-18)
sum a = (1.2421192413760205e-16,-1.8213594895731728e-16,1.3694945793639338e-16)
sum e = 4.1445098617136455
sum de = 8.876905287225068e-19
Info: CFL hydro = 0.008436391701370657 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008436391701370657 cfl multiplier : 0.752044153990397 [sph::Model][rank=0]
Info: Timestep 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.1169e+04 | 800 | 1 | 3.779e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 670.7708185879724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.629873822058038, dt = 0.008436391701370657 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (1.1%)
patch tree reduce : 892.00 ns (0.2%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 393.96 us (96.1%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.927855855835311e-18,-2.18443312466572e-17,-6.3897364987822005e-18)
sum a = (-9.643619192161116e-17,3.285636658164237e-16,5.3523404605598485e-17)
sum e = 4.14450994244146
sum de = 1.5043305143236374e-18
Info: CFL hydro = 0.009373090401127875 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009373090401127875 cfl multiplier : 0.8346961026602647 [sph::Model][rank=0]
Info: Timestep 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.0165e+04 | 800 | 1 | 3.967e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 765.5422113279532 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6383102137594086, dt = 0.009373090401127875 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.1%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 394.67 us (95.8%)
LB move op cnt : 0
LB apply : 3.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7829654042984827e-18,-1.6738233796036353e-17,-6.4526452969417996e-18)
sum a = (8.268013472404534e-19,-1.1831647105293097e-16,-5.134556192645425e-18)
sum e = 4.144510014373485
sum de = -2.1006417091906648e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011120327719635394
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.5708232098210886e-18,-1.8775280593585296e-17,-6.6054238067579704e-18)
sum a = (1.8756407954137418e-16,-3.4126525173055236e-17,-2.6412708255866225e-17)
sum e = 4.1445096929498115
sum de = 3.3881317890172014e-20
Info: CFL hydro = 0.005004390322342477 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005004390322342477 cfl multiplier : 0.4448987008867549 [sph::Model][rank=0]
Info: Timestep 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.5069e+04 | 800 | 1 | 5.309e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 635.6050973455707 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6476833041605365, dt = 0.005004390322342477 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.45 us (1.1%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 1103.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 396.56 us (95.7%)
LB move op cnt : 0
LB apply : 3.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.191473676694586e-18,-1.8313949407081567e-17,-7.03979407976473e-18)
sum a = (3.235309619636557e-17,4.7163624677368474e-17,4.37365930061979e-17)
sum e = 4.144509783127558
sum de = 7.792703114739563e-19
Info: CFL hydro = 0.007092272309385563 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007092272309385563 cfl multiplier : 0.6299324672578366 [sph::Model][rank=0]
Info: Timestep 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.0666e+04 | 800 | 1 | 3.871e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 465.3832262930757 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.652687694482879, dt = 0.007092272309385563 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (1.0%)
patch tree reduce : 902.00 ns (0.2%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 661.00 ns (0.2%)
LB compute : 389.11 us (96.2%)
LB move op cnt : 0
LB apply : 3.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.344252186510757e-18,-1.7789709422418236e-17,-6.536523694487933e-18)
sum a = (3.290549535734796e-16,7.453194753384957e-17,-9.836539506517221e-17)
sum e = 4.144509885853381
sum de = -1.6940658945086007e-19
Info: CFL hydro = 0.008493927601564097 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008493927601564097 cfl multiplier : 0.7532883115052244 [sph::Model][rank=0]
Info: Timestep 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.0856e+04 | 800 | 1 | 3.836e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 665.6338876737979 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6597799667922644, dt = 0.008493927601564097 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.3%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 397.51 us (95.4%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.954018938049693e-18,-1.7165114926405066e-17,-7.854612798784309e-18)
sum a = (-4.204704242705437e-17,-5.790005956327349e-17,1.2182138980753724e-16)
sum e = 4.144509987363371
sum de = -7.521652571618187e-19
Info: CFL hydro = 0.009440945580263017 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009440945580263017 cfl multiplier : 0.8355255410034829 [sph::Model][rank=0]
Info: Timestep 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.0253e+04 | 800 | 1 | 3.950e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 774.109434941187 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6682738943938284, dt = 0.009440945580263017 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.3%)
patch tree reduce : 1282.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 407.73 us (95.5%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (73.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.7641936306845795e-18,-1.8671930425180242e-17,-5.861003028536041e-18)
sum a = (5.130961404179162e-17,-7.429229496943205e-18,1.4055023771676664e-16)
sum e = 4.144510083552179
sum de = 3.1848438816761693e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010864461688137957
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.273455330071816e-18,-1.7782220279780188e-17,-5.691748404916165e-18)
sum a = (1.0142096526149562e-16,-1.0614212078052082e-16,-1.1916723765661318e-17)
sum e = 4.14450970004937
sum de = 8.334804200982315e-19
Info: CFL hydro = 0.00503934560346383 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00503934560346383 cfl multiplier : 0.4451751803344943 [sph::Model][rank=0]
Info: Timestep 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.5545e+04 | 800 | 1 | 5.146e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 660.4114331400272 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6777148399740915, dt = 0.00503934560346383 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.4%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 379.39 us (95.3%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.09726102025705e-18,-1.9067357156469154e-17,-6.4166974122791715e-18)
sum a = (-1.1992214323452837e-16,1.9843232333770885e-17,-4.332918364668811e-17)
sum e = 4.1445098075824625
sum de = -2.913793338554793e-19
Info: CFL hydro = 0.007132505529713199 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007132505529713199 cfl multiplier : 0.6301167868896629 [sph::Model][rank=0]
Info: Timestep 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.0504e+04 | 800 | 1 | 3.902e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 464.977087920449 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.682754185577555, dt = 0.007132505529713199 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.3%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.2%)
LB compute : 407.57 us (95.5%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.6054238067579704e-18,-1.8228573181007824e-17,-6.927456940194017e-18)
sum a = (-6.731840534488214e-17,8.668233254981798e-17,-6.13630391191067e-17)
sum e = 4.144509932746842
sum de = -1.951563910473908e-18
Info: CFL hydro = 0.00852897911990434 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00852897911990434 cfl multiplier : 0.7534111912597753 [sph::Model][rank=0]
Info: Timestep 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.0945e+04 | 800 | 1 | 3.819e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 672.2623443568051 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6898866911072683, dt = 0.00852897911990434 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (1.2%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 1122.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 372.42 us (95.4%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (65.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.2833906733219245e-18,-1.774627239511756e-17,-7.611964577311566e-18)
sum a = (-1.243317504198108e-16,-9.975537993879385e-17,-8.949825018172387e-17)
sum e = 4.144510055006831
sum de = 1.1519648082658485e-19
Info: CFL hydro = 0.00946110032637835 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00946110032637835 cfl multiplier : 0.8356074608398503 [sph::Model][rank=0]
Info: Timestep 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.0525e+04 | 800 | 1 | 3.898e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 787.7753267102381 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.6984156702271727, dt = 0.00946110032637835 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.4%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 392.84 us (95.3%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.845475286816788e-18,-1.873483922333984e-17,-8.350394041423058e-18)
sum a = (-2.076349818113417e-16,-1.1365522867501017e-16,-1.1302014937930374e-16)
sum e = 4.144510164987882
sum de = -1.5585406229479126e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011173808954541647
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.475511640497237e-18,-1.957661885585639e-17,-8.561587863816e-18)
sum a = (-7.810277074367066e-17,7.539469676575266e-17,9.896452647621602e-17)
sum e = 4.1445097053398845
sum de = 1.7753810574450135e-18
Info: CFL hydro = 0.005039602939582922 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005039602939582922 cfl multiplier : 0.44520248694661674 [sph::Model][rank=0]
Info: Timestep 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.5352e+04 | 800 | 1 | 5.211e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 653.6044865290361 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.707876770553551, dt = 0.005039602939582922 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.3%)
patch tree reduce : 1372.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 379.59 us (95.4%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.22 us (85.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.752609918104998e-18,-1.82405558092287e-17,-7.050278879457997e-18)
sum a = (-4.265815646631905e-17,-9.524991172774442e-17,2.5043692981631127e-16)
sum e = 4.144509834023861
sum de = 7.386127300057499e-19
Info: CFL hydro = 0.0071322406261064425 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0071322406261064425 cfl multiplier : 0.6301349912977444 [sph::Model][rank=0]
Info: Timestep 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.0795e+04 | 800 | 1 | 3.847e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 471.59432971528724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7129163734931336, dt = 0.0071322406261064425 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.3%)
patch tree reduce : 1132.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1383.00 ns (0.3%)
LB compute : 376.62 us (95.2%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.782566488657188e-18,-1.9238109608616637e-17,-5.0207212245471015e-18)
sum a = (-1.8958914371070225e-16,8.98337637719084e-17,8.1745489722817e-17)
sum e = 4.144509977226076
sum de = -5.38712954453735e-19
Info: CFL hydro = 0.008527593951657125 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008527593951657125 cfl multiplier : 0.7534233275318295 [sph::Model][rank=0]
Info: Timestep 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.0697e+04 | 800 | 1 | 3.865e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 664.2872739067823 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.72004861411924, dt = 0.008527593951657125 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.3%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 380.80 us (95.2%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (74.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.499875812580284e-18,-1.7725302795731025e-17,-5.0207212245471015e-18)
sum a = (-3.0603632476117655e-17,-2.596635535463859e-17,-5.5455603406214764e-17)
sum e = 4.144510109364256
sum de = -9.046311876675928e-19
Info: CFL hydro = 0.009459692923043812 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009459692923043812 cfl multiplier : 0.8356155516878863 [sph::Model][rank=0]
Info: Timestep 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.0926e+04 | 800 | 1 | 3.823e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 803.0179221760415 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7285762080708973, dt = 0.009459692923043812 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (1.1%)
patch tree reduce : 1203.00 ns (0.3%)
gen split merge : 1112.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 377.38 us (91.9%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8174154604335017e-18,-1.8261525408615234e-17,-5.9913141104380684e-18)
sum a = (-3.21374088883898e-17,-2.401198869181369e-16,5.353838289087458e-17)
sum e = 4.144510217757275
sum de = 7.250602028496811e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01064321331254692
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6915978641143024e-18,-1.9522697028862447e-17,-5.332269558289881e-18)
sum a = (3.9255090051590226e-17,3.0411910424583637e-17,9.84253082062766e-17)
sum e = 4.144509707309723
sum de = 1.9956096237311316e-18
Info: CFL hydro = 0.005042978513661138 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005042978513661138 cfl multiplier : 0.4452051838959621 [sph::Model][rank=0]
Info: Timestep 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.5821e+04 | 800 | 1 | 5.056e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 673.4964725220345 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7380359009939412, dt = 0.005042978513661138 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.86 us (1.2%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.2%)
LB compute : 390.16 us (95.5%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.55210035322597e-18,-1.771332016751015e-17,-4.755605575160217e-18)
sum a = (-1.0563885039524403e-16,-2.6889017727646053e-17,-5.148935346510476e-17)
sum e = 4.144509850969509
sum de = 1.8092623753351855e-18
Info: CFL hydro = 0.007140108264770641 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007140108264770641 cfl multiplier : 0.6301367892639748 [sph::Model][rank=0]
Info: Timestep 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.0752e+04 | 800 | 1 | 3.855e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 470.94192441665075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7430788795076024, dt = 0.007140108264770641 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.4%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 387.37 us (95.4%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.184582907518481e-18,-1.813870346935125e-17,-5.477558925468004e-18)
sum a = (-6.79415020123677e-17,1.113186161719393e-17,1.163513200247073e-17)
sum e = 4.144509999676821
sum de = -1.128247885742728e-18
Info: CFL hydro = 0.008542232323361843 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008542232323361843 cfl multiplier : 0.7534245261759832 [sph::Model][rank=0]
Info: Timestep 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.0184e+04 | 800 | 1 | 3.964e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 648.5153188776533 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.750218987772373, dt = 0.008542232323361843 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.94 us (1.2%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 387.15 us (95.4%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8191127467817585e-18,-1.7767241994504092e-17,-5.121075735896939e-18)
sum a = (-2.42049090061698e-18,-2.03276300795998e-16,-2.233561900371312e-17)
sum e = 4.144510126933995
sum de = 1.4814606247477713e-18
Info: CFL hydro = 0.009473231255517892 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009473231255517892 cfl multiplier : 0.8356163507839888 [sph::Model][rank=0]
Info: Timestep 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.0069e+04 | 800 | 1 | 3.986e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 771.4665187916205 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7587612200957348, dt = 0.009473231255517892 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.3%)
patch tree reduce : 1423.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 389.16 us (95.5%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6974141789134854e-18,-2.1230221550337295e-17,-5.4655762972471284e-18)
sum a = (-1.5313798866279702e-16,9.799093793326983e-17,-6.566480265040123e-18)
sum e = 4.144510218637719
sum de = 6.318865786517081e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011214322934418652
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0507267121180763e-18,-1.9468775201868505e-17,-5.431126241112109e-18)
sum a = (2.534805173844138e-16,-3.167532878762226e-17,4.518649102092391e-17)
sum e = 4.144509706300709
sum de = 8.216219588366713e-20
Info: CFL hydro = 0.005043788877545564 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005043788877545564 cfl multiplier : 0.4452054502613296 [sph::Model][rank=0]
Info: Timestep 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.5228e+04 | 800 | 1 | 5.253e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 649.161944482244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7682344513512525, dt = 0.005043788877545564 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.2%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.2%)
LB compute : 393.72 us (95.6%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.437597855892121e-18,-2.044236374481469e-17,-4.882921000007026e-18)
sum a = (-3.4294281968147504e-17,3.488442640802566e-18,-1.128883404688741e-16)
sum e = 4.144509850557651
sum de = -2.123511598766531e-18
Info: CFL hydro = 0.007136414960761448 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007136414960761448 cfl multiplier : 0.6301369668408864 [sph::Model][rank=0]
Info: Timestep 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.0648e+04 | 800 | 1 | 3.874e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 468.6518033415662 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.773278240228798, dt = 0.007136414960761448 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.74 us (1.1%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 408.05 us (95.7%)
LB move op cnt : 0
LB apply : 3.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.4604519701928627e-18,-2.0322537462605927e-17,-6.2833906733219245e-18)
sum a = (1.7180692343092205e-16,6.499527329855977e-17,-1.4067605531308586e-17)
sum e = 4.1445099882050505
sum de = 1.2553028278308731e-18
Info: CFL hydro = 0.008527369226593804 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008527369226593804 cfl multiplier : 0.7534246445605909 [sph::Model][rank=0]
Info: Timestep 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.0515e+04 | 800 | 1 | 3.900e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 658.8091069119137 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7804146551895594, dt = 0.008527369226593804 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.80 us (1.2%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 389.36 us (95.4%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.778622459517517e-18,-1.945379691659241e-17,-5.9988032530761165e-18)
sum a = (-1.1719010400016862e-17,5.3142956159585666e-17,1.0662142590935587e-16)
sum e = 4.144510095936917
sum de = -1.8397555614363403e-18
Info: CFL hydro = 0.009450049067167376 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009450049067167376 cfl multiplier : 0.8356164297070606 [sph::Model][rank=0]
Info: Timestep 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.0905e+04 | 800 | 1 | 3.827e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 802.1796190190089 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.788942024416153, dt = 0.009450049067167376 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.06 us (1.2%)
patch tree reduce : 1363.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 672.00 ns (0.2%)
LB compute : 410.84 us (95.9%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.999751625160568e-18,-1.9181192124567477e-17,-4.438065927306999e-18)
sum a = (-4.814620019148032e-17,7.374109407127174e-17,4.83319309289039e-17)
sum e = 4.1445101636059505
sum de = -3.8963515573697816e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.012489711397308511
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.3908843286873e-18,-1.886065681965904e-17,-4.682960891571155e-18)
sum a = (4.47431337767515e-17,2.7619958049119495e-17,-2.2659149965676776e-17)
sum e = 4.144509704133152
sum de = -1.8939656700606156e-18
Info: CFL hydro = 0.005032466303934259 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005032466303934259 cfl multiplier : 0.44520547656902015 [sph::Model][rank=0]
Info: Timestep 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.5716e+04 | 800 | 1 | 5.090e-02 | 0.1% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 668.3361882875683 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.7983920734833205, dt = 0.005032466303934259 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.64 us (1.1%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 1032.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 399.33 us (95.7%)
LB move op cnt : 0
LB apply : 3.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.3090532161119336e-18,-1.8591047684689326e-17,-5.117331164577915e-18)
sum a = (-9.492638076578075e-17,1.6070501838428032e-16,1.3667984880142366e-16)
sum e = 4.144509833796074
sum de = 4.506215279392878e-19
Info: CFL hydro = 0.0071211776672532295 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0071211776672532295 cfl multiplier : 0.6301369843793467 [sph::Model][rank=0]
Info: Timestep 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.0508e+04 | 800 | 1 | 3.901e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 464.4229369650867 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8034245397872546, dt = 0.0071211776672532295 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.72 us (1.1%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 429.33 us (95.8%)
LB move op cnt : 0
LB apply : 3.61 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.876250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.214889476693181e-18,-1.7299919493889924e-17,-3.722852805373455e-18)
sum a = (6.736633585776564e-17,-6.813921537801215e-17,-6.7138665921569e-17)
sum e = 4.144509950130764
sum de = 9.351243737687476e-19
Info: CFL hydro = 0.00851289398852277 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00851289398852277 cfl multiplier : 0.7534246562528978 [sph::Model][rank=0]
Info: Timestep 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.0607e+04 | 800 | 1 | 3.882e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 660.3675500467072 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8105457174545077, dt = 0.00851289398852277 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.4%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 404.13 us (95.2%)
LB move op cnt : 0
LB apply : 4.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 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: 3.876250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.577913436817842e-18,-1.8600034655854983e-17,-4.944331969639016e-18)
sum a = (1.8666538242480847e-16,-5.164512763197615e-17,-2.0306960045918788e-16)
sum e = 4.144510036271695
sum de = -9.690056916589196e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010142194551179089
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.863249771327455e-18,-1.8638978197572832e-17,-5.556194923167504e-18)
sum a = (1.3228821555847255e-17,2.583454644420895e-17,-4.079485777797281e-17)
sum e = 4.144509706021966
sum de = 2.5817564232311074e-18
Info: CFL hydro = 0.004720160966095752 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004720160966095752 cfl multiplier : 0.4178082187509659 [sph::Model][rank=0]
Info: Timestep 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.5421e+04 | 800 | 1 | 5.188e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 590.7622127747002 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8190586114430305, dt = 0.004720160966095752 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.2%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 388.68 us (95.4%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.969795054608378e-18,-1.8354390777327023e-17,-5.103101793565625e-18)
sum a = (-1.3108995273638494e-17,1.612861758529928e-16,1.60495322390415e-16)
sum e = 4.144509806771102
sum de = 1.9651164376299768e-19
Info: CFL hydro = 0.006909828377567989 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006909828377567989 cfl multiplier : 0.6118721458339773 [sph::Model][rank=0]
Info: Timestep 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.0209e+04 | 800 | 1 | 3.959e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 429.26376292495854 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8237787724091263, dt = 0.006909828377567989 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.4%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 394.11 us (95.2%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.818514373319816e-18,-1.6676822826404363e-17,-3.635229836508298e-18)
sum a = (-1.2279797400753864e-16,1.3789608556584258e-16,-6.650358662586256e-19)
sum e = 4.14450990987401
sum de = -3.5575383784680614e-18
Info: CFL hydro = 0.008367441357843982 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008367441357843982 cfl multiplier : 0.7412480972226515 [sph::Model][rank=0]
Info: Timestep 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.0367e+04 | 800 | 1 | 3.928e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 633.3020075593014 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8306886007866945, dt = 0.008367441357843982 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.4%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 405.50 us (95.4%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.743073490496183e-18,-1.578411702394909e-17,-4.0066913113554585e-18)
sum a = (6.314845072401724e-17,-9.282942082712743e-17,-1.6885020991742087e-16)
sum e = 4.144509988401455
sum de = 2.168404344971009e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010502883723376334
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.2463438757729815e-18,-1.6577966143582136e-17,-4.7323892329822694e-18)
sum a = (-9.681963602467919e-17,-1.1709424297440162e-16,4.258326503993857e-17)
sum e = 4.144509707675291
sum de = 2.236166980751353e-19
Info: CFL hydro = 0.0046701893767500165 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0046701893767500165 cfl multiplier : 0.4137493657408838 [sph::Model][rank=0]
Info: Timestep 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.5475e+04 | 800 | 1 | 5.170e-02 | 0.1% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 582.6901358965702 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8390560421445383, dt = 0.0046701893767500165 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.3%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.3%)
LB compute : 402.44 us (95.2%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.847372030985692e-18,-1.740776314787781e-17,-3.820211659668073e-18)
sum a = (1.569724296934774e-17,1.0580660719033629e-17,-6.725250088966732e-17)
sum e = 4.144509794353827
sum de = 1.4433441421213278e-18
Info: CFL hydro = 0.006875843634557253 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006875843634557253 cfl multiplier : 0.6091662438272558 [sph::Model][rank=0]
Info: Timestep 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.0413e+04 | 800 | 1 | 3.919e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 428.98984582252626 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8437262315212886, dt = 0.006875843634557253 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.3%)
patch tree reduce : 1403.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 408.55 us (95.3%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (74.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.557342753072603e-18,-1.683559265033097e-17,-4.4283300418775376e-18)
sum a = (3.006441420617823e-17,4.071697069453711e-17,9.383895725473624e-17)
sum e = 4.144509886591453
sum de = 2.120970499924768e-18
Info: CFL hydro = 0.008347603497629082 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008347603497629082 cfl multiplier : 0.7394441625515039 [sph::Model][rank=0]
Info: Timestep 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.0316e+04 | 800 | 1 | 3.938e-02 | 0.1% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 628.5987838323332 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.850602075155846, dt = 0.008347603497629082 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.3%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 416.35 us (95.5%)
LB move op cnt : 0
LB apply : 3.59 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9093324570608395e-18,-1.650007906014644e-17,-3.0218690544522008e-18)
sum a = (4.467123800742624e-17,1.2632086670447624e-16,4.207999465466177e-17)
sum e = 4.144509960409059
sum de = -2.778268066994105e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010800771793529652
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.967747769637611e-18,-1.6155578498796253e-17,-3.3184391029188854e-18)
sum a = (3.598383254729104e-17,1.4573272442229557e-16,1.1032106237255138e-16)
sum e = 4.144509709621419
sum de = -8.876905287225068e-19
Info: CFL hydro = 0.004665687104910096 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004665687104910096 cfl multiplier : 0.41314805418383466 [sph::Model][rank=0]
Info: Timestep 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.5242e+04 | 800 | 1 | 5.249e-02 | 0.0% | 2.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 572.5411806720201 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8589496786534747, dt = 0.004665687104910096 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.4%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 401.65 us (95.5%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (73.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.780519203686421e-18,-1.579010833805953e-17,-2.583005295862612e-18)
sum a = (1.9721009525917947e-16,3.0939146066302186e-17,-4.138799787490618e-17)
sum e = 4.1445097872463075
sum de = -4.87890977618477e-19
Info: CFL hydro = 0.0068741699879252775 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0068741699879252775 cfl multiplier : 0.6087653694558898 [sph::Model][rank=0]
Info: Timestep 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.0569e+04 | 800 | 1 | 3.889e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 431.867652743776 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8636153657583847, dt = 0.0068741699879252775 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.3%)
patch tree reduce : 1844.00 ns (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 406.33 us (95.5%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.6692809770020225e-18,-1.5580412344194198e-17,-3.263768361661138e-18)
sum a = (5.1944693337498055e-17,1.2766292106521437e-16,4.654052800988292e-17)
sum e = 4.144509874176395
sum de = 1.212951180468158e-18
Info: CFL hydro = 0.008347280636021052 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008347280636021052 cfl multiplier : 0.7391769129705933 [sph::Model][rank=0]
Info: Timestep 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.0709e+04 | 800 | 1 | 3.863e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 640.5942895094173 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.87048953574631, dt = 0.008347280636021052 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.3%)
patch tree reduce : 3.37 us (0.8%)
gen split merge : 1493.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 2.60 us (0.6%)
LB compute : 395.67 us (94.0%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.308304301848129e-18,-1.420241009879344e-17,-2.521594326230622e-18)
sum a = (7.366919830194649e-17,9.437517986762046e-17,-1.2680691206168553e-16)
sum e = 4.144509949250609
sum de = -3.1374100366299285e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010739894613984646
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.6348309208670035e-18,-1.418144049940691e-17,-3.2046041348205618e-18)
sum a = (-1.4038847223578482e-16,1.254341522161314e-16,-3.2248248199432904e-18)
sum e = 4.144509711714198
sum de = 5.353248226647178e-19
Info: CFL hydro = 0.004667033865824164 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004667033865824164 cfl multiplier : 0.4130589709901978 [sph::Model][rank=0]
Info: Timestep 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.5708e+04 | 800 | 1 | 5.093e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 590.0359450067529 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8788368163823312, dt = 0.004667033865824164 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.4%)
patch tree reduce : 1423.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 388.87 us (95.1%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.075591423625496e-18,-1.3580811259835492e-17,-2.708073977918007e-18)
sum a = (-6.596436835592314e-17,-6.69349612418141e-17,-1.0842481145659773e-16)
sum e = 4.1445097853155435
sum de = -1.4907779871675686e-18
Info: CFL hydro = 0.006879848452610508 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006879848452610508 cfl multiplier : 0.6087059806601318 [sph::Model][rank=0]
Info: Timestep 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.0307e+04 | 800 | 1 | 3.940e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 426.48145823472015 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8835038502481556, dt = 0.006879848452610508 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.3%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 391.27 us (95.5%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7325886908029164e-18,-1.4491491004622078e-17,-3.744571319023793e-18)
sum a = (-4.1112397425826026e-17,7.884569369336498e-17,-1.1453108390652984e-16)
sum e = 4.144509873671541
sum de = -3.4558944247975454e-19
Info: CFL hydro = 0.008357253847828865 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008357253847828865 cfl multiplier : 0.7391373204400878 [sph::Model][rank=0]
Info: Timestep 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.0725e+04 | 800 | 1 | 3.860e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 641.6448113954003 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.890383698700766, dt = 0.008357253847828865 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.94 us (1.2%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 405.70 us (95.6%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.951271655833906e-18,-1.3374110923025379e-17,-4.8619514006204924e-18)
sum a = (-2.1463283669233337e-16,-1.0614212078052082e-16,-1.6826212499176817e-16)
sum e = 4.14450995629161
sum de = -5.21772295508649e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01031655985284907
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.809926317795454e-18,-1.4138003472106233e-17,-4.980279854301644e-18)
sum a = (8.498079934245357e-17,3.022018837304962e-17,-2.0789111048956292e-16)
sum e = 4.144509713668422
sum de = 3.957337929572091e-18
Info: CFL hydro = 0.004671333939777237 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004671333939777237 cfl multiplier : 0.41304577348002924 [sph::Model][rank=0]
Info: Timestep 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.5565e+04 | 800 | 1 | 5.140e-02 | 0.1% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 585.3797847054207 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.8987409525485948, dt = 0.004671333939777237 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.4%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 391.61 us (95.3%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.709172890804322e-18,-1.3356136980694065e-17,-6.187529647554915e-18)
sum a = (-1.773428976689668e-18,-1.749463720247916e-17,1.195162317035462e-16)
sum e = 4.144509788878021
sum de = -7.521652571618187e-19
Info: CFL hydro = 0.006885153939797071 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006885153939797071 cfl multiplier : 0.6086971823200195 [sph::Model][rank=0]
Info: Timestep 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.0559e+04 | 800 | 1 | 3.891e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 432.1662467329022 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.903412286488372, dt = 0.006885153939797071 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.2%)
patch tree reduce : 1453.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 406.69 us (95.6%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.2987678742393146e-18,-1.3657200514743577e-17,-4.327226616263895e-18)
sum a = (9.506418099032083e-17,1.0005494564431574e-16,-1.7358334806466694e-17)
sum e = 4.144509884628067
sum de = -1.6940658945086007e-18
Info: CFL hydro = 0.00836403090682291 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00836403090682291 cfl multiplier : 0.7391314548800129 [sph::Model][rank=0]
Info: Timestep 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.0911e+04 | 800 | 1 | 3.826e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 647.9019483065335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.910297440428169, dt = 0.00836403090682291 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.4%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 386.39 us (95.3%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.586900407983499e-18,-1.2476911634987277e-17,-5.10385070782943e-18)
sum a = (-8.160768949827693e-17,-1.618853072640366e-16,8.111190825563818e-17)
sum e = 4.144509978848905
sum de = 1.1858461261560205e-18
Info: CFL hydro = 0.009355399992010622 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009355399992010622 cfl multiplier : 0.8260876365866752 [sph::Model][rank=0]
Info: Timestep 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.0467e+04 | 800 | 1 | 3.909e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 770.3491990311232 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9186614713349917, dt = 0.009355399992010622 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.2%)
patch tree reduce : 1342.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 395.14 us (95.5%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.93928902761303e-18,-1.4838987223027487e-17,-3.883120457827673e-18)
sum a = (-6.068002931051676e-17,2.87415320505935e-16,-1.6794402365821712e-17)
sum e = 4.14451006661978
sum de = -9.893344823930228e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011243763855021488
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.969245598165221e-18,-1.2896303622717942e-17,-4.307005931141166e-18)
sum a = (-1.4422890458057563e-16,-6.235759726143942e-17,2.1720610610276653e-16)
sum e = 4.144509720517108
sum de = 1.599198204416119e-18
Info: CFL hydro = 0.0050125744295823355 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0050125744295823355 cfl multiplier : 0.4420292121955584 [sph::Model][rank=0]
Info: Timestep 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.5431e+04 | 800 | 1 | 5.184e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 649.622723039572 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.928016871327002, dt = 0.0050125744295823355 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.2%)
patch tree reduce : 1332.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 423.54 us (95.6%)
LB move op cnt : 0
LB apply : 3.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.9387395711698726e-18,-1.483973613729129e-17,-2.174847022089019e-18)
sum a = (-4.0309561335027324e-17,-9.38000137130184e-17,2.419442420647653e-17)
sum e = 4.144509818404486
sum de = -1.904130065427667e-18
Info: CFL hydro = 0.007120247974417468 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007120247974417468 cfl multiplier : 0.628019474797039 [sph::Model][rank=0]
Info: Timestep 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.0151e+04 | 800 | 1 | 3.970e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 454.5360830169909 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9330294457565844, dt = 0.007120247974417468 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.3%)
patch tree reduce : 1323.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 425.71 us (95.4%)
LB move op cnt : 0
LB apply : 3.72 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.893804715341587e-18,-1.556318731612669e-17,-2.4609322708624368e-18)
sum a = (-1.489470644425456e-16,1.4467825313885847e-16,-1.0495209601533506e-16)
sum e = 4.144509932798988
sum de = -1.1587410718438829e-18
Info: CFL hydro = 0.008524542843320973 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008524542843320973 cfl multiplier : 0.7520129831980261 [sph::Model][rank=0]
Info: Timestep 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.0238e+04 | 800 | 1 | 3.953e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 648.4372240270026 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.940149693731002, dt = 0.008524542843320973 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.5%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 1172.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 373.02 us (90.3%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4139501300633843e-18,-1.3472967605847606e-17,-3.825454059514707e-18)
sum a = (4.2411014759263475e-17,-1.7652807894994726e-16,-1.4653256485603907e-17)
sum e = 4.144510044372795
sum de = -4.811147140404426e-19
Info: CFL hydro = 0.009461165034071914 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009461165034071914 cfl multiplier : 0.8346753221320174 [sph::Model][rank=0]
Info: Timestep 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.9487e+04 | 800 | 1 | 4.105e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 747.5455668184094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.948674236574323, dt = 0.009461165034071914 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.4%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 391.47 us (95.3%)
LB move op cnt : 0
LB apply : 3.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (73.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5013736411078937e-18,-1.6476862717968492e-17,-3.683909263655607e-18)
sum a = (4.5641830893317205e-17,-1.1455392579157586e-16,-2.266738802257863e-17)
sum e = 4.144510145139321
sum de = 1.1180834903756764e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010371697803132796
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.627191237427093e-18,-1.6172054612599955e-17,-3.604524351692303e-18)
sum a = (-1.948225565861699e-16,2.537920657181566e-17,-2.6229973175497863e-17)
sum e = 4.144509725895164
sum de = -5.04831636563563e-19
Info: CFL hydro = 0.005044266823552088 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005044266823552088 cfl multiplier : 0.44489177404400576 [sph::Model][rank=0]
Info: Timestep 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.5512e+04 | 800 | 1 | 5.157e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 660.4223844889128 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.958135401608395, dt = 0.005044266823552088 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (1.2%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 369.72 us (95.5%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.613311865037313e-19,-1.5408536520651005e-17,-3.75505611871706e-18)
sum a = (1.1823259265538484e-16,2.6670933894026104e-16,-8.873838304681096e-17)
sum e = 4.1445098434439
sum de = 2.1006417091906648e-19
Info: CFL hydro = 0.007143348361662788 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007143348361662788 cfl multiplier : 0.6299278493626704 [sph::Model][rank=0]
Info: Timestep 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.0907e+04 | 800 | 1 | 3.827e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 474.56436383746353 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.963179668431947, dt = 0.007143348361662788 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (1.1%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 403.17 us (95.9%)
LB move op cnt : 0
LB apply : 3.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9441814288371534e-18,-1.2855019723925706e-17,-4.637277121479065e-18)
sum a = (2.2982680927640432e-17,2.7272461830714086e-16,6.465227056573719e-17)
sum e = 4.144509975259514
sum de = 1.2332799712022613e-18
Info: CFL hydro = 0.008540598490742624 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008540598490742624 cfl multiplier : 0.7532852329084468 [sph::Model][rank=0]
Info: Timestep 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.1097e+04 | 800 | 1 | 3.792e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 678.1581863137343 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9703230167936097, dt = 0.008540598490742624 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.16 us (1.0%)
patch tree reduce : 1052.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 379.90 us (95.7%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.911229201229744e-18,-1.0484425236134717e-17,-3.528884011048022e-18)
sum a = (-1.7728298452786246e-17,-5.825953840989978e-17,-7.693895797771807e-17)
sum e = 4.144510097739839
sum de = 1.6263032587282567e-19
Info: CFL hydro = 0.00946843493266889 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00946843493266889 cfl multiplier : 0.8355234886056312 [sph::Model][rank=0]
Info: Timestep 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.9974e+04 | 800 | 1 | 4.005e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 767.6389111894341 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9788636152843524, dt = 0.00946843493266889 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.0%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 416.77 us (96.0%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6056721815974024e-18,-1.2430478950631383e-17,-4.791553459822845e-18)
sum a = (-1.5970446892783715e-16,-1.1527288348482845e-16,-1.746767628898219e-17)
sum e = 4.144510199219071
sum de = 6.115577879176048e-19
Info: CFL hydro = 0.010086105015269263 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010086105015269263 cfl multiplier : 0.8903489924037542 [sph::Model][rank=0]
Info: Timestep 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.0984e+04 | 800 | 1 | 3.812e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 894.1046087392109 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9883320502170214, dt = 0.010086105015269263 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.22 us (1.0%)
patch tree reduce : 1363.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 395.29 us (96.0%)
LB move op cnt : 0
LB apply : 3.48 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.369316355838824e-19,-1.3860156280234667e-17,-4.524191067644547e-18)
sum a = (-9.723902801240986e-17,-8.466925100871078e-17,1.6116634957078405e-18)
sum e = 4.14451027655784
sum de = 2.165439729655619e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010818235519407289
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.4300273282257943e-19,-1.3762048511676243e-17,-4.409607185282418e-18)
sum a = (-2.6229973175497863e-17,-1.8151285228983172e-16,-1.711538701928843e-16)
sum e = 4.144509732512634
sum de = 7.991755857344324e-19
Info: CFL hydro = 0.005249637637692642 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005249637637692642 cfl multiplier : 0.4634496641345847 [sph::Model][rank=0]
Info: Timestep 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.5754e+04 | 800 | 1 | 5.078e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 715.046283470736 (tsim/hr) [sph::Model][rank=0]
---------------- t = 3.9984181552322906, dt = 0.001581844767709395 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (1.2%)
patch tree reduce : 1243.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1183.00 ns (0.3%)
LB compute : 374.17 us (95.6%)
LB move op cnt : 0
LB apply : 3.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.489142638047586e-20,-1.4529685632076122e-17,-5.526238352615313e-18)
sum a = (6.117131706757268e-17,4.150782415711494e-17,-1.5138253362843867e-16)
sum e = 4.144509743691131
sum de = -9.118309677192543e-19
Info: CFL hydro = 0.007275450372735465 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007275450372735465 cfl multiplier : 0.6422997760897231 [sph::Model][rank=0]
Info: Timestep 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.0699e+04 | 800 | 1 | 3.865e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 147.3437580049009 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 547 [SPH][rank=0]
Info: time since start : 872.7597417620001 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15084242532994788 max=0.15143116888389924 delta=0.0005887435539513597
Number of particle pairs: 319600
Distance min=0.164926 max=2.297987 mean=0.934883
---------------- t = 4, dt = 0.007275450372735465 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.62 us (1.7%)
patch tree reduce : 1543.00 ns (0.2%)
gen split merge : 641.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.1%)
LB compute : 601.46 us (96.1%)
LB move op cnt : 0
LB apply : 4.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.186031819027306e-19,-1.414099912916145e-17,-6.723003346175318e-18)
sum a = (-2.336612503070847e-17,1.610465232885753e-17,2.5849524729485047e-17)
sum e = 4.144510014676954
sum de = -2.3903269771516356e-18
Info: CFL hydro = 0.00862584495394223 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00862584495394223 cfl multiplier : 0.7615331840598154 [sph::Model][rank=0]
Info: Timestep 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.7090e+04 | 800 | 1 | 4.681e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 559.5094937553115 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.0072754503727355, dt = 0.00862584495394223 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (0.8%)
patch tree reduce : 1723.00 ns (0.2%)
gen split merge : 761.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.1%)
LB compute : 713.38 us (97.4%)
LB move op cnt : 0
LB apply : 3.59 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3965256441752274e-19,-1.4084830559376096e-17,-5.8654965141188694e-18)
sum a = (2.7882377607156684e-16,-3.201758260618104e-17,1.2459536824067007e-16)
sum e = 4.1445101301499765
sum de = 8.300922883092143e-19
Info: CFL hydro = 0.00952762743719716 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00952762743719716 cfl multiplier : 0.8410221227065436 [sph::Model][rank=0]
Info: Timestep 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.7832e+04 | 800 | 1 | 4.486e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 692.1674169173314 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.015901295326677, dt = 0.00952762743719716 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.4%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 378.73 us (94.8%)
LB move op cnt : 0
LB apply : 4.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.832943202152754e-18,-1.449972906152393e-17,-4.303261359822143e-18)
sum a = (9.811375987253382e-17,1.1908335925906704e-16,2.806930660740235e-17)
sum e = 4.144510212649244
sum de = -8.165397611531455e-19
Info: CFL hydro = 0.010131433698916127 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010131433698916127 cfl multiplier : 0.8940147484710291 [sph::Model][rank=0]
Info: Timestep 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.0714e+04 | 800 | 1 | 3.862e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 888.0963991268081 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.025428922763875, dt = 0.010131433698916127 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.3%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 366.98 us (95.1%)
LB move op cnt : 0
LB apply : 4.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.150482850005972e-18,-1.2665638029466076e-17,-4.503221468258013e-18)
sum a = (1.216716069547763e-16,-8.867144883448342e-17,-8.439964187374107e-17)
sum e = 4.144510262618995
sum de = 7.013432803265607e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.012066159460431974
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.0246652536867725e-18,-1.374257674081732e-17,-5.018474481755687e-18)
sum a = (-2.379630138383792e-16,1.722862285597571e-16,1.0908385600874591e-16)
sum e = 4.144509730819307
sum de = -3.2526065174565133e-19
Info: CFL hydro = 0.005269365733415324 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005269365733415324 cfl multiplier : 0.4646715828236763 [sph::Model][rank=0]
Info: Timestep 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.5542e+04 | 800 | 1 | 5.147e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 708.5685047694758 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.035560356462791, dt = 0.005269365733415324 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.2%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 418.04 us (95.7%)
LB move op cnt : 0
LB apply : 3.57 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1727997371182519e-18,-1.1459886064740416e-17,-3.510910068716708e-18)
sum a = (-2.243148002948013e-17,7.489142638047585e-17,-7.875582398170841e-17)
sum e = 4.144509873804039
sum de = -2.537710709973884e-18
Info: CFL hydro = 0.007295455786842815 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007295455786842815 cfl multiplier : 0.6431143885491175 [sph::Model][rank=0]
Info: Timestep 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.0743e+04 | 800 | 1 | 3.857e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 491.8609574203627 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.040829722196206, dt = 0.007295455786842815 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (1.3%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.3%)
LB compute : 371.22 us (95.5%)
LB move op cnt : 0
LB apply : 3.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2357085352778516e-18,-1.1133359445721541e-17,-4.5953379227059984e-18)
sum a = (3.1156031637100044e-16,7.6329341766981e-18,-9.406363153387768e-18)
sum e = 4.14450999518236
sum de = -2.2632720350634905e-18
Info: CFL hydro = 0.008641756488677677 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008641756488677677 cfl multiplier : 0.762076259032745 [sph::Model][rank=0]
Info: Timestep 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.0525e+04 | 800 | 1 | 3.898e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 673.8228958790367 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.048125177983049, dt = 0.008641756488677677 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.4%)
patch tree reduce : 1342.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 376.21 us (91.3%)
LB move op cnt : 0
LB apply : 19.80 us (4.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.079136537123873e-18,-1.1320588011672731e-17,-4.349694044178038e-18)
sum a = (3.492456821256559e-16,-1.9039197980150094e-16,-2.9500032416974964e-16)
sum e = 4.1445100865283395
sum de = 1.6601845766184287e-18
Info: CFL hydro = 0.009533686730082373 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009533686730082373 cfl multiplier : 0.8413841726884966 [sph::Model][rank=0]
Info: Timestep 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.0806e+04 | 800 | 1 | 3.845e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 809.1097097471877 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.056766934471727, dt = 0.009533686730082373 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.3%)
patch tree reduce : 1703.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 453.31 us (95.6%)
LB move op cnt : 0
LB apply : 3.94 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.087325677006941e-18,-1.3886368279467834e-17,-8.421166439352608e-18)
sum a = (1.6929057150453806e-16,-9.493836339400164e-17,5.431725372523153e-17)
sum e = 4.144510141527894
sum de = 1.0164395367051604e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.012136769321242236
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.230567759214297e-18,-1.3505919833455016e-17,-6.764568087816482e-18)
sum a = (-3.9346158026068885e-16,-7.399272926391015e-17,-1.2326529650815282e-16)
sum e = 4.144509729540328
sum de = 2.1141942363467336e-18
Info: CFL hydro = 0.005063902034636149 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005063902034636149 cfl multiplier : 0.4471280575628322 [sph::Model][rank=0]
Info: Timestep 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.5443e+04 | 800 | 1 | 5.180e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 662.5348742726751 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.06630062120181, dt = 0.005063902034636149 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.3%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 424.70 us (95.7%)
LB move op cnt : 0
LB apply : 3.95 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.046583225157758e-18,-1.395227273468265e-17,-8.144068161744847e-18)
sum a = (2.2512961901382086e-16,-1.234210706750242e-17,7.932499882220002e-18)
sum e = 4.144509845198291
sum de = -4.2012834183813297e-19
Info: CFL hydro = 0.0071493218566943744 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0071493218566943744 cfl multiplier : 0.6314187050418881 [sph::Model][rank=0]
Info: Timestep 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.0953e+04 | 800 | 1 | 3.818e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 477.47584463542444 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.071364523236446, dt = 0.0071493218566943744 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.3%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 373.68 us (95.4%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.480355124702576e-18,-1.3699139713516644e-17,-7.686762389409066e-18)
sum a = (2.875830773010273e-17,-8.29557351731255e-17,-1.6061514867262374e-16)
sum e = 4.144509947564734
sum de = -1.0706496453294356e-18
Info: CFL hydro = 0.00853865364234631 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00853865364234631 cfl multiplier : 0.754279136694592 [sph::Model][rank=0]
Info: Timestep 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.0344e+04 | 800 | 1 | 3.932e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 654.5139152481685 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.07851384509314, dt = 0.00853865364234631 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.92 us (1.2%)
patch tree reduce : 1793.00 ns (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 378.92 us (95.5%)
LB move op cnt : 0
LB apply : 3.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.406212612585905e-18,-1.4575369402168212e-17,-9.729706886785473e-18)
sum a = (-5.0111351219704006e-17,1.8389140399167563e-16,-4.752310352399476e-17)
sum e = 4.144510023806405
sum de = -3.5914196963582334e-18
Info: CFL hydro = 0.00946307622655286 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00946307622655286 cfl multiplier : 0.836186091129728 [sph::Model][rank=0]
Info: Timestep 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.1063e+04 | 800 | 1 | 3.798e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 809.3172387042889 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.087052498735487, dt = 0.00946307622655286 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (1.0%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 414.86 us (96.0%)
LB move op cnt : 0
LB apply : 4.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.690250576388555e-18,-1.181786708283909e-17,-9.733638686670448e-18)
sum a = (-7.956465138661755e-17,-1.7942188366528883e-16,-2.965700484666844e-17)
sum e = 4.144510070330605
sum de = 8.538092108323347e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.012100305989702383
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.1937204194860006e-18,-1.3595789545111587e-17,-9.614093247310612e-18)
sum a = (-7.263869227495114e-17,4.894304496816858e-17,4.0129821911714184e-17)
sum e = 4.14450972981985
sum de = 9.012430558785756e-19
Info: CFL hydro = 0.005041735723900862 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005041735723900862 cfl multiplier : 0.4453953637099093 [sph::Model][rank=0]
Info: Timestep 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.5979e+04 | 800 | 1 | 5.007e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 680.440503432401 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.09651557496204, dt = 0.005041735723900862 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.1%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 397.17 us (95.8%)
LB move op cnt : 0
LB apply : 3.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.817765459056012e-18,-1.2175848100937764e-17,-9.339335326777241e-18)
sum a = (-1.65815609320484e-16,-1.1632435911121033e-16,1.5402470315114187e-16)
sum e = 4.144509825835206
sum de = -2.0464316005663896e-18
Info: CFL hydro = 0.007135447792001005 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007135447792001005 cfl multiplier : 0.6302635758066062 [sph::Model][rank=0]
Info: Timestep 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.1098e+04 | 800 | 1 | 3.792e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 478.67594103877383 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.101557310685941, dt = 0.007135447792001005 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.1%)
patch tree reduce : 1213.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 387.52 us (95.8%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.86215085844114e-18,-1.3395080522411911e-17,-7.810426857219827e-18)
sum a = (2.8830203499427983e-17,3.6731248982568186e-17,7.610167183078435e-17)
sum e = 4.144509913251353
sum de = -3.3745792618611326e-18
Info: CFL hydro = 0.008534325008624253 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008534325008624253 cfl multiplier : 0.7535090505377374 [sph::Model][rank=0]
Info: Timestep 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.0970e+04 | 800 | 1 | 3.815e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 673.3205002925407 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.108692758477941, dt = 0.008534325008624253 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.22 us (0.7%)
patch tree reduce : 1122.00 ns (0.2%)
gen split merge : 811.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.1%)
LB compute : 621.86 us (97.3%)
LB move op cnt : 0
LB apply : 4.14 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (72.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.090569708901591e-18,-1.249937906290142e-17,-7.560289493109038e-18)
sum a = (-1.2701585914128706e-17,6.625204504750713e-17,-1.1673476412777534e-16)
sum e = 4.144509982217383
sum de = -8.809142651444724e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010383182358882644
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.1922348202130875e-18,-1.2382548437747879e-17,-8.25003953007322e-18)
sum a = (-1.6722955945054737e-16,4.3739214206121215e-17,-1.5217937840512693e-17)
sum e = 4.144509732440527
sum de = 4.580754178751256e-18
Info: CFL hydro = 0.004734159194759599 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004734159194759599 cfl multiplier : 0.41783635017924575 [sph::Model][rank=0]
Info: Timestep 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.5656e+04 | 800 | 1 | 5.110e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 601.2629405204056 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.117227083486566, dt = 0.004734159194759599 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (1.0%)
patch tree reduce : 1453.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.2%)
LB compute : 423.81 us (95.9%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.746455833938001e-18,-1.2384046266275488e-17,-7.936244453539026e-18)
sum a = (-1.3734488466768227e-16,-2.69279612693639e-17,1.485366594259806e-16)
sum e = 4.144509808610145
sum de = 2.236166980751353e-19
Info: CFL hydro = 0.006933106912127552 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006933106912127552 cfl multiplier : 0.6118909001194971 [sph::Model][rank=0]
Info: Timestep 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.0752e+04 | 800 | 1 | 3.855e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 442.1040132626369 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.1219612426813255, dt = 0.006933106912127552 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.2%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 412.68 us (95.8%)
LB move op cnt : 0
LB apply : 3.58 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.066160839554353e-18,-1.2523344319343173e-17,-6.490839924395843e-18)
sum a = (-1.118218865572161e-16,1.2491889920263373e-17,1.802187284419771e-17)
sum e = 4.144509892600618
sum de = -3.3203691532368573e-19
Info: CFL hydro = 0.008399904409210285 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008399904409210285 cfl multiplier : 0.7412606000796647 [sph::Model][rank=0]
Info: Timestep 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.0602e+04 | 800 | 1 | 3.883e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 642.7517162342673 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.128894349593453, dt = 0.008399904409210285 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.77 us (1.0%)
patch tree reduce : 1513.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 476.00 us (96.4%)
LB move op cnt : 0
LB apply : 3.66 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1454643664893782e-18,-1.1928706393882195e-17,-6.8203622004699366e-18)
sum a = (-1.4558893288364506e-16,-7.639524622219581e-17,-2.4109047980402787e-16)
sum e = 4.144509965242119
sum de = -1.043544591017298e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010156928088249762
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.578613434062863e-19,-1.2541318261674487e-17,-7.904041140195422e-18)
sum a = (-2.8310157434641964e-16,2.920166497427515e-17,-1.4865648570818935e-16)
sum e = 4.144509734353928
sum de = -9.554531645028508e-19
Info: CFL hydro = 0.004690807607672077 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004690807607672077 cfl multiplier : 0.41375353335988824 [sph::Model][rank=0]
Info: Timestep 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.5939e+04 | 800 | 1 | 5.019e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 602.4960530611606 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.137294254002663, dt = 0.004690807607672077 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.3%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 378.83 us (95.2%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0904191680997284e-18,-1.1689053829464672e-17,-8.178892675011769e-18)
sum a = (1.6152582841741032e-17,6.414300886634996e-17,8.315943985288039e-18)
sum e = 4.144509805732638
sum de = 1.1587410718438829e-18
Info: CFL hydro = 0.006907770421730367 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006907770421730367 cfl multiplier : 0.6091690222399255 [sph::Model][rank=0]
Info: Timestep 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.0638e+04 | 800 | 1 | 3.876e-02 | 0.1% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 435.6398367849381 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.1419850616103355, dt = 0.006907770421730367 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (1.1%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 408.01 us (95.5%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2319639639588278e-19,-1.1432925151243444e-17,-7.677869032526385e-18)
sum a = (1.1302014937930374e-16,-2.927955205771084e-17,-8.37585712639242e-17)
sum e = 4.144509891025399
sum de = 1.6398557858843255e-18
Info: CFL hydro = 0.008383309207251872 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008383309207251872 cfl multiplier : 0.739446014826617 [sph::Model][rank=0]
Info: Timestep 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.0870e+04 | 800 | 1 | 3.833e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 648.757488208826 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.1488928320320655, dt = 0.008383309207251872 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.18 us (1.1%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 375.91 us (95.7%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1683062515354234e-18,-1.2012584791428327e-17,-8.74731860123958e-18)
sum a = (-7.958861664305931e-17,-1.294483326701249e-16,9.463879768847973e-17)
sum e = 4.144509969939177
sum de = 6.776263578034403e-20
Info: CFL hydro = 0.009367557128923973 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009367557128923973 cfl multiplier : 0.8262973432177446 [sph::Model][rank=0]
Info: Timestep 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.0808e+04 | 800 | 1 | 3.845e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 784.9683370771611 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.1572761412393175, dt = 0.009367557128923973 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.3%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 386.70 us (95.5%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.2538330184110286e-19,-1.3516404633148282e-17,-7.209048703384606e-18)
sum a = (1.9502925692298e-16,1.3037099504313238e-17,-1.6413804136956134e-16)
sum e = 4.144510039076663
sum de = -6.301925127571995e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011911619511987931
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9692455981652206e-19,-1.2956216763822323e-17,-8.146689361668163e-18)
sum a = (8.756904703816281e-17,7.35134241350751e-17,-5.1285648785349865e-18)
sum e = 4.144509739489539
sum de = 1.1519648082658485e-19
Info: CFL hydro = 0.0050137371037716795 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0050137371037716795 cfl multiplier : 0.44209911440591493 [sph::Model][rank=0]
Info: Timestep 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.5469e+04 | 800 | 1 | 5.172e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 652.0631489062631 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.166643698368241, dt = 0.0050137371037716795 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.69 us (1.2%)
patch tree reduce : 1362.00 ns (0.3%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 386.82 us (95.5%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.99051627915548e-19,-1.2228272099404097e-17,-7.576016692648938e-18)
sum a = (-3.983025620619228e-17,5.23760679534496e-17,1.6773282983582417e-16)
sum e = 4.144509824084393
sum de = -1.111307226797642e-18
Info: CFL hydro = 0.007124168956187791 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007124168956187791 cfl multiplier : 0.62806607627061 [sph::Model][rank=0]
Info: Timestep 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.0757e+04 | 800 | 1 | 3.854e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 468.3128037529375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.171657435472013, dt = 0.007124168956187791 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (1.0%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 393.12 us (96.0%)
LB move op cnt : 0
LB apply : 3.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.759549604299888e-19,-1.215937198713406e-17,-5.747168060437717e-18)
sum a = (-1.9330375845917385e-16,-6.772581470439192e-17,-1.1635132002470729e-16)
sum e = 4.144509919703974
sum de = -1.3823577699190182e-18
Info: CFL hydro = 0.008531819255142228 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008531819255142228 cfl multiplier : 0.7520440508470733 [sph::Model][rank=0]
Info: Timestep 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.0858e+04 | 800 | 1 | 3.835e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 668.6758895157052 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.178781604428201, dt = 0.008531819255142228 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.19 us (1.0%)
patch tree reduce : 951.00 ns (0.2%)
gen split merge : 642.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 394.29 us (96.1%)
LB move op cnt : 0
LB apply : 3.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.563732982824336e-18,-1.2834892653085952e-17,-8.19012638896884e-18)
sum a = (-1.5031008840267027e-16,6.653953451052518e-17,-1.058066071903363e-16)
sum e = 4.1445100114631295
sum de = -9.690056916589196e-19
Info: CFL hydro = 0.00947108411573057 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00947108411573057 cfl multiplier : 0.8346960338980489 [sph::Model][rank=0]
Info: Timestep 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.0677e+04 | 800 | 1 | 3.869e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 793.8384238816159 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.187313423683343, dt = 0.00947108411573057 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (1.0%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 662.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 376.55 us (96.0%)
LB move op cnt : 0
LB apply : 3.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.0690506530719005e-18,-1.2018576105538765e-17,-8.883620997252046e-18)
sum a = (2.627790368838137e-17,2.1688557079785807e-18,-1.1426634271427484e-16)
sum e = 4.144510094189469
sum de = 9.825582188149884e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01028139909687551
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2422493058314473e-18,-1.2220782956766051e-17,-8.937542824245988e-18)
sum a = (1.4018476755602993e-16,-3.337161959514004e-17,-1.5864999764440005e-16)
sum e = 4.14450974476886
sum de = -1.7753810574450135e-18
Info: CFL hydro = 0.0050508324855290145 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0050508324855290145 cfl multiplier : 0.4448986779660163 [sph::Model][rank=0]
Info: Timestep 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.5934e+04 | 800 | 1 | 5.021e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 679.1143328095966 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.196784507799074, dt = 0.0050508324855290145 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.81 us (1.3%)
patch tree reduce : 1322.00 ns (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 362.33 us (95.3%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0874235110445095e-18,-1.2574270489281897e-17,-1.0096862104615756e-17)
sum a = (-2.321993696641378e-16,-1.312577095314772e-16,-1.0767589719279297e-16)
sum e = 4.144509842689462
sum de = 2.0464316005663896e-18
Info: CFL hydro = 0.007153587321192258 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007153587321192258 cfl multiplier : 0.6299324519773442 [sph::Model][rank=0]
Info: Timestep 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.0881e+04 | 800 | 1 | 3.831e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 474.5924130063048 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.201835340284603, dt = 0.007153587321192258 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.83 us (1.1%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 419.05 us (95.8%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.626242865342641e-18,-1.3907337878854366e-17,-1.0574669404923191e-17)
sum a = (3.930302056447373e-18,7.882172843692323e-17,1.0652556488358886e-16)
sum e = 4.144509953148478
sum de = 3.1848438816761693e-19
Info: CFL hydro = 0.00855638368513325 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00855638368513325 cfl multiplier : 0.7532883013182294 [sph::Model][rank=0]
Info: Timestep 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.0897e+04 | 800 | 1 | 3.828e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 672.6834159279969 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.2089889276057955, dt = 0.00855638368513325 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.1%)
patch tree reduce : 1442.00 ns (0.3%)
gen split merge : 1383.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 3.45 us (0.8%)
LB compute : 425.64 us (94.9%)
LB move op cnt : 0
LB apply : 3.62 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.943233056752701e-18,-1.2342855981766227e-17,-8.915075396331846e-18)
sum a = (-8.587949645901928e-17,4.352090569822213e-17,2.1101408296962876e-17)
sum e = 4.144510057617947
sum de = 3.14757443199698e-18
Info: CFL hydro = 0.009487026418439007 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009487026418439007 cfl multiplier : 0.8355255342121529 [sph::Model][rank=0]
Info: Timestep 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.1032e+04 | 800 | 1 | 3.804e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 809.7991053027532 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.2175453112909285, dt = 0.009487026418439007 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (1.0%)
patch tree reduce : 1263.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 384.54 us (95.8%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.0591153098217916e-18,-1.2179592672256788e-17,-9.148736646638931e-18)
sum a = (-1.19766369067657e-16,8.514855613754583e-17,1.777023765155931e-17)
sum e = 4.144510147236011
sum de = 8.876905287225068e-19
Info: CFL hydro = 0.010107588783183127 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010107588783183127 cfl multiplier : 0.8903503561414352 [sph::Model][rank=0]
Info: Timestep 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.1257e+04 | 800 | 1 | 3.764e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 907.4775741513789 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.2270323377093675, dt = 0.010107588783183127 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.33 us (1.1%)
patch tree reduce : 1783.00 ns (0.4%)
gen split merge : 712.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 389.26 us (95.7%)
LB move op cnt : 0
LB apply : 3.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.4461045263882046e-18,-1.1423563722945884e-17,-9.022919050319731e-18)
sum a = (1.0870640321978832e-16,-1.0736434885905019e-17,-7.460384330317483e-17)
sum e = 4.1445102200846575
sum de = -1.5043305143236374e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010099188634416188
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.418594156448075e-18,-1.1671079887133358e-17,-9.412354467498206e-18)
sum a = (-9.167908851792333e-17,-7.340558048108722e-17,-7.896551997557374e-18)
sum e = 4.144509753499794
sum de = -7.301424005332069e-19
Info: CFL hydro = 0.005262024581939377 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005262024581939377 cfl multiplier : 0.46345011871381175 [sph::Model][rank=0]
Info: Timestep 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.5704e+04 | 800 | 1 | 5.094e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 714.2937973012165 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.23713992649255, dt = 0.005262024581939377 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 us (1.0%)
patch tree reduce : 1452.00 ns (0.3%)
gen split merge : 662.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 417.37 us (95.9%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.178542676389258e-18,-1.2449950721490306e-17,-9.127767047252398e-18)
sum a = (-1.3456491492043901e-17,-1.7336466509963596e-16,5.909832238536111e-17)
sum e = 4.144509878061707
sum de = -3.89804562326429e-18
Info: CFL hydro = 0.007293303444286744 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007293303444286744 cfl multiplier : 0.6423000791425412 [sph::Model][rank=0]
Info: Timestep 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.1108e+04 | 800 | 1 | 3.790e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 499.8213460749755 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.2424019510744895, dt = 0.007293303444286744 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.72 us (1.0%)
patch tree reduce : 1342.00 ns (0.3%)
gen split merge : 671.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 441.52 us (96.1%)
LB move op cnt : 0
LB apply : 3.76 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.946379254609783e-18,-1.3811289624521407e-17,-8.561587863816e-18)
sum a = (-1.2449950721490306e-17,9.473465871424674e-17,7.82345796541003e-17)
sum e = 4.1445099998234625
sum de = 9.30465692558849e-19
Info: CFL hydro = 0.008649206119653263 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008649206119653263 cfl multiplier : 0.7615333860950274 [sph::Model][rank=0]
Info: Timestep 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.1231e+04 | 800 | 1 | 3.768e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 696.8096940445212 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.249695254518776, dt = 0.008649206119653263 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (1.0%)
patch tree reduce : 1332.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 404.85 us (95.9%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.916422684057593e-18,-1.2166861129772107e-17,-7.836638856452993e-18)
sum a = (-1.5959063395973884e-16,-1.6890712740147003e-16,1.0472817065045744e-17)
sum e = 4.144510105542314
sum de = -2.727446090158847e-19
Info: CFL hydro = 0.009556152705478825 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009556152705478825 cfl multiplier : 0.841022257396685 [sph::Model][rank=0]
Info: Timestep 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.6406e+04 | 800 | 1 | 4.876e-02 | 0.0% | 1.0% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 638.5468365057418 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.258344460638429, dt = 0.009556152705478825 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (1.0%)
patch tree reduce : 1193.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 379.76 us (95.8%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.142195876085335e-18,-1.4906389506769916e-17,-7.968447766882632e-18)
sum a = (-3.7122182228274274e-17,3.3599289531336687e-17,2.4366674487151625e-17)
sum e = 4.144510186261929
sum de = -1.3078188705606397e-18
Info: CFL hydro = 0.010165043616319064 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010165043616319064 cfl multiplier : 0.8940148382644567 [sph::Model][rank=0]
Info: Timestep 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.0636e+04 | 800 | 1 | 3.877e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 887.3955541300617 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.267900613343907, dt = 0.010165043616319064 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (1.0%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 373.26 us (96.0%)
LB move op cnt : 0
LB apply : 3.36 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.773730058293394e-18,-1.338384680845484e-17,-7.683860346636822e-18)
sum a = (-9.562736451670202e-17,1.8045838100639463e-17,5.0884230739950515e-17)
sum e = 4.14451024140732
sum de = -1.7584403984999275e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01072887561420575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.339909241729792e-18,-1.3471095320188095e-17,-7.570025378538499e-18)
sum a = (7.929504225164783e-17,4.4815029546076753e-17,-2.611613820739954e-17)
sum e = 4.1445097548993886
sum de = 6.335806445462167e-19
Info: CFL hydro = 0.005284294551829314 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005284294551829314 cfl multiplier : 0.46467161275481894 [sph::Model][rank=0]
Info: Timestep 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.5760e+04 | 800 | 1 | 5.076e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 720.8830844654819 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.2780656569602264, dt = 0.005284294551829314 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.63 us (1.0%)
patch tree reduce : 1412.00 ns (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 429.27 us (95.9%)
LB move op cnt : 0
LB apply : 3.73 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.743224031298046e-18,-1.3281245554313588e-17,-8.022369593876574e-18)
sum a = (9.368318308786486e-17,4.471916852030974e-17,1.6577966143582136e-17)
sum e = 4.144509885169737
sum de = -1.7211709488207383e-18
Info: CFL hydro = 0.007309639965198072 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007309639965198072 cfl multiplier : 0.6431144085032127 [sph::Model][rank=0]
Info: Timestep 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.0558e+04 | 800 | 1 | 3.891e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 488.8641830935035 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.283349951512056, dt = 0.007309639965198072 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.3%)
patch tree reduce : 1813.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 424.19 us (95.6%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.163564391113163e-18,-1.2882823165969457e-17,-7.69284731780248e-18)
sum a = (7.193770852402989e-17,5.615059584302558e-17,2.1080438697576344e-17)
sum e = 4.144510000614023
sum de = 1.81603863891322e-18
Info: CFL hydro = 0.008656466515630346 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008656466515630346 cfl multiplier : 0.7620762723354751 [sph::Model][rank=0]
Info: Timestep 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.0598e+04 | 800 | 1 | 3.884e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 677.5251070667284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.2906595914772545, dt = 0.008656466515630346 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.4%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 380.24 us (95.1%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.55245035184848e-18,-1.253233129050883e-17,-7.65989509019507e-18)
sum a = (-7.052974970807695e-17,7.242300496697538e-17,-4.124121067920044e-17)
sum e = 4.144510092263321
sum de = 1.9922214919421144e-18
Info: CFL hydro = 0.009552414950719222 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009552414950719222 cfl multiplier : 0.8413841815569834 [sph::Model][rank=0]
Info: Timestep 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.0337e+04 | 800 | 1 | 3.934e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 792.2161176152716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.299316057992884, dt = 0.009552414950719222 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.4%)
patch tree reduce : 1724.00 ns (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 384.94 us (95.2%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.937941739887283e-18,-1.1671079887133358e-17,-8.196117703079278e-18)
sum a = (-1.2290057526167991e-17,2.1365026117822153e-16,-2.9302768399888786e-17)
sum e = 4.144510153771054
sum de = -3.5236570605778894e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011385822568082807
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.752211002463703e-18,-1.091916996627338e-17,-8.247043873018001e-18)
sum a = (5.345824906464747e-17,-6.099157764425954e-17,9.008689679307441e-18)
sum e = 4.144509754387165
sum de = 1.6940658945086007e-18
Info: CFL hydro = 0.0050754788125082165 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0050754788125082165 cfl multiplier : 0.44712806051899445 [sph::Model][rank=0]
Info: Timestep 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.5499e+04 | 800 | 1 | 5.162e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 666.2538762489431 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.308868472943604, dt = 0.0050754788125082165 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.5%)
patch tree reduce : 1683.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 385.41 us (95.0%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.117131706757268e-18,-1.2461933349711183e-17,-7.917521596943908e-18)
sum a = (-7.439302393791379e-17,9.27934729424648e-17,-2.3066559325186563e-17)
sum e = 4.144509866385128
sum de = -1.7889335846010823e-18
Info: CFL hydro = 0.007166877004742944 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007166877004742944 cfl multiplier : 0.631418707012663 [sph::Model][rank=0]
Info: Timestep 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.0654e+04 | 800 | 1 | 3.873e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 471.72915864519825 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.313943951756112, dt = 0.007166877004742944 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.2%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 403.99 us (95.5%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (72.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.10270287792433e-18,-1.1605175431918539e-17,-8.262022158294097e-18)
sum a = (-5.1420453352834724e-17,1.3691351005173074e-16,-7.654502907495677e-17)
sum e = 4.144509970439466
sum de = -4.743384504624082e-20
Info: CFL hydro = 0.008561734161695067 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008561734161695067 cfl multiplier : 0.754279138008442 [sph::Model][rank=0]
Info: Timestep 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.0877e+04 | 800 | 1 | 3.832e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 673.3130953119941 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.3211108287608555, dt = 0.008561734161695067 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.2%)
patch tree reduce : 1783.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 405.84 us (95.5%)
LB move op cnt : 0
LB apply : 3.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.399272926391014e-18,-1.0131312160750775e-17,-8.924062367497503e-18)
sum a = (-3.6069208773364785e-17,-1.2112040605661598e-16,1.9831249705550006e-17)
sum e = 4.144510052362994
sum de = 7.318364664277155e-19
Info: CFL hydro = 0.009493197801300033 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009493197801300033 cfl multiplier : 0.836186092005628 [sph::Model][rank=0]
Info: Timestep 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.0665e+04 | 800 | 1 | 3.871e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 796.1700801916951 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.329672562922551, dt = 0.009493197801300033 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (1.1%)
patch tree reduce : 1552.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 393.34 us (95.7%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.4127533831395e-18,-1.2237259070569754e-17,-8.34590055584023e-18)
sum a = (-2.016376763867932e-16,-3.546857953379336e-18,-8.783266485902209e-17)
sum e = 4.144510107420037
sum de = -2.358139725155972e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.012427784566954505
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.28299175768063e-18,-1.1717512571489253e-17,-8.948027623939256e-18)
sum a = (5.631835263811785e-18,5.205253699148594e-17,-2.5333073453165287e-16)
sum e = 4.144509754933064
sum de = 1.8295911660692887e-19
Info: CFL hydro = 0.00504988322841092 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00504988322841092 cfl multiplier : 0.445395364001876 [sph::Model][rank=0]
Info: Timestep 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.5489e+04 | 800 | 1 | 5.165e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 661.6905972354065 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.3391657607238505, dt = 0.00504988322841092 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.2%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 422.34 us (95.6%)
LB move op cnt : 0
LB apply : 3.75 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.519099208599776e-18,-1.1010537506457561e-17,-1.0964104822101665e-17)
sum a = (7.191673892464335e-17,1.8369369062603117e-16,1.4055622903087708e-16)
sum e = 4.144509853948992
sum de = -5.421010862427522e-20
Info: CFL hydro = 0.007140700847109797 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007140700847109797 cfl multiplier : 0.6302635760012506 [sph::Model][rank=0]
Info: Timestep 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.0587e+04 | 800 | 1 | 3.886e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 467.82966515460805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.3442156439522615, dt = 0.007140700847109797 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.3%)
patch tree reduce : 1744.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.3%)
LB compute : 436.12 us (95.7%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.4975801527700854e-18,-9.660994003081386e-18,-9.08582784847933e-18)
sum a = (-2.2167862208620853e-18,6.523342803444969e-17,1.5457590404930217e-18)
sum e = 4.144509947103148
sum de = -3.9302328752599536e-19
Info: CFL hydro = 0.008529746380318056 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008529746380318056 cfl multiplier : 0.7535090506675003 [sph::Model][rank=0]
Info: Timestep 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.0482e+04 | 800 | 1 | 3.906e-02 | 0.1% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 658.1586482771555 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.351356344799371, dt = 0.008529746380318056 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.4%)
patch tree reduce : 1744.00 ns (0.4%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 382.49 us (95.2%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.077239792954969e-18,-9.857209540198233e-18,-9.520198121486091e-18)
sum a = (-6.731840534488214e-17,7.154827310685142e-17,3.5348753251584605e-18)
sum e = 4.144510022329854
sum de = -1.6872896309305663e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010041788119800945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.41425121166711e-18,-9.705928858909671e-18,-9.457289323326491e-18)
sum a = (-1.3137753581368597e-16,-2.2598038561750307e-16,-1.374407456934493e-16)
sum e = 4.14450975680857
sum de = -2.3852447794681098e-18
Info: CFL hydro = 0.00472698472203696 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00472698472203696 cfl multiplier : 0.41783635022250004 [sph::Model][rank=0]
Info: Timestep 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.5570e+04 | 800 | 1 | 5.138e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 597.6493893305435 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.359886091179689, dt = 0.00472698472203696 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.4%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 404.32 us (95.4%)
LB move op cnt : 0
LB apply : 4.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.06430879264964e-18,-1.1560240576090254e-17,-1.0700487001242391e-17)
sum a = (-9.945581423327194e-18,1.2139600650569614e-16,1.9508917006408438e-16)
sum e = 4.144509837705952
sum de = -1.5585406229479126e-18
Info: CFL hydro = 0.006920130161105319 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006920130161105319 cfl multiplier : 0.6118909001483334 [sph::Model][rank=0]
Info: Timestep 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.0450e+04 | 800 | 1 | 3.912e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 435.00979177385915 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.364613075901726, dt = 0.006920130161105319 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.4%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 418.73 us (95.2%)
LB move op cnt : 0
LB apply : 4.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (74.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.194619874551668e-18,-1.0125320846640336e-17,-8.639474947251695e-18)
sum a = (1.9462783887758066e-16,9.607671307498486e-17,-1.3660196171798797e-18)
sum e = 4.144509927976369
sum de = -2.100641709190665e-18
Info: CFL hydro = 0.008380739081627314 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008380739081627314 cfl multiplier : 0.7412606000988889 [sph::Model][rank=0]
Info: Timestep 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.0157e+04 | 800 | 1 | 3.969e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 627.7129758792659 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.371533206062831, dt = 0.008380739081627314 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (1.1%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.2%)
LB compute : 387.68 us (95.7%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.624346121173737e-18,-9.247593329461158e-18,-9.196667159522436e-18)
sum a = (-1.2910083645171951e-16,1.6139401950698068e-16,3.949474261600775e-17)
sum e = 4.144510006107801
sum de = 1.8092623753351855e-18
Info: CFL hydro = 0.009354936235319255 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009354936235319255 cfl multiplier : 0.8275070667325926 [sph::Model][rank=0]
Info: Timestep 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.0760e+04 | 800 | 1 | 3.854e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 782.9148189647951 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.379913945144459, dt = 0.009354936235319255 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.05 us (1.2%)
patch tree reduce : 1472.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1213.00 ns (0.3%)
LB compute : 386.10 us (95.4%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.104750162895098e-18,-7.914525939888688e-18,-8.750314258294798e-18)
sum a = (-1.8564685902603399e-16,-1.685117006701811e-16,7.788708343569488e-18)
sum e = 4.144510068136978
sum de = 1.5517643593698782e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.012502094095098261
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.43876592455202e-18,-9.550154692038282e-18,-8.960010252160131e-18)
sum a = (-4.848770509577529e-17,1.080114107829775e-16,-1.2972393311920505e-16)
sum e = 4.14450975993064
sum de = -2.6630715861675203e-18
Info: CFL hydro = 0.005004386829253401 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005004386829253401 cfl multiplier : 0.44250235557753087 [sph::Model][rank=0]
Info: Timestep 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.5046e+04 | 800 | 1 | 5.317e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 633.4098662816601 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.389268881379778, dt = 0.005004386829253401 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (1.1%)
patch tree reduce : 1402.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 429.61 us (96.0%)
LB move op cnt : 0
LB apply : 3.75 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.683860346636822e-18,-7.264468358906157e-18,-1.0219684043879736e-17)
sum a = (-9.232615044185064e-18,-6.433473091788398e-17,1.1766940912900367e-17)
sum e = 4.144509847154455
sum de = -1.07742590890747e-18
Info: CFL hydro = 0.007107614035956914 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007107614035956914 cfl multiplier : 0.628334903718354 [sph::Model][rank=0]
Info: Timestep 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.0567e+04 | 800 | 1 | 3.890e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 463.1695995717545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.394273268209032, dt = 0.007107614035956914 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.3%)
patch tree reduce : 1894.00 ns (0.5%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 400.49 us (95.5%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.674873375471165e-18,-8.256030844183658e-18,-9.723902801240985e-18)
sum a = (3.1724008214769573e-17,-1.06705304306902e-16,-1.6852368329840198e-16)
sum e = 4.14450993932966
sum de = -3.5914196963582334e-19
Info: CFL hydro = 0.00851324795734349 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00851324795734349 cfl multiplier : 0.7522232691455694 [sph::Model][rank=0]
Info: Timestep 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.0958e+04 | 800 | 1 | 3.817e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 670.3118098271235 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.401380882244989, dt = 0.00851324795734349 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (1.1%)
patch tree reduce : 2.18 us (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 413.23 us (95.6%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.310901043262053e-18,-9.391384868111672e-18,-1.1750464799096662e-17)
sum a = (6.576066367616824e-17,1.4149686534621587e-16,-2.0562190027023452e-17)
sum e = 4.144510023190451
sum de = -3.1170812458958252e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010473754965013439
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.616458062894395e-18,-8.387839754613297e-18,-1.1233713957071379e-17)
sum a = (-4.97638550012986e-17,-2.047052292113375e-16,-8.193721177435103e-17)
sum e = 4.1445097609930155
sum de = 1.6601845766184287e-18
Info: CFL hydro = 0.004728599887874532 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.004728599887874532 cfl multiplier : 0.4174077563818564 [sph::Model][rank=0]
Info: Timestep 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.5843e+04 | 800 | 1 | 5.050e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 606.9219710578126 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.409894130202332, dt = 0.004728599887874532 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.3%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 371.97 us (95.2%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.244048215962783e-18,-1.082630459756159e-17,-1.1766940912900367e-17)
sum a = (6.119528232401444e-17,-1.1070750213267463e-16,2.720056606138883e-17)
sum e = 4.144509841282414
sum de = 1.3145951341386741e-18
Info: CFL hydro = 0.006932469162163476 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006932469162163476 cfl multiplier : 0.6116051709212376 [sph::Model][rank=0]
Info: Timestep 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.0357e+04 | 800 | 1 | 3.930e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 433.16390959075244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.414622730090207, dt = 0.006932469162163476 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.5%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 386.46 us (95.1%)
LB move op cnt : 0
LB apply : 3.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.840582885592665e-18,-1.1050978876703018e-17,-1.1480855664126948e-17)
sum a = (1.2813024356582854e-16,-1.3426534921491712e-17,8.610716639521592e-17)
sum e = 4.144509939326295
sum de = 3.0222135558033436e-18
Info: CFL hydro = 0.00840814424612232 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00840814424612232 cfl multiplier : 0.7410701139474917 [sph::Model][rank=0]
Info: Timestep 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.0527e+04 | 800 | 1 | 3.897e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 640.3733519694734 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.42155519925237, dt = 0.00840814424612232 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.3%)
patch tree reduce : 1903.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.2%)
LB compute : 422.78 us (95.4%)
LB move op cnt : 0
LB apply : 4.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (72.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.92540965522325e-18,-1.0787361055843743e-17,-1.0379951696333953e-17)
sum a = (6.189027476082524e-17,-3.8509171444840685e-17,-1.3240804184068132e-16)
sum e = 4.144510032079354
sum de = -1.7753810574450135e-18
Info: CFL hydro = 0.009391510807301053 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009391510807301053 cfl multiplier : 0.8273800759649944 [sph::Model][rank=0]
Info: Timestep 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.0100e+04 | 800 | 1 | 3.980e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 760.5083738714186 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.429963343498492, dt = 0.009391510807301053 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.3%)
patch tree reduce : 1574.00 ns (0.4%)
gen split merge : 1051.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 396.59 us (95.1%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.4041653276151375e-18,-1.1593192803697663e-17,-1.2781719740355814e-17)
sum a = (-3.2113443631948046e-17,6.366520156604252e-17,-2.1640626566902303e-17)
sum e = 4.1445101122782635
sum de = 9.283481101907132e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011811755150075884
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.030257652155916e-18,-1.113485727424915e-17,-1.2062762047103247e-17)
sum a = (1.5438418199776815e-16,8.802813148187513e-17,-1.696260850947226e-16)
sum e = 4.1445097654757665
sum de = -1.0164395367051604e-18
Info: CFL hydro = 0.005026017410141193 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005026017410141193 cfl multiplier : 0.44246002532166484 [sph::Model][rank=0]
Info: Timestep 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.5444e+04 | 800 | 1 | 5.180e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 652.6822569444352 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.439354854305793, dt = 0.005026017410141193 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.4%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 400.58 us (95.2%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.1669589638096765e-18,-1.0466825750935305e-17,-1.3701386456308059e-17)
sum a = (-1.0920967360506511e-16,8.09258030610827e-17,8.522045190687109e-17)
sum e = 4.144509863605519
sum de = -6.437450399132683e-19
Info: CFL hydro = 0.007137487989064793 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007137487989064793 cfl multiplier : 0.6283066835477765 [sph::Model][rank=0]
Info: Timestep 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.0704e+04 | 800 | 1 | 3.864e-02 | 0.1% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 468.26817531787054 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.444380871715934, dt = 0.007137487989064793 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.90 us (1.2%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 385.73 us (91.3%)
LB move op cnt : 0
LB apply : 21.96 us (5.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.6348309208670035e-18,-1.0026464163818108e-17,-1.2504621462748054e-17)
sum a = (-9.243399409583852e-17,8.222329702312444e-17,1.9054775396837232e-16)
sum e = 4.144509971579105
sum de = 1.1858461261560205e-19
Info: CFL hydro = 0.008546829080450503 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008546829080450503 cfl multiplier : 0.7522044556985176 [sph::Model][rank=0]
Info: Timestep 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.0838e+04 | 800 | 1 | 3.839e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 669.289252445059 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.451518359704998, dt = 0.008546829080450503 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.60 us (1.1%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 691.00 ns (0.2%)
LB compute : 397.55 us (95.8%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.857058999396369e-18,-9.154727960749369e-18,-1.0474314893573353e-17)
sum a = (6.184234424794174e-17,5.169305814485965e-17,2.4804040417213603e-17)
sum e = 4.144510070865877
sum de = -3.7947076036992655e-19
Info: CFL hydro = 0.00948394502552214 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00948394502552214 cfl multiplier : 0.8348029704656783 [sph::Model][rank=0]
Info: Timestep 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.0832e+04 | 800 | 1 | 3.840e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 801.1963734788887 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.460065188785449, dt = 0.00948394502552214 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (1.0%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 416.18 us (95.7%)
LB move op cnt : 0
LB apply : 3.66 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.559939494486528e-18,-8.771283857681332e-18,-1.1004358963781171e-17)
sum a = (2.4671033243961877e-16,2.8578568306789587e-17,3.455789978900678e-17)
sum e = 4.144510153105936
sum de = 1.2637731573034161e-18
Info: CFL hydro = 0.01010457087023394 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01010457087023394 cfl multiplier : 0.8898686469771189 [sph::Model][rank=0]
Info: Timestep 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.1602e+04 | 800 | 1 | 3.703e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 921.941989337154 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.469549133810971, dt = 0.01010457087023394 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.79 us (1.1%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 401.62 us (95.5%)
LB move op cnt : 0
LB apply : 3.56 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.111938223929419e-18,-8.600531405533847e-18,-1.0628216774785231e-17)
sum a = (-2.1448904515368284e-18,1.6295775248980503e-16,-3.817665351171137e-17)
sum e = 4.1445102167836945
sum de = -1.6229151269392394e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010687799351390014
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.222578077151876e-18,-8.010386965655697e-18,-1.0998929335368587e-17)
sum a = (1.5992015623581292e-16,1.7533580744197008e-16,-1.7207054125178133e-17)
sum e = 4.1445097720256285
sum de = -1.2197274440461925e-19
Info: CFL hydro = 0.005259818362151061 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005259818362151061 cfl multiplier : 0.46328954899237296 [sph::Model][rank=0]
Info: Timestep 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.5703e+04 | 800 | 1 | 5.095e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 714.0023565716873 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.479653704681205, dt = 0.005259818362151061 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.91 us (1.2%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 390.32 us (95.4%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5532481831310693e-18,-6.857058999396369e-18,-1.105921693360487e-17)
sum a = (1.8351395120271805e-16,2.0298572206164176e-16,2.4612318365679585e-17)
sum e = 4.144509890957082
sum de = 1.5958100726271018e-18
Info: CFL hydro = 0.0072903726736385345 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0072903726736385345 cfl multiplier : 0.642193032661582 [sph::Model][rank=0]
Info: Timestep 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.0915e+04 | 800 | 1 | 3.825e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 495.0479017409922 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.484913523043356, dt = 0.0072903726736385345 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (1.0%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.2%)
LB compute : 428.28 us (96.2%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.5348753251584606e-19,-5.389187042339043e-18,-1.0775752884754769e-17)
sum a = (5.5311811867564246e-17,-6.264518033874044e-17,-2.42049090061698e-18)
sum e = 4.144510004242555
sum de = -1.0298861847428224e-18
Info: CFL hydro = 0.008644473659626312 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008644473659626312 cfl multiplier : 0.761462021774388 [sph::Model][rank=0]
Info: Timestep 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.0884e+04 | 800 | 1 | 3.831e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 685.1392356080728 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.492203895716995, dt = 0.007796104283005256 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (1.1%)
patch tree reduce : 1323.00 ns (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 395.68 us (95.8%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.8308959171819874e-19,-6.893006884058998e-18,-1.0885468824402166e-17)
sum a = (-2.27729849337751e-17,-8.39622759436791e-17,-3.4078594660171736e-17)
sum e = 4.144510038789698
sum de = -3.5067164016328034e-18
Info: CFL hydro = 0.009548843743954578 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009548843743954578 cfl multiplier : 0.8409746811829253 [sph::Model][rank=0]
Info: Timestep 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.1265e+04 | 800 | 1 | 3.762e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 746.0406109717752 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 613 [SPH][rank=0]
Info: time since start : 876.344793255 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15092791282911 max=0.15142881212141718 delta=0.0005008992923071776
Number of particle pairs: 319600
Distance min=0.165370 max=2.238097 mean=0.935060
---------------- t = 4.5, dt = 0.009548843743954578 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.68 us (1.7%)
patch tree reduce : 1543.00 ns (0.2%)
gen split merge : 472.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.1%)
LB compute : 612.22 us (96.0%)
LB move op cnt : 0
LB apply : 4.48 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (82.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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.980678769942939e-19,-7.483151323937147e-18,-1.1190276929770703e-17)
sum a = (3.169405164421738e-17,2.3342159774266715e-17,-2.336612503070847e-17)
sum e = 4.144510171268046
sum de = 2.0430434687773724e-18
Info: CFL hydro = 0.010154708730875298 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010154708730875298 cfl multiplier : 0.8939831207886169 [sph::Model][rank=0]
Info: Timestep 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.6476e+04 | 800 | 1 | 4.855e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 707.9777599325465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.509548843743954, dt = 0.010154708730875298 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (0.8%)
patch tree reduce : 1532.00 ns (0.2%)
gen split merge : 761.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1263.00 ns (0.2%)
LB compute : 771.41 us (97.4%)
LB move op cnt : 0
LB apply : 4.11 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5652308113519453e-19,-7.090720249703455e-18,-1.1428431665660615e-17)
sum a = (2.1018728162238831e-16,6.571273316328474e-17,1.0448851808603991e-17)
sum e = 4.144510218090439
sum de = 2.520770051028798e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010926239252760499
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.597535748478628e-19,-6.860054656451589e-18,-1.1259177042040741e-17)
sum a = (2.2585456802118386e-16,-1.6895505791435353e-18,-1.3830349492535237e-16)
sum e = 4.144509772193822
sum de = 2.995108501491206e-18
Info: CFL hydro = 0.00527888940018882 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00527888940018882 cfl multiplier : 0.4646610402628723 [sph::Model][rank=0]
Info: Timestep 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.5211e+04 | 800 | 1 | 5.259e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 695.1070428838675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.519703552474829, dt = 0.00527888940018882 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.3%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.2%)
LB compute : 403.71 us (95.3%)
LB move op cnt : 0
LB apply : 4.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.224275363500133e-18,-7.38279681258731e-18,-1.2840883967196391e-17)
sum a = (-3.7094023051955215e-16,-1.708722784296937e-17,2.2647167337455898e-17)
sum e = 4.144509891685757
sum de = 2.7985968577282083e-18
Info: CFL hydro = 0.0073054205438894855 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0073054205438894855 cfl multiplier : 0.6431073601752483 [sph::Model][rank=0]
Info: Timestep 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.0676e+04 | 800 | 1 | 3.869e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 491.16752325077994 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.524982441875018, dt = 0.0073054205438894855 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.3%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.2%)
LB compute : 435.65 us (95.6%)
LB move op cnt : 0
LB apply : 3.57 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.849069317333949e-18,-7.378303327004482e-18,-1.231664398253306e-17)
sum a = (-4.4515463840554846e-18,4.9176706218475664e-17,2.820710683194243e-17)
sum e = 4.144509995994485
sum de = 2.6630715861675203e-18
Info: CFL hydro = 0.008649184066158017 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008649184066158017 cfl multiplier : 0.7620715734501656 [sph::Model][rank=0]
Info: Timestep 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.0431e+04 | 800 | 1 | 3.916e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 671.6701130110229 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.532287862418907, dt = 0.008649184066158017 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.4%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 396.13 us (95.3%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (74.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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.945980338968488e-19,-6.893006884058998e-18,-1.1873286738360642e-17)
sum a = (1.2869342709220972e-16,-2.1633436989969777e-16,2.5019727725189375e-17)
sum e = 4.144510077181019
sum de = 8.876905287225068e-19
Info: CFL hydro = 0.009540635078209193 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009540635078209193 cfl multiplier : 0.8413810489667771 [sph::Model][rank=0]
Info: Timestep 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.9792e+04 | 800 | 1 | 4.042e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 770.3304125763049 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.540937046485065, dt = 0.009540635078209193 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.3%)
patch tree reduce : 1993.00 ns (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 396.77 us (95.1%)
LB move op cnt : 0
LB apply : 3.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (74.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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0866745967807046e-18,-1.0026464163818108e-17,-1.1768438741427976e-17)
sum a = (-2.5789611588380665e-16,-1.7226226330331535e-16,-3.5995815175511914e-17)
sum e = 4.144510129956199
sum de = -3.815036394433369e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010251124475110744
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.331471727007291e-19,-9.854213883143013e-18,-1.1975139078238089e-17)
sum a = (2.0572375261011195e-16,1.4836890263088833e-16,7.347747625041247e-17)
sum e = 4.144509771737554
sum de = -4.946672411965114e-19
Info: CFL hydro = 0.005066347489835405 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005066347489835405 cfl multiplier : 0.447127016322259 [sph::Model][rank=0]
Info: Timestep 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.4843e+04 | 800 | 1 | 5.390e-02 | 0.1% | 1.8% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 637.255306819714 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.550477681563274, dt = 0.005066347489835405 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.3%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.2%)
LB compute : 418.59 us (95.2%)
LB move op cnt : 0
LB apply : 4.09 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (74.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.574018324696955e-18,-7.41574904019472e-18,-1.1142346416887198e-17)
sum a = (2.2015383264510205e-16,-2.8446759396359947e-17,1.7214243702110658e-16)
sum e = 4.144509872091019
sum de = -3.9302328752599536e-19
Info: CFL hydro = 0.007151793740764355 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007151793740764355 cfl multiplier : 0.631418010881506 [sph::Model][rank=0]
Info: Timestep 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.0250e+04 | 800 | 1 | 3.951e-02 | 0.1% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 461.6733204735238 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.5555440290531095, dt = 0.007151793740764355 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.4%)
patch tree reduce : 1523.00 ns (0.3%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 431.75 us (95.6%)
LB move op cnt : 0
LB apply : 3.77 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (74.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.0733446808340816e-18,-8.071797935287688e-18,-9.662491831608995e-18)
sum a = (-9.459086717559623e-17,2.5074847815005403e-16,2.4672231506783966e-17)
sum e = 4.144509964024753
sum de = -2.337810934421869e-18
Info: CFL hydro = 0.008539633098295522 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008539633098295522 cfl multiplier : 0.754278673921004 [sph::Model][rank=0]
Info: Timestep 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.0114e+04 | 800 | 1 | 3.977e-02 | 0.1% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 647.3273648180453 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.562695822793874, dt = 0.008539633098295522 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.3%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 428.29 us (95.3%)
LB move op cnt : 0
LB apply : 3.56 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (74.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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.151256222779169e-18,-4.918868884669654e-18,-9.977035822406993e-18)
sum a = (-1.2452946378545526e-17,-1.6631887970576078e-17,9.794600307744155e-17)
sum e = 4.144510035236048
sum de = -1.395910297075087e-18
Info: CFL hydro = 0.009463411186735332 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009463411186735332 cfl multiplier : 0.8361857826140028 [sph::Model][rank=0]
Info: Timestep 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.9819e+04 | 800 | 1 | 4.037e-02 | 0.1% | 1.8% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 761.602882092741 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.571235455892169, dt = 0.009463411186735332 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (1.5%)
patch tree reduce : 1873.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 413.74 us (95.1%)
LB move op cnt : 0
LB apply : 3.67 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.31 us (77.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3347402174113348e-18,-6.433173526082876e-18,-8.669431517803885e-18)
sum a = (-1.2500277760017986e-16,-6.1590709055303345e-18,-8.538820870196336e-17)
sum e = 4.144510081929341
sum de = -4.831475931138529e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011175394382643858
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.77530126234918e-18,-6.1950187901929626e-18,-9.481254579768244e-18)
sum a = (1.6668135420944229e-16,1.358350735118519e-16,-8.472916414981517e-17)
sum e = 4.144509772290108
sum de = 9.486769009248164e-19
Info: CFL hydro = 0.005039648378179845 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005039648378179845 cfl multiplier : 0.4453952608713343 [sph::Model][rank=0]
Info: Timestep 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.4136e+04 | 800 | 1 | 5.659e-02 | 0.1% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 601.9794350166477 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.580698867078905, dt = 0.005039648378179845 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.3%)
patch tree reduce : 1553.00 ns (0.3%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 438.57 us (95.5%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (73.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.279296103380391e-18,-4.870189457522345e-18,-9.786811599400585e-18)
sum a = (3.124650048016766e-16,-2.1856313874878075e-17,-4.965601134731071e-17)
sum e = 4.1445098594362895
sum de = -1.145188544687814e-18
Info: CFL hydro = 0.007130213375775609 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007130213375775609 cfl multiplier : 0.6302635072475562 [sph::Model][rank=0]
Info: Timestep 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.0320e+04 | 800 | 1 | 3.937e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 460.82492964137913 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.585738515457084, dt = 0.007130213375775609 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.2%)
patch tree reduce : 1583.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 993.00 ns (0.2%)
LB compute : 433.26 us (95.6%)
LB move op cnt : 0
LB apply : 3.66 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.7462196883532654e-18,-4.96530156902555e-18,-1.0035451134983765e-17)
sum a = (1.8900349275640691e-16,6.753409265285791e-17,1.1491340463820216e-17)
sum e = 4.144509941026048
sum de = -9.41900637346782e-19
Info: CFL hydro = 0.00852336244647109 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00852336244647109 cfl multiplier : 0.7535090048317041 [sph::Model][rank=0]
Info: Timestep 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.0243e+04 | 800 | 1 | 3.952e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 649.5004793627625 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.59286872883286, dt = 0.00852336244647109 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.3%)
patch tree reduce : 1793.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 412.98 us (95.6%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.969571138278339e-18,-4.308503759668776e-18,-9.972542336824165e-18)
sum a = (4.601235622533461e-17,-3.098707657918569e-17,2.019072855217629e-17)
sum e = 4.1445100068958665
sum de = -2.188733135705112e-18
Info: CFL hydro = 0.009452783790131114 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009452783790131114 cfl multiplier : 0.8356726698878028 [sph::Model][rank=0]
Info: Timestep 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.0309e+04 | 800 | 1 | 3.939e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 778.972387201163 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.601392091279331, dt = 0.009452783790131114 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.4%)
patch tree reduce : 1522.00 ns (0.3%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 413.52 us (95.0%)
LB move op cnt : 0
LB apply : 4.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (73.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.368941898706921e-18,-5.336014129608905e-18,-9.610067833142662e-18)
sum a = (1.752758943008657e-17,5.2723564171855e-19,-6.236957988966029e-17)
sum e = 4.144510055131544
sum de = 3.5236570605778894e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01166596585580522
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.51198452309363e-18,-4.855585629378152e-18,-9.996507593265918e-18)
sum a = (7.946953927511434e-17,1.4460635736953322e-16,7.7287952024651085e-19)
sum e = 4.144509774691191
sum de = -2.168404344971009e-18
Info: CFL hydro = 0.005037751352698404 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005037751352698404 cfl multiplier : 0.44522422329593425 [sph::Model][rank=0]
Info: Timestep 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.5110e+04 | 800 | 1 | 5.294e-02 | 0.1% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 642.759351570726 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.610844875069462, dt = 0.005037751352698404 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.3%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 394.71 us (95.4%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.109243648477926e-18,-3.843428001846021e-18,-9.657998346026166e-18)
sum a = (2.296066284828457e-16,-1.4987871378671873e-16,6.322633780745294e-17)
sum e = 4.144509853506603
sum de = 7.995991022080595e-19
Info: CFL hydro = 0.007131451063483686 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007131451063483686 cfl multiplier : 0.6301494821972895 [sph::Model][rank=0]
Info: Timestep 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.0166e+04 | 800 | 1 | 3.967e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 457.1608095205462 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.61588262642216, dt = 0.007131451063483686 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.4%)
patch tree reduce : 1342.00 ns (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 383.14 us (95.1%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (73.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0087500676318195e-17,-5.570611522745746e-18,-9.235610701240283e-18)
sum a = (1.6920968876404715e-17,2.1415353156349832e-16,4.718758993381023e-17)
sum e = 4.144509932649485
sum de = -2.3445871979999033e-18
Info: CFL hydro = 0.008529736999667288 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008529736999667288 cfl multiplier : 0.7534329881315264 [sph::Model][rank=0]
Info: Timestep 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.0176e+04 | 800 | 1 | 3.965e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 647.4638713124826 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.623014077485644, dt = 0.008529736999667288 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.4%)
patch tree reduce : 1813.00 ns (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 380.81 us (95.0%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.537048692421699e-18,-2.587686010011392e-18,-8.6874054601352e-18)
sum a = (-1.0309553755536306e-17,-1.23732619008767e-16,8.333543470487451e-18)
sum e = 4.1445100024357036
sum de = 7.453889935837843e-19
Info: CFL hydro = 0.00946583669491218 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00946583669491218 cfl multiplier : 0.8356219920876843 [sph::Model][rank=0]
Info: Timestep 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.0331e+04 | 800 | 1 | 3.935e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 780.3900148779392 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.631543814485311, dt = 0.00946583669491218 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.4%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 387.18 us (95.1%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.229244929997942e-18,-5.068651737430606e-18,-8.786262142957428e-18)
sum a = (1.0690002201549124e-16,1.501902621204615e-16,9.370415268725139e-18)
sum e = 4.144510061016934
sum de = 5.624298769768554e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011438943060275557
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0211071529845981e-17,-3.4244104712472587e-18,-8.681414146024762e-18)
sum a = (8.462731180993772e-18,9.030108627252257e-17,2.4481707718072037e-16)
sum e = 4.144509778779256
sum de = 1.6059744679941534e-18
Info: CFL hydro = 0.005041952612110801 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005041952612110801 cfl multiplier : 0.44520733069589474 [sph::Model][rank=0]
Info: Timestep 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.5366e+04 | 800 | 1 | 5.206e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 654.5406874037341 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.641009651180223, dt = 0.005041952612110801 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.3%)
patch tree reduce : 1864.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 421.50 us (95.4%)
LB move op cnt : 0
LB apply : 4.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.271933043034814e-18,-3.523267154069487e-18,-6.464627925162676e-18)
sum a = (4.216986436631835e-17,8.299168305778813e-17,8.28628698044137e-17)
sum e = 4.144509857773627
sum de = 1.1384122811097797e-18
Info: CFL hydro = 0.007134516816576212 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007134516816576212 cfl multiplier : 0.6301382204639299 [sph::Model][rank=0]
Info: Timestep 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.0177e+04 | 800 | 1 | 3.965e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 457.7936410949289 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.646051603792333, dt = 0.007134516816576212 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.2%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 430.46 us (95.7%)
LB move op cnt : 0
LB apply : 3.73 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.935845537897732e-18,-3.151431222090424e-18,-6.362775585285229e-18)
sum a = (6.175846585039562e-17,1.0381749090567085e-16,-2.652953888101977e-17)
sum e = 4.144509943364873
sum de = 3.06287113727155e-18
Info: CFL hydro = 0.008528351781812717 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008528351781812717 cfl multiplier : 0.7534254803092866 [sph::Model][rank=0]
Info: Timestep 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.0351e+04 | 800 | 1 | 3.931e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 653.3909010484157 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.653186120608909, dt = 0.008528351781812717 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.3%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 410.14 us (95.5%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0452596379923015e-17,-1.855809545708192e-18,-6.869041627617246e-18)
sum a = (-1.6889514477324916e-16,-3.232913093992382e-17,-3.404264677550911e-17)
sum e = 4.144510023609203
sum de = -3.6591823321385775e-19
Info: CFL hydro = 0.009457566786804908 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009457566786804908 cfl multiplier : 0.8356169868728577 [sph::Model][rank=0]
Info: Timestep 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.0300e+04 | 800 | 1 | 3.941e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 779.059419722665 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.661714472390722, dt = 0.009457566786804908 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.2%)
patch tree reduce : 1463.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 385.35 us (88.8%)
LB move op cnt : 0
LB apply : 33.01 us (7.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.759500687281104e-18,-2.6519054081326503e-18,-7.360329384673167e-18)
sum a = (-1.0385343879033348e-16,9.548956429216194e-17,8.799443034000391e-17)
sum e = 4.144510094762022
sum de = -1.260385025514399e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011119591331024197
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.01562936550233e-18,-2.3351146745432374e-18,-6.5335280374327135e-18)
sum a = (-5.476061096940395e-17,9.190675845411997e-17,-1.328753643412955e-16)
sum e = 4.14450978336299
sum de = -2.507217523872729e-19
Info: CFL hydro = 0.0050397325426667135 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0050397325426667135 cfl multiplier : 0.44520566229095254 [sph::Model][rank=0]
Info: Timestep 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.5590e+04 | 800 | 1 | 5.131e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 663.5050430469933 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.671172039177527, dt = 0.0050397325426667135 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.3%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 392.67 us (95.4%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.038096793416473e-18,-1.72175389248714e-18,-8.360878841116324e-18)
sum a = (-2.098068331763755e-16,9.172701903080683e-17,3.834441030680364e-19)
sum e = 4.144509870543177
sum de = 2.6020852139652106e-18
Info: CFL hydro = 0.007133903400392682 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007133903400392682 cfl multiplier : 0.6301371081939684 [sph::Model][rank=0]
Info: Timestep 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.0479e+04 | 800 | 1 | 3.906e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 464.43376323895046 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.676211771720194, dt = 0.007133903400392682 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.3%)
patch tree reduce : 1783.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 400.10 us (95.5%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.31259832961031e-18,-1.051475626381881e-18,-8.121226276698803e-18)
sum a = (8.179641589275573e-17,1.546597824468483e-16,-1.0696892212776128e-16)
sum e = 4.144509967928707
sum de = 1.6195269951502222e-18
Info: CFL hydro = 0.008531878290689701 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008531878290689701 cfl multiplier : 0.7534247387959789 [sph::Model][rank=0]
Info: Timestep 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.0251e+04 | 800 | 1 | 3.950e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 650.1106793691802 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.683345675120586, dt = 0.008531878290689701 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.3%)
patch tree reduce : 1644.00 ns (0.4%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1332.00 ns (0.3%)
LB compute : 425.13 us (95.3%)
LB move op cnt : 0
LB apply : 3.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.16166764694426e-18,1.1982628220876137e-19,-9.298519499399883e-18)
sum a = (-9.287735134001094e-17,6.248940617186906e-17,-2.0641275373281233e-16)
sum e = 4.144510060066108
sum de = 2.6156377411212794e-18
Info: CFL hydro = 0.009467086470952358 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009467086470952358 cfl multiplier : 0.8356164925306526 [sph::Model][rank=0]
Info: Timestep 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.9736e+04 | 800 | 1 | 4.053e-02 | 0.1% | 1.8% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 757.7441259815175 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.691877553411276, dt = 0.009467086470952358 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (1.5%)
patch tree reduce : 1733.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 415.80 us (95.3%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.465376839426481e-18,4.628290150313408e-19,-1.1937693365047852e-17)
sum a = (2.835089837059294e-17,1.7578515600025293e-16,8.725749870442003e-17)
sum e = 4.144510140382515
sum de = -1.4704491964334654e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010778175063495947
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.066006078997897e-18,1.106895281903433e-18,-1.0495284492959887e-17)
sum a = (-1.3132960530080246e-17,-3.5252892225817596e-17,4.110041479760515e-17)
sum e = 4.144509786990553
sum de = -1.3484764520288461e-18
Info: CFL hydro = 0.005048029649509896 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005048029649509896 cfl multiplier : 0.44520549751021754 [sph::Model][rank=0]
Info: Timestep 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.5631e+04 | 800 | 1 | 5.118e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 665.8978953661031 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.701344639882228, dt = 0.005048029649509896 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.78 us (1.1%)
patch tree reduce : 1884.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 404.56 us (95.5%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (73.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.8488209424945174e-18,1.8872639447879916e-19,-1.0462332265352477e-17)
sum a = (-9.528585961240705e-17,4.2430486530122405e-17,1.014329478897165e-16)
sum e = 4.144509886222369
sum de = 2.442843019881402e-18
Info: CFL hydro = 0.00714707791035239 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00714707791035239 cfl multiplier : 0.630136998340145 [sph::Model][rank=0]
Info: Timestep 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.0270e+04 | 800 | 1 | 3.947e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 460.4550782563707 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.706392669531738, dt = 0.00714707791035239 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.1%)
patch tree reduce : 1533.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1412.00 ns (0.3%)
LB compute : 442.62 us (95.6%)
LB move op cnt : 0
LB apply : 4.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.992811938965678e-18,5.61685697853569e-19,-9.550154692038282e-18)
sum a = (-6.1950187901929626e-18,-2.276220056837631e-16,-8.25003953007322e-17)
sum e = 4.144509994369786
sum de = 4.0318768289304696e-19
Info: CFL hydro = 0.008545519739246355 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008545519739246355 cfl multiplier : 0.7534246655600967 [sph::Model][rank=0]
Info: Timestep 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.0670e+04 | 800 | 1 | 3.870e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 664.7960314536417 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.71353974744209, dt = 0.008545519739246355 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.3%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 395.71 us (95.4%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (73.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.213741646788082e-18,-2.2527341055247137e-18,-1.085626116811378e-17)
sum a = (7.863599769949964e-17,1.327495467449763e-16,1.1006044020874731e-16)
sum e = 4.144510092629159
sum de = -8.368685518872487e-19
Info: CFL hydro = 0.009479713818701408 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009479713818701408 cfl multiplier : 0.8356164437067312 [sph::Model][rank=0]
Info: Timestep 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.0383e+04 | 800 | 1 | 3.925e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 783.8185146609219 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.7220852671813365, dt = 0.009479713818701408 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.3%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 387.95 us (95.3%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.24125201672821e-18,2.276699361966466e-19,-9.036399507068217e-18)
sum a = (-1.4255133662965297e-16,-6.273804570745224e-17,2.471057591709077e-16)
sum e = 4.144510172296989
sum de = -2.1785687403380605e-18
Info: CFL hydro = 0.010106052893111261 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010106052893111261 cfl multiplier : 0.8904109624711541 [sph::Model][rank=0]
Info: Timestep 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.0517e+04 | 800 | 1 | 3.899e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 875.2091660545916 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.731564981000038, dt = 0.010106052893111261 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.2%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 403.63 us (95.5%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.9271069415715066e-18,-9.99051627915548e-19,-5.694744061971384e-18)
sum a = (-1.4771584939285059e-16,-1.1740579130814439e-16,6.127916072156057e-17)
sum e = 4.144510231650682
sum de = 8.775790729146585e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010132523471749926
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.834241572859717e-18,-1.451395843253622e-18,-6.728245746021951e-18)
sum a = (-2.5109597436845945e-17,-1.0221706112392008e-16,-1.5241903096954446e-17)
sum e = 4.144509791376462
sum de = -1.223962608782464e-18
Info: CFL hydro = 0.005265011632102977 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005265011632102977 cfl multiplier : 0.46347032082371803 [sph::Model][rank=0]
Info: Timestep 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.5176e+04 | 800 | 1 | 5.272e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 690.1539738781522 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.74167103389315, dt = 0.005265011632102977 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.2%)
patch tree reduce : 1483.00 ns (0.3%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 408.04 us (95.6%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.426632755529281e-18,-1.9411857717819342e-18,-7.171602990194368e-18)
sum a = (5.695942324793471e-17,5.666060645667662e-17,-6.048830725898274e-17)
sum e = 4.144509909543284
sum de = -5.844527336054672e-20
Info: CFL hydro = 0.007300123357191633 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007300123357191633 cfl multiplier : 0.642313547215812 [sph::Model][rank=0]
Info: Timestep 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.0369e+04 | 800 | 1 | 3.928e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 482.59498023324755 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.746936045525253, dt = 0.007300123357191633 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.4%)
patch tree reduce : 1863.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1253.00 ns (0.3%)
LB compute : 420.63 us (95.4%)
LB move op cnt : 0
LB apply : 3.70 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (71.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.941885769026955e-18,-9.526189435596529e-19,-7.677869032526385e-18)
sum a = (-1.5629091771341506e-16,-1.9702136886470067e-16,-2.854262042212696e-17)
sum e = 4.144510019164176
sum de = 2.541098841762901e-20
Info: CFL hydro = 0.008662013207512956 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008662013207512956 cfl multiplier : 0.7615423648105413 [sph::Model][rank=0]
Info: Timestep 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.0406e+04 | 800 | 1 | 3.920e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 670.3410860206754 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.754236168882445, dt = 0.008662013207512956 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.3%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 407.73 us (95.7%)
LB move op cnt : 0
LB apply : 3.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.969245598165221e-18,-3.558840581600213e-18,-7.851617141729089e-18)
sum a = (6.433173526082876e-17,-1.2372063638054611e-17,1.1086327629954602e-16)
sum e = 4.14451010966157
sum de = -6.640738306473715e-19
Info: CFL hydro = 0.009576732465058229 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009576732465058229 cfl multiplier : 0.8410282432070275 [sph::Model][rank=0]
Info: Timestep 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.0523e+04 | 800 | 1 | 3.898e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 799.9857040420325 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.762898182089957, dt = 0.009576732465058229 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.3%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 401.51 us (95.4%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.395927270713286e-18,-2.992661398163815e-18,-6.156075248475116e-18)
sum a = (5.666584885652325e-17,-3.400669889084648e-17,2.005652311610248e-16)
sum e = 4.144510173332998
sum de = 1.0977546996415732e-18
Info: CFL hydro = 0.010183424790979197 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010183424790979197 cfl multiplier : 0.894018828804685 [sph::Model][rank=0]
Info: Timestep 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.0396e+04 | 800 | 1 | 3.922e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 878.9830461970954 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.772474914555016, dt = 0.010183424790979197 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.5%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 1092.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 399.00 us (95.2%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.010785881296992e-18,-3.464477384360813e-18,-3.593290637735232e-18)
sum a = (-1.7774169451444287e-16,9.650808769093641e-17,1.0726848783328319e-16)
sum e = 4.1445102104204485
sum de = -4.0657581468206416e-20
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01098634538891664
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.79230237408665e-18,-2.658645636506893e-18,-3.9812282263860964e-18)
sum a = (-2.257957782514752e-17,-4.6264927560802766e-17,-2.2155879580399978e-16)
sum e = 4.144509789650828
sum de = 3.3203691532368573e-19
Info: CFL hydro = 0.0052905403037819135 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0052905403037819135 cfl multiplier : 0.464672942934895 [sph::Model][rank=0]
Info: Timestep 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.5281e+04 | 800 | 1 | 5.235e-02 | 0.1% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 700.2508340049125 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.7826583393459945, dt = 0.0052905403037819135 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.4%)
patch tree reduce : 1873.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 399.44 us (94.9%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.87 us (72.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.2566292176456005e-18,-3.771532232520764e-18,-6.914725397709336e-18)
sum a = (3.6511817103273395e-17,5.66418836000815e-17,1.3046685606889938e-16)
sum e = 4.14450990251631
sum de = -1.1519648082658485e-19
Info: CFL hydro = 0.007320414108515148 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007320414108515148 cfl multiplier : 0.6431152952899301 [sph::Model][rank=0]
Info: Timestep 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.9938e+04 | 800 | 1 | 4.012e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 474.6793996625367 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.787948879649776, dt = 0.007320414108515148 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.4%)
patch tree reduce : 1894.00 ns (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 397.12 us (95.2%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.949374911665002e-18,-3.0840289383479958e-18,-5.058166937737339e-18)
sum a = (-8.381249309091815e-17,3.7948983575514726e-17,1.2876532286153498e-16)
sum e = 4.1445099976450654
sum de = 2.120970499924768e-18
Info: CFL hydro = 0.008667892882345917 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008667892882345917 cfl multiplier : 0.7620768635266201 [sph::Model][rank=0]
Info: Timestep 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.0258e+04 | 800 | 1 | 3.949e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 667.3497158012375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.795269293758292, dt = 0.008667892882345917 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.2%)
patch tree reduce : 1413.00 ns (0.3%)
gen split merge : 1032.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 397.13 us (95.5%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.6874543771539836e-18,-2.800939346629797e-18,-3.955390684284832e-18)
sum a = (-6.157273511297203e-17,1.952449442309558e-16,1.7662393997571426e-17)
sum e = 4.144510069368903
sum de = 7.182839392716467e-19
Info: CFL hydro = 0.009561854616961804 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009561854616961804 cfl multiplier : 0.8413845756844133 [sph::Model][rank=0]
Info: Timestep 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.0504e+04 | 800 | 1 | 3.902e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 799.7510659582447 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.8039371866406375, dt = 0.009561854616961804 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (1.1%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 421.00 us (95.7%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.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: 3.8762499999999984
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.111539308288125e-18,-8.762296886515676e-20,-4.207587562621085e-18)
sum a = (1.1018026649095607e-17,1.1129465091549757e-16,-9.934797057928405e-17)
sum e = 4.144510113762092
sum de = 3.7269449679189215e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011173188993552923
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.38788867163208e-18,-7.960958624244584e-19,-4.758975689347338e-18)
sum a = (5.084229154117745e-17,8.097860151668093e-17,-6.093166450315516e-17)
sum e = 4.1445097894452205
sum de = 2.1141942363467336e-18
Info: CFL hydro = 0.00507867919708963 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00507867919708963 cfl multiplier : 0.4471281918948044 [sph::Model][rank=0]
Info: Timestep 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.5087e+04 | 800 | 1 | 5.303e-02 | 0.1% | 1.9% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 649.1619902675986 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.813499041257599, dt = 0.00507867919708963 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (1.5%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 421.58 us (95.2%)
LB move op cnt : 0
LB apply : 4.16 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (75.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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.0461843095164636e-18,-1.7524593773031351e-19,-4.898460970980975e-18)
sum a = (2.4210900320280234e-17,1.1160619924924033e-16,9.086426979890374e-17)
sum e = 4.144509880376062
sum de = -1.043544591017298e-18
Info: CFL hydro = 0.007170032664810656 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007170032664810656 cfl multiplier : 0.6314187945965363 [sph::Model][rank=0]
Info: Timestep 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.0025e+04 | 800 | 1 | 3.995e-02 | 0.1% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 457.65865864087203 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.818577720454689, dt = 0.007170032664810656 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.3%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 402.70 us (95.4%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.947327626694235e-18,3.669679892643317e-19,-3.84132168047907e-18)
sum a = (-2.1810779887638746e-16,-4.752310352399476e-17,4.6959919997613584e-17)
sum e = 4.144509962425698
sum de = -4.0657581468206416e-19
Info: CFL hydro = 0.00856325688969712 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00856325688969712 cfl multiplier : 0.7542791963976908 [sph::Model][rank=0]
Info: Timestep 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.1033e+04 | 800 | 1 | 3.804e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 678.6230606622512 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.8257477531195, dt = 0.00856325688969712 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.3%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 388.22 us (95.4%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1388991374263905e-18,-4.141495878840315e-19,-3.673986149660195e-18)
sum a = (-7.068552387494833e-17,-3.0316049398816624e-17,1.0095364276088146e-16)
sum e = 4.144510025680102
sum de = 2.303929616531697e-19
Info: CFL hydro = 0.009488469178478037 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009488469178478037 cfl multiplier : 0.836186130931794 [sph::Model][rank=0]
Info: Timestep 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.0921e+04 | 800 | 1 | 3.824e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 806.1735011037947 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.834311010009197, dt = 0.009488469178478037 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.4%)
patch tree reduce : 1512.00 ns (0.3%)
gen split merge : 1153.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 414.06 us (95.2%)
LB move op cnt : 0
LB apply : 4.05 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1733491935614092e-18,-6.575467236205781e-19,-2.525338897549646e-18)
sum a = (4.176545066386377e-17,-2.4276804775495054e-17,-4.1280154220918294e-17)
sum e = 4.144510067687388
sum de = 7.047314121155779e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.012618486551132674
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8338915742372064e-18,-3.107994194789748e-19,-3.135704022550524e-18)
sum a = (-1.2378654083576095e-16,-2.254651326040054e-16,-2.0154780667513662e-17)
sum e = 4.144509790706427
sum de = 2.358139725155972e-18
Info: CFL hydro = 0.005049818243083529 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005049818243083529 cfl multiplier : 0.44539537697726467 [sph::Model][rank=0]
Info: Timestep 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.5555e+04 | 800 | 1 | 5.143e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 664.1578118586527 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.843799479187675, dt = 0.005049818243083529 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.3%)
patch tree reduce : 1913.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 416.16 us (95.4%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4199414441738223e-18,-2.779220832979459e-18,-3.2240759056794855e-18)
sum a = (2.4965805898195433e-17,2.403715221107753e-17,4.1399980503127056e-17)
sum e = 4.144509868495297
sum de = -2.303929616531697e-19
Info: CFL hydro = 0.007140966757304816 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007140966757304816 cfl multiplier : 0.6302635846515098 [sph::Model][rank=0]
Info: Timestep 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.0751e+04 | 800 | 1 | 3.855e-02 | 0.1% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 471.5572198242503 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.848849297430759, dt = 0.007140966757304816 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (1.5%)
patch tree reduce : 1754.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1073.00 ns (0.2%)
LB compute : 421.26 us (95.2%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8131214326713206e-18,-1.9535428571347126e-18,-2.506616040954527e-18)
sum a = (-6.961906996329035e-18,8.351891869950667e-17,-1.7739082818185033e-16)
sum e = 4.144509942479725
sum de = 1.395910297075087e-18
Info: CFL hydro = 0.008530438261384787 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008530438261384787 cfl multiplier : 0.7535090564343397 [sph::Model][rank=0]
Info: Timestep 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.0525e+04 | 800 | 1 | 3.898e-02 | 0.1% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 659.5685159194763 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.855990264188064, dt = 0.008530438261384787 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.06 us (1.3%)
patch tree reduce : 1814.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 384.19 us (95.2%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7101457213981662e-18,-9.046884306761483e-19,-5.103101793565625e-18)
sum a = (2.814599542801596e-16,2.1041495155858498e-16,-2.1651410932301093e-16)
sum e = 4.144510004035923
sum de = -1.043544591017298e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010095688227248503
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.898672658056318e-18,-7.94106558911227e-19,-4.985522254148278e-18)
sum a = (1.1352341976458053e-16,-8.22008295952103e-17,2.5798598559546323e-17)
sum e = 4.144509792625696
sum de = 6.911788849595091e-19
Info: CFL hydro = 0.00472734652462983 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00472734652462983 cfl multiplier : 0.4178363521447799 [sph::Model][rank=0]
Info: Timestep 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.5653e+04 | 800 | 1 | 5.111e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 600.8796549268618 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.864520702449449, dt = 0.00472734652462983 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.3%)
patch tree reduce : 1823.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 408.97 us (95.4%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6541521509240645e-18,-2.031991626268261e-18,-3.886865029146697e-18)
sum a = (-5.787609430683175e-17,-1.8673727819413372e-16,-1.1934697707992633e-16)
sum e = 4.144509856990043
sum de = -1.3688052427629493e-18
Info: CFL hydro = 0.006920596109869523 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.006920596109869523 cfl multiplier : 0.6118909014298533 [sph::Model][rank=0]
Info: Timestep 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.0364e+04 | 800 | 1 | 3.928e-02 | 0.1% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 433.21431551793023 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.869248048974079, dt = 0.006920596109869523 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (0.8%)
patch tree reduce : 1823.00 ns (0.2%)
gen split merge : 872.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.1%)
LB compute : 741.09 us (97.3%)
LB move op cnt : 0
LB apply : 3.68 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (75.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.948674914419982e-18,-3.294473846477133e-18,-5.279845559823548e-18)
sum a = (1.495432001965342e-16,-1.0468024013757393e-16,-5.059065634853905e-17)
sum e = 4.144509931323679
sum de = -1.666960840196463e-18
Info: CFL hydro = 0.00838097903996549 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00838097903996549 cfl multiplier : 0.7412606009532355 [sph::Model][rank=0]
Info: Timestep 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.9112e+04 | 800 | 1 | 4.186e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 595.1917416980039 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.876168645083949, dt = 0.00838097903996549 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.2%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 420.35 us (95.6%)
LB move op cnt : 0
LB apply : 3.65 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.638599950695419e-18,-4.3452005585952094e-18,-5.42813058405689e-18)
sum a = (-1.7398776176712152e-17,-8.84797267829494e-17,-1.5838637982354077e-16)
sum e = 4.144509998935151
sum de = -1.2468324983583301e-18
Info: CFL hydro = 0.009354399553473782 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009354399553473782 cfl multiplier : 0.8275070673021571 [sph::Model][rank=0]
Info: Timestep 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.0352e+04 | 800 | 1 | 3.931e-02 | 0.1% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 767.5529834456258 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.884549624123914, dt = 0.009354399553473782 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.4%)
patch tree reduce : 1773.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 428.76 us (95.1%)
LB move op cnt : 0
LB apply : 4.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.892868572511831e-18,-4.6425195213256985e-18,-7.48989155231139e-18)
sum a = (7.169206464550193e-17,4.074093595097887e-17,1.0261922808358324e-16)
sum e = 4.144510057145294
sum de = 2.0125502826762176e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.012224757100655263
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.382658501040143e-18,-4.271058046478538e-18,-6.242200388812663e-18)
sum a = (-6.499377547003217e-17,-2.63617820859275e-18,-2.074911902726912e-16)
sum e = 4.144509796760003
sum de = 1.0570971181733668e-18
Info: CFL hydro = 0.005003279362471389 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005003279362471389 cfl multiplier : 0.44250235576738567 [sph::Model][rank=0]
Info: Timestep 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.5527e+04 | 800 | 1 | 5.152e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 653.5990302191556 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.893904023677388, dt = 0.005003279362471389 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (1.1%)
patch tree reduce : 1423.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 429.56 us (95.9%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5376959829024244e-18,-4.949574369485649e-18,-8.661193460902033e-18)
sum a = (4.9404376154672316e-17,-1.351880115879246e-16,1.2863351395110534e-16)
sum e = 4.144509870249744
sum de = -6.776263578034403e-19
Info: CFL hydro = 0.007105376277753607 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007105376277753607 cfl multiplier : 0.6283349038449239 [sph::Model][rank=0]
Info: Timestep 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.1314e+04 | 800 | 1 | 3.753e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 479.88932972194857 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.898907303039859, dt = 0.007105376277753607 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.3%)
patch tree reduce : 1573.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 432.60 us (95.7%)
LB move op cnt : 0
LB apply : 3.57 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.138512451039792e-18,-5.812323601388731e-18,-6.740228374242827e-18)
sum a = (-1.447142010235211e-16,-1.0386542141855435e-16,7.097909826635979e-17)
sum e = 4.144509952425516
sum de = -2.066760391300493e-18
Info: CFL hydro = 0.008509216024739056 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008509216024739056 cfl multiplier : 0.7522232692299493 [sph::Model][rank=0]
Info: Timestep 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.0731e+04 | 800 | 1 | 3.859e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 662.8450259523586 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.906012679317613, dt = 0.008509216024739056 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (1.1%)
patch tree reduce : 1853.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 419.38 us (95.7%)
LB move op cnt : 0
LB apply : 3.59 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.715290287207231e-19,-6.88701556994856e-18,-6.3822473561441525e-18)
sum a = (-7.92411204246539e-17,1.647611380370469e-16,1.0632186020383396e-16)
sum e = 4.144510031152006
sum de = -9.622294280808852e-19
Info: CFL hydro = 0.009449407733433456 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009449407733433456 cfl multiplier : 0.8348155128199662 [sph::Model][rank=0]
Info: Timestep 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.0538e+04 | 800 | 1 | 3.895e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 786.4128953884787 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.914521895342352, dt = 0.009449407733433456 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (1.6%)
patch tree reduce : 1904.00 ns (0.5%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.2%)
LB compute : 392.58 us (94.9%)
LB move op cnt : 0
LB apply : 4.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.493086667187256e-19,-4.116032793870953e-18,-5.344252186510757e-18)
sum a = (-1.9754560884936398e-16,3.717011274115778e-17,-4.817615676203251e-17)
sum e = 4.144510102690867
sum de = -4.472333961502706e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011773043990754989
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.882322626545084e-20,-4.589346608595561e-18,-5.943383597554564e-18)
sum a = (-1.9114688537941614e-16,2.8760704255746905e-16,-9.646614849216334e-17)
sum e = 4.144509801515144
sum de = -3.5914196963582334e-18
Info: CFL hydro = 0.005041814410051875 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005041814410051875 cfl multiplier : 0.4449385042733221 [sph::Model][rank=0]
Info: Timestep 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.5130e+04 | 800 | 1 | 5.288e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 643.3521527276898 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.923971303075786, dt = 0.005041814410051875 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (1.2%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 397.24 us (95.7%)
LB move op cnt : 0
LB apply : 3.48 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.788708343569489e-19,-1.7884072619657634e-18,-6.704280489580199e-18)
sum a = (-7.800690971790365e-18,5.948176648842915e-17,2.4648266250342213e-17)
sum e = 4.1445098860381595
sum de = 6.776263578034403e-20
Info: CFL hydro = 0.007142589336472218 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007142589336472218 cfl multiplier : 0.6299590028488814 [sph::Model][rank=0]
Info: Timestep 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.0134e+04 | 800 | 1 | 3.973e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 456.8089449224795 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.929013117485837, dt = 0.007142589336472218 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.2%)
patch tree reduce : 1754.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 427.76 us (95.7%)
LB move op cnt : 0
LB apply : 3.78 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.081582737735934e-19,-2.04753159724221e-18,-6.17105353375121e-18)
sum a = (7.674873375471165e-17,-5.509612455958848e-17,-1.3785714202412474e-16)
sum e = 4.14450998207392
sum de = 8.809142651444724e-20
Info: CFL hydro = 0.008549430857589335 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008549430857589335 cfl multiplier : 0.7533060018992543 [sph::Model][rank=0]
Info: Timestep 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.0593e+04 | 800 | 1 | 3.885e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 661.8843725733554 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.936155706822309, dt = 0.008549430857589335 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.4%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 378.71 us (95.1%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3630239601246605e-19,-3.359629387428147e-18,-7.862101941422355e-18)
sum a = (-2.5367223943594784e-17,3.5133065943608834e-17,-6.30465983841398e-17)
sum e = 4.144510074218162
sum de = -2.9747797107571028e-18
Info: CFL hydro = 0.009495522409624826 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009495522409624826 cfl multiplier : 0.8355373345995029 [sph::Model][rank=0]
Info: Timestep 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.0771e+04 | 800 | 1 | 3.852e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 799.1064130435312 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.9447051376798985, dt = 0.009495522409624826 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.3%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1403.00 ns (0.3%)
LB compute : 382.34 us (95.3%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.741026205525416e-19,-2.351590788346942e-18,-8.103252334367487e-18)
sum a = (-3.6954425433182006e-17,-1.5392884212537487e-16,-6.646763874119993e-17)
sum e = 4.144510155704901
sum de = -4.54009659728305e-19
Info: CFL hydro = 0.010135956287552077 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010135956287552077 cfl multiplier : 0.8903582230663352 [sph::Model][rank=0]
Info: Timestep 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.0579e+04 | 800 | 1 | 3.887e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 879.3315131672372 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.954200660089524, dt = 0.010135956287552077 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.4%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.3%)
LB compute : 406.80 us (95.4%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.814720884982009e-19,-4.694194605528227e-18,-8.849170941117027e-18)
sum a = (-8.886317088601743e-17,1.0477610116334094e-16,1.1303662549310744e-16)
sum e = 4.144510224538041
sum de = 1.4941661189565858e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010585381710025366
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0462332265352476e-18,-3.492936126385394e-18,-7.965452109827412e-18)
sum a = (-2.228649022800753e-16,-1.2004196951673714e-16,-6.86035422215711e-17)
sum e = 4.144509810198201
sum de = 9.24959978401696e-19
Info: CFL hydro = 0.005287432609717784 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005287432609717784 cfl multiplier : 0.4634527410221117 [sph::Model][rank=0]
Info: Timestep 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.5800e+04 | 800 | 1 | 5.063e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 720.6570327007413 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.964336616377076, dt = 0.005287432609717784 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.3%)
patch tree reduce : 1553.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1243.00 ns (0.3%)
LB compute : 426.79 us (95.6%)
LB move op cnt : 0
LB apply : 3.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.60472380951295e-18,-5.45808715460908e-18,-9.187680188356779e-18)
sum a = (9.474664134246761e-17,1.836936906260312e-17,5.568926465652185e-18)
sum e = 4.144509921232403
sum de = 2.100641709190665e-18
Info: CFL hydro = 0.007325604795970174 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007325604795970174 cfl multiplier : 0.6423018273480744 [sph::Model][rank=0]
Info: Timestep 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.0686e+04 | 800 | 1 | 3.867e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 492.1859066615392 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.969624048986794, dt = 0.007325604795970174 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.14 us (2.9%)
patch tree reduce : 1523.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 421.72 us (94.0%)
LB move op cnt : 0
LB apply : 3.62 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3817468167197796e-18,-4.625294493258189e-18,-9.033403850012997e-18)
sum a = (1.2476312503576233e-16,1.482850242333422e-16,-5.589296933627674e-17)
sum e = 4.144510031241641
sum de = -1.6534083130403943e-18
Info: CFL hydro = 0.008676200390264028 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008676200390264028 cfl multiplier : 0.7615345515653829 [sph::Model][rank=0]
Info: Timestep 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.0691e+04 | 800 | 1 | 3.866e-02 | 0.1% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 682.0845551948006 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.976949653782764, dt = 0.008676200390264028 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 21.58 us (4.8%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 410.64 us (92.0%)
LB move op cnt : 0
LB apply : 3.70 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.516351926383989e-19,-3.0226179687160056e-18,-9.869192168419109e-18)
sum a = (4.7571034036878267e-17,-2.5079640866293756e-17,8.58839899446021e-17)
sum e = 4.1445101272191085
sum de = 7.453889935837843e-20
Info: CFL hydro = 0.0095713729385203 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0095713729385203 cfl multiplier : 0.8410230343769219 [sph::Model][rank=0]
Info: Timestep 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.1131e+04 | 800 | 1 | 3.786e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 825.0018853809237 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.985625854173028, dt = 0.0095713729385203 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.3%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 392.43 us (95.4%)
LB move op cnt : 0
LB apply : 3.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.9207656288385585e-19,-4.253833018411029e-18,-8.272506957987363e-18)
sum a = (1.783015079266369e-17,-5.183684968351017e-17,-7.618863949966868e-17)
sum e = 4.14451020073341
sum de = 6.174870185483849e-19
Info: CFL hydro = 0.01016454194558583 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01016454194558583 cfl multiplier : 0.8940153562512814 [sph::Model][rank=0]
Info: Timestep 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.0029e+04 | 800 | 1 | 3.994e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 862.6909005342567 (tsim/hr) [sph::Model][rank=0]
---------------- t = 4.995197227111548, dt = 0.004802772888451656 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.4%)
patch tree reduce : 1482.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 411.54 us (95.3%)
LB move op cnt : 0
LB apply : 3.56 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.594788466262841e-20,-4.4066115282271995e-18,-9.326978241424463e-18)
sum a = (1.525388572517532e-17,9.708325384553846e-17,1.7207803039441938e-17)
sum e = 4.144509908733907
sum de = 5.493141011842146e-19
Info: CFL hydro = 0.0105630191039308 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0105630191039308 cfl multiplier : 0.9293435708341876 [sph::Model][rank=0]
Info: Timestep 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.0810e+04 | 800 | 1 | 3.844e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 449.75568144690794 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 678 [SPH][rank=0]
Info: time since start : 880.07075507 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15092499438689516 max=0.1513733631635855 delta=0.0004483687766903277
Number of particle pairs: 319600
Distance min=0.163753 max=2.297146 mean=0.934838
---------------- t = 5, dt = 0.0105630191039308 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.05 us (1.3%)
patch tree reduce : 1733.00 ns (0.2%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.1%)
LB compute : 719.59 us (96.6%)
LB move op cnt : 0
LB apply : 4.83 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (81.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.286536871179006e-20,-2.863848144789397e-18,-9.067853906148017e-18)
sum a = (4.465925537920536e-17,2.8966805461145976e-16,1.026604183680925e-16)
sum e = 4.144510282020027
sum de = 4.2859867131067597e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011296014594935703
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.234511788353968e-19,-1.746468063192697e-18,-8.543613921484686e-18)
sum a = (5.918220078290724e-17,9.460884111792754e-17,-2.6795403444670457e-17)
sum e = 4.144509811159804
sum de = 5.277015261394291e-19
Info: CFL hydro = 0.005412059907697591 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005412059907697591 cfl multiplier : 0.47644785694472924 [sph::Model][rank=0]
Info: Timestep 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.2574e+04 | 800 | 1 | 6.362e-02 | 0.0% | 1.1% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 597.7080226102639 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.010563019103931, dt = 0.005412059907697591 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.92 us (1.2%)
patch tree reduce : 1422.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 752.00 ns (0.2%)
LB compute : 395.30 us (95.7%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.710271803690637e-19,-2.7590001478567307e-18,-9.34045869817295e-18)
sum a = (3.373109844176633e-17,8.943234572650905e-17,-9.29342688240601e-17)
sum e = 4.144509933792979
sum de = 9.50370966819325e-19
Info: CFL hydro = 0.0073925729194593455 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0073925729194593455 cfl multiplier : 0.6509652379631529 [sph::Model][rank=0]
Info: Timestep 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.0823e+04 | 800 | 1 | 3.842e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 507.1185786685777 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.015975079011628, dt = 0.0073925729194593455 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (1.0%)
patch tree reduce : 952.00 ns (0.2%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 366.55 us (95.8%)
LB move op cnt : 0
LB apply : 3.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1308605383451854e-18,-2.1478861085920475e-18,-1.014479261749926e-17)
sum a = (2.935743914114654e-17,4.8008399966940246e-17,1.2752362301214668e-16)
sum e = 4.1445100349312485
sum de = 1.7381116077658243e-18
Info: CFL hydro = 0.008711297051461614 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008711297051461614 cfl multiplier : 0.767310158642102 [sph::Model][rank=0]
Info: Timestep 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.0974e+04 | 800 | 1 | 3.814e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 697.7221629234955 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.023367651931088, dt = 0.008711297051461614 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (1.0%)
patch tree reduce : 1022.00 ns (0.3%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.2%)
LB compute : 360.82 us (95.7%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.436417557977527e-18,-1.578711268100431e-18,-8.263519986821706e-18)
sum a = (-1.4939940865788368e-16,9.560339926026026e-17,-1.8601981832940877e-16)
sum e = 4.144510112303629
sum de = -2.812149384884277e-19
Info: CFL hydro = 0.009588012778238453 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009588012778238453 cfl multiplier : 0.8448734390947346 [sph::Model][rank=0]
Info: Timestep 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.1035e+04 | 800 | 1 | 3.803e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 824.5703408500626 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.03207894898255, dt = 0.009588012778238453 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (1.1%)
patch tree reduce : 1032.00 ns (0.3%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 363.82 us (95.7%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.938491196330441e-19,-3.924310742336935e-19,-1.1316094526089903e-17)
sum a = (-6.94513131681981e-17,-1.06705304306902e-16,1.9855814093402803e-16)
sum e = 4.144510160163868
sum de = -7.047314121155779e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010021491260086324
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.156075248475115e-19,-1.2372063638054612e-18,-9.533678578234577e-18)
sum a = (1.1033604065782747e-16,-2.5105103951263115e-16,1.5353641105114116e-16)
sum e = 4.1445098095417805
sum de = 9.893344823930228e-19
Info: CFL hydro = 0.0050870192628602005 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0050870192628602005 cfl multiplier : 0.4482911463649115 [sph::Model][rank=0]
Info: Timestep 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.5256e+04 | 800 | 1 | 5.244e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 658.2186913977073 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.0416669617607885, dt = 0.0050870192628602005 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.32 us (1.1%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 362.49 us (95.7%)
LB move op cnt : 0
LB apply : 3.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.736683260744451e-19,-3.5079144116614895e-18,-8.985473337129493e-18)
sum a = (-7.471168695716272e-18,-6.567079396451167e-17,7.025939165884343e-17)
sum e = 4.144509907741806
sum de = 2.622414004699314e-18
Info: CFL hydro = 0.007173668138396596 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007173668138396596 cfl multiplier : 0.6321940975766077 [sph::Model][rank=0]
Info: Timestep 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.0827e+04 | 800 | 1 | 3.841e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 476.7547494440258 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.046753981023649, dt = 0.007173668138396596 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.56 us (1.2%)
patch tree reduce : 862.00 ns (0.2%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.2%)
LB compute : 359.10 us (95.5%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.332269558289881e-19,-3.492936126385394e-18,-8.711370716576952e-18)
sum a = (-1.3954369694621306e-16,1.3675174457074892e-16,-8.995883245396379e-17)
sum e = 4.1445099947043635
sum de = -2.981555974335137e-19
Info: CFL hydro = 0.008565658609115031 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008565658609115031 cfl multiplier : 0.7547960650510719 [sph::Model][rank=0]
Info: Timestep 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.1045e+04 | 800 | 1 | 3.801e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 679.3567114774002 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.053927649162046, dt = 0.008565658609115031 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (1.2%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 393.59 us (95.7%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3929805306768509e-18,-1.3780022454007558e-18,-1.0065407705535955e-17)
sum a = (3.7301921651587414e-17,-5.2975199364493403e-17,3.351316439099914e-17)
sum e = 4.1445100590368895
sum de = 9.961107459710572e-19
Info: CFL hydro = 0.009496088149356728 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009496088149356728 cfl multiplier : 0.8365307100340479 [sph::Model][rank=0]
Info: Timestep 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.1156e+04 | 800 | 1 | 3.781e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 815.4587441788689 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.0624933077711605, dt = 0.009496088149356728 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.83 us (1.2%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 389.82 us (95.6%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.325179331293128e-19,-2.878826430065492e-18,-9.064858249092797e-18)
sum a = (8.091569271852134e-17,-8.686207197313112e-17,-7.629217689663968e-17)
sum e = 4.144510096725818
sum de = -3.2526065174565133e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010851983775627032
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.549853610434556e-19,-2.9896657411085963e-18,-9.628041775473976e-18)
sum a = (1.7645917883767722e-16,-9.732290640995599e-17,-4.9239615016635266e-17)
sum e = 4.144509808802996
sum de = 6.301925127571995e-19
Info: CFL hydro = 0.005060671617148191 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005060671617148191 cfl multiplier : 0.4455102366780159 [sph::Model][rank=0]
Info: Timestep 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.6748e+04 | 800 | 1 | 4.777e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 715.6723739513429 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.071989395920517, dt = 0.005060671617148191 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.3%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1193.00 ns (0.3%)
LB compute : 383.62 us (95.5%)
LB move op cnt : 0
LB apply : 3.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.398971844787289e-18,-3.807480117183393e-18,-9.625046118418758e-18)
sum a = (1.0621401654984608e-16,1.2813024356582854e-16,1.2766928683645671e-17)
sum e = 4.144509890123061
sum de = 6.979551485375435e-19
Info: CFL hydro = 0.007160108497592495 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007160108497592495 cfl multiplier : 0.6303401577853439 [sph::Model][rank=0]
Info: Timestep 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.0550e+04 | 800 | 1 | 3.893e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 467.98064769814283 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.077050067537665, dt = 0.007160108497592495 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.4%)
patch tree reduce : 1452.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.3%)
LB compute : 393.65 us (95.1%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.050527254297429e-18,-2.010085884051972e-18,-9.479756751240633e-18)
sum a = (6.788158887126332e-17,2.667333041967028e-17,-1.0893332424172116e-17)
sum e = 4.144509961866225
sum de = -5.21772295508649e-19
Info: CFL hydro = 0.008556122968849719 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008556122968849719 cfl multiplier : 0.7535601051902292 [sph::Model][rank=0]
Info: Timestep 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.0618e+04 | 800 | 1 | 3.880e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 664.3229789416977 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.084210176035257, dt = 0.008556122968849719 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.45 us (1.1%)
patch tree reduce : 1262.00 ns (0.3%)
gen split merge : 1022.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 403.54 us (95.9%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2617210766903707e-18,-2.3216342177947515e-18,-9.936594452161537e-18)
sum a = (5.4360690752532205e-17,-1.1136654668482282e-16,-1.6597737480146581e-16)
sum e = 4.144510015387842
sum de = -1.2536087619363645e-18
Info: CFL hydro = 0.00948185395383885 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00948185395383885 cfl multiplier : 0.8357067367934862 [sph::Model][rank=0]
Info: Timestep 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.0962e+04 | 800 | 1 | 3.816e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 807.1066659565382 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.092766299004107, dt = 0.00948185395383885 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.71 us (1.2%)
patch tree reduce : 1853.00 ns (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 389.14 us (95.6%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6661347791449407e-18,-4.074093595097887e-18,-1.1940689022103071e-17)
sum a = (1.5294476878273542e-16,3.893155908962657e-17,1.9097313727021343e-19)
sum e = 4.144510049490621
sum de = -5.89534931288993e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011640565808387144
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3925816150355565e-18,-3.0196223116607865e-18,-1.122772264296094e-17)
sum a = (-1.2205954454342717e-16,-1.0163665256947139e-16,-1.4836141348825028e-16)
sum e = 4.144509810109338
sum de = -1.1655173354219173e-18
Info: CFL hydro = 0.005049450070511856 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005049450070511856 cfl multiplier : 0.4452355789311621 [sph::Model][rank=0]
Info: Timestep 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.5754e+04 | 800 | 1 | 5.078e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 672.2040099822285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.102248152957946, dt = 0.005049450070511856 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.4%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 376.00 us (95.2%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1143844245414807e-18,-4.676220663196912e-18,-1.2703083742656315e-17)
sum a = (5.371213100007728e-18,-8.90788581939932e-17,3.064856733194594e-17)
sum e = 4.1445098773989235
sum de = -2.507217523872729e-19
Info: CFL hydro = 0.007145157449075413 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007145157449075413 cfl multiplier : 0.6301570526207748 [sph::Model][rank=0]
Info: Timestep 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.0590e+04 | 800 | 1 | 3.885e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 467.8620046400772 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.107297603028458, dt = 0.007145157449075413 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.2%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 426.26 us (95.7%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7884072619657634e-18,-4.915873227614435e-18,-1.1894256337747176e-17)
sum a = (2.8668438018446157e-18,5.708524084425392e-17,4.320785953595174e-17)
sum e = 4.144509940963785
sum de = -2.879912020664621e-18
Info: CFL hydro = 0.008536081405298442 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008536081405298442 cfl multiplier : 0.7534380350805167 [sph::Model][rank=0]
Info: Timestep 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.0885e+04 | 800 | 1 | 3.831e-02 | 0.1% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 671.5186308159401 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.114442760477534, dt = 0.008536081405298442 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.2%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 422.00 us (95.8%)
LB move op cnt : 0
LB apply : 3.64 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (72.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5083133273027837e-18,-3.9812282263860964e-18,-1.166059508744009e-17)
sum a = (-2.1489645451319265e-16,8.522045190687109e-17,5.1474375179828666e-17)
sum e = 4.144509993973786
sum de = -1.7211709488207383e-18
Info: CFL hydro = 0.009460192320709715 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009460192320709715 cfl multiplier : 0.8356253567203445 [sph::Model][rank=0]
Info: Timestep 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.0596e+04 | 800 | 1 | 3.884e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 791.1397665399539 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.122978841882833, dt = 0.009460192320709715 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.89 us (1.1%)
patch tree reduce : 1352.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 428.81 us (95.9%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.352539160431394e-18,-2.754506662273902e-18,-1.0934148251549475e-17)
sum a = (7.125469871543995e-17,-1.392381399265807e-17,2.0800194980060604e-16)
sum e = 4.144510036567382
sum de = 8.74138001566438e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011875644409219888
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.991314110438069e-20,-3.5977841233180604e-18,-1.0308055927008697e-17)
sum a = (1.4011287178670467e-16,-6.3268277006226e-17,7.070199998875203e-17)
sum e = 4.144509813774985
sum de = -1.3417001884508117e-18
Info: CFL hydro = 0.005038341692541548 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005038341692541548 cfl multiplier : 0.4452084522401149 [sph::Model][rank=0]
Info: Timestep 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.5780e+04 | 800 | 1 | 5.070e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 671.7820630409947 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.132439034203542, dt = 0.005038341692541548 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (1.1%)
patch tree reduce : 1223.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 389.99 us (95.8%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1398475095108426e-18,-4.2912787316012665e-18,-1.0892209052776409e-17)
sum a = (5.419143612891233e-17,8.205703805655978e-17,4.1873294317851663e-17)
sum e = 4.144509876085918
sum de = 7.589415207398531e-19
Info: CFL hydro = 0.0071298536748077 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0071298536748077 cfl multiplier : 0.6301389681600766 [sph::Model][rank=0]
Info: Timestep 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.0007e+04 | 800 | 1 | 3.999e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 453.6027886434229 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.137477375896084, dt = 0.0071298536748077 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.93 us (1.3%)
patch tree reduce : 1183.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 371.44 us (95.5%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0814321969340714e-18,-2.863848144789397e-18,-1.0336514669033277e-17)
sum a = (3.1801895298205265e-17,3.0316049398816624e-17,-7.365721567372561e-17)
sum e = 4.144509943010481
sum de = -1.2874900798265365e-18
Info: CFL hydro = 0.008524008199266853 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008524008199266853 cfl multiplier : 0.7534259787733845 [sph::Model][rank=0]
Info: Timestep 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.0900e+04 | 800 | 1 | 3.828e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 670.5724953645796 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.144607229570892, dt = 0.008524008199266853 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.31 us (1.1%)
patch tree reduce : 1323.00 ns (0.3%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 386.36 us (95.9%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4109544730081651e-18,-3.0001505408018627e-18,-1.1373012010139064e-17)
sum a = (-5.547956866265651e-18,1.259374226014082e-16,-5.84827148605136e-17)
sum e = 4.144510006587574
sum de = -6.2341624917916505e-19
Info: CFL hydro = 0.009455132769940252 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009455132769940252 cfl multiplier : 0.8356173191822563 [sph::Model][rank=0]
Info: Timestep 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.0573e+04 | 800 | 1 | 3.889e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 789.1258183500446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.153131237770158, dt = 0.009455132769940252 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (0.9%)
patch tree reduce : 1412.00 ns (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 435.85 us (96.1%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0709473972408048e-18,-1.482850242333422e-18,-1.1732490856765348e-17)
sum a = (3.2640679273666595e-17,-3.05317367067924e-17,-1.8836391997511765e-16)
sum e = 4.144510065508737
sum de = 1.0232158002831948e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011917361438690413
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3375608751552989e-18,-2.204803592641209e-18,-1.2514357348177516e-17)
sum a = (5.758851122953071e-17,-9.969546679768947e-18,1.962380045447609e-16)
sum e = 4.144509818834687
sum de = -6.098637220230962e-19
Info: CFL hydro = 0.005040604375925236 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005040604375925236 cfl multiplier : 0.4452057730607521 [sph::Model][rank=0]
Info: Timestep 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.6053e+04 | 800 | 1 | 4.984e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 683.0223721256802 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.162586370540098, dt = 0.005040604375925236 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (1.0%)
patch tree reduce : 922.00 ns (0.2%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 407.75 us (96.3%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.783913776382935e-18,-2.329872274696604e-18,-9.786811599400585e-18)
sum a = (1.251944996517139e-16,3.6427189791463457e-17,1.3105999616583275e-17)
sum e = 4.144509887789533
sum de = 2.222614453595284e-18
Info: CFL hydro = 0.007136781007720677 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007136781007720677 cfl multiplier : 0.6301371820405014 [sph::Model][rank=0]
Info: Timestep 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.1099e+04 | 800 | 1 | 3.792e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 478.58834403999356 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.167626974916024, dt = 0.007136781007720677 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (1.0%)
patch tree reduce : 801.00 ns (0.2%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 376.91 us (96.2%)
LB move op cnt : 0
LB apply : 3.04 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.899796029452025e-18,-1.740476749082259e-18,-1.0231666672100611e-17)
sum a = (3.375506369820808e-17,3.2089478375506296e-17,-3.065156298900116e-17)
sum e = 4.144509968140189
sum de = 1.883801274693564e-18
Info: CFL hydro = 0.008538552027344298 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008538552027344298 cfl multiplier : 0.7534247880270009 [sph::Model][rank=0]
Info: Timestep 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.0810e+04 | 800 | 1 | 3.844e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 668.3169248912315 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.1747637559237445, dt = 0.008538552027344298 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (1.0%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 391.56 us (96.0%)
LB move op cnt : 0
LB apply : 3.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (84.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8488698595133017e-18,-1.6753212081312449e-18,-1.0417397409524192e-17)
sum a = (-6.381947790438631e-17,-7.359730253262123e-17,-1.4647115388640707e-16)
sum e = 4.14451004804789
sum de = -4.404571325722362e-20
Info: CFL hydro = 0.009479479107340354 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009479479107340354 cfl multiplier : 0.8356165253513339 [sph::Model][rank=0]
Info: Timestep 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.0863e+04 | 800 | 1 | 3.834e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 801.6444347196533 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.183302307951089, dt = 0.009479479107340354 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (0.9%)
patch tree reduce : 751.00 ns (0.2%)
gen split merge : 662.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 702.00 ns (0.2%)
LB compute : 380.75 us (96.7%)
LB move op cnt : 0
LB apply : 2.60 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7225028067509448e-18,-2.6125874092829005e-18,-1.2538322604619267e-17)
sum a = (5.931400969333688e-17,5.291528622338902e-17,1.261096728820833e-16)
sum e = 4.144510123099074
sum de = -1.3383120566617945e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011556527448939006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.304409189727242e-18,-2.038544626076553e-18,-1.1050978876703018e-17)
sum a = (-8.627492319030819e-17,-1.2414002836827678e-17,1.090823581802183e-16)
sum e = 4.144509823673908
sum de = -8.571973426213519e-19
Info: CFL hydro = 0.0050582696450499265 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0050582696450499265 cfl multiplier : 0.44520550845044465 [sph::Model][rank=0]
Info: Timestep 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.5707e+04 | 800 | 1 | 5.093e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 670.0214367677243 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.192781787058429, dt = 0.0050582696450499265 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (1.1%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 390.43 us (95.9%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2896303622717943e-18,-2.401768044021861e-18,-1.0746919685598285e-17)
sum a = (-2.784762798531614e-17,-6.890011227003779e-17,-1.7538074229779837e-17)
sum e = 4.1445099076611065
sum de = 1.5720931501039814e-18
Info: CFL hydro = 0.007165308341613441 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007165308341613441 cfl multiplier : 0.6301370056336298 [sph::Model][rank=0]
Info: Timestep 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.0314e+04 | 800 | 1 | 3.938e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 462.38445504778684 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.1978400567034795, dt = 0.007165308341613441 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.88 us (2.3%)
patch tree reduce : 2.51 us (0.6%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 405.40 us (94.3%)
LB move op cnt : 0
LB apply : 3.48 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2267215641121946e-18,-2.9623303704797227e-18,-1.1107896360752179e-17)
sum a = (-1.0756805353880508e-16,-2.416656459586299e-16,-2.1178172009002864e-17)
sum e = 4.144510004944979
sum de = 4.946672411965114e-19
Info: CFL hydro = 0.008575413622076464 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008575413622076464 cfl multiplier : 0.75342467042242 [sph::Model][rank=0]
Info: Timestep 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.1212e+04 | 800 | 1 | 3.771e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 683.963240501619 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.205005365045093, dt = 0.008575413622076464 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (1.0%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 384.45 us (95.8%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.0177255674918827e-20,-5.602627607523399e-18,-1.1187281272715483e-17)
sum a = (-7.836638856452994e-17,-9.849720397560185e-18,9.978308976655461e-17)
sum e = 4.144510098933999
sum de = 1.9397054492123478e-18
Info: CFL hydro = 0.009521147818949987 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009521147818949987 cfl multiplier : 0.8356164469482801 [sph::Model][rank=0]
Info: Timestep 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.0683e+04 | 800 | 1 | 3.868e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 798.1587089955792 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.213580778667169, dt = 0.009521147818949987 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.3%)
patch tree reduce : 1743.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 395.85 us (95.4%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.942834141111407e-19,-4.712917462123346e-18,-9.779322456762537e-18)
sum a = (-4.122024107981391e-17,-6.580859418905175e-17,7.415599257341958e-17)
sum e = 4.144510181593854
sum de = 1.0418505251227894e-19
Info: CFL hydro = 0.01015708349510691 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01015708349510691 cfl multiplier : 0.8904109646321867 [sph::Model][rank=0]
Info: Timestep 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.1168e+04 | 800 | 1 | 3.779e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 906.9542064567595 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.22310192648612, dt = 0.01015708349510691 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.63 us (0.9%)
patch tree reduce : 921.00 ns (0.2%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 378.55 us (96.1%)
LB move op cnt : 0
LB apply : 3.36 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.504120923323681e-19,-5.5412166378914085e-18,-9.232615044185064e-18)
sum a = (-6.214190995346365e-17,-1.5424039045911764e-16,7.42533514277142e-17)
sum e = 4.144510249679937
sum de = 1.6086214459543231e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01023606313570982
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.750863714737956e-19,-5.965851025468707e-18,-9.226623730074625e-18)
sum a = (-8.100256677312269e-18,-8.38065017768077e-17,-7.117082031789382e-17)
sum e = 4.144509831489739
sum de = 2.0349966557784566e-19
Info: CFL hydro = 0.005287317804848831 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005287317804848831 cfl multiplier : 0.46347032154406226 [sph::Model][rank=0]
Info: Timestep 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.5683e+04 | 800 | 1 | 5.101e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 716.7994110893687 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.233259009981227, dt = 0.005287317804848831 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.69 us (1.1%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 419.09 us (96.3%)
LB move op cnt : 0
LB apply : 3.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.126118677922925e-19,-6.091668621787906e-18,-1.0201710101548422e-17)
sum a = (-2.0274606949722424e-17,-1.5558244481985576e-16,3.5198970398823654e-17)
sum e = 4.144509943188169
sum de = -5.022905377218001e-19
Info: CFL hydro = 0.007327874909513785 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007327874909513785 cfl multiplier : 0.6423135476960415 [sph::Model][rank=0]
Info: Timestep 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.0978e+04 | 800 | 1 | 3.813e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 499.1317430002009 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.238546327786076, dt = 0.007327874909513785 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (1.0%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 407.52 us (96.0%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.079649305802941e-19,-7.489142638047586e-18,-9.79879422762146e-18)
sum a = (1.3269562491798234e-16,2.0583758757821028e-16,7.476261312710144e-17)
sum e = 4.144510052449956
sum de = -7.326834993749698e-19
Info: CFL hydro = 0.00868975623941133 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00868975623941133 cfl multiplier : 0.7615423651306944 [sph::Model][rank=0]
Info: Timestep 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.0882e+04 | 800 | 1 | 3.831e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 688.6069294304097 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.24587420269559, dt = 0.00868975623941133 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.08 us (1.0%)
patch tree reduce : 1032.00 ns (0.2%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 402.68 us (96.2%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.242538158180477e-19,-4.420091984975685e-18,-8.862651397865513e-18)
sum a = (6.209397944058014e-17,2.633781682948575e-17,-2.285686333132123e-17)
sum e = 4.1445101466609495
sum de = -4.2012834183813297e-19
Info: CFL hydro = 0.009600719909691175 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009600719909691175 cfl multiplier : 0.841028243420463 [sph::Model][rank=0]
Info: Timestep 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.0537e+04 | 800 | 1 | 3.895e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 803.0887505191646 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.254563958935001, dt = 0.009600719909691175 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.42 us (1.0%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 405.04 us (95.8%)
LB move op cnt : 0
LB apply : 3.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.302361904756475e-18,-5.266365103075062e-18,-9.575617777007643e-18)
sum a = (-1.340616445351622e-16,2.5115588750956384e-17,1.3216838927626378e-16)
sum e = 4.144510216925494
sum de = -6.2341624917916505e-19
Info: CFL hydro = 0.01020834409539435 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01020834409539435 cfl multiplier : 0.8940188289469754 [sph::Model][rank=0]
Info: Timestep 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.1023e+04 | 800 | 1 | 3.805e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 908.2763226357188 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.264164678844692, dt = 0.01020834409539435 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.19 us (1.0%)
patch tree reduce : 1323.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 389.98 us (95.7%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1769187655691782e-18,-4.809527402154159e-18,-7.484649152464757e-18)
sum a = (-1.0710073103819092e-16,-1.1903542874618356e-16,1.4318042461124897e-16)
sum e = 4.144510261666186
sum de = -4.3029273720518457e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010178990703145527
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2634183630386277e-18,-5.4760610969403944e-18,-7.294424929458348e-18)
sum a = (-8.744922075595405e-17,9.119978338908828e-17,-2.812921974850673e-17)
sum e = 4.144509830744736
sum de = 2.270048298641525e-19
Info: CFL hydro = 0.005305566503212976 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005305566503212976 cfl multiplier : 0.46467294298232514 [sph::Model][rank=0]
Info: Timestep 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.5906e+04 | 800 | 1 | 5.029e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 730.6941366961199 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.274373022940086, dt = 0.005305566503212976 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (1.1%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 402.95 us (95.9%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2244748213207803e-18,-3.967747769637611e-18,-8.453744209828115e-18)
sum a = (-5.257977263320449e-17,1.5613364571801608e-17,-5.447901920621336e-17)
sum e = 4.144509946351508
sum de = -6.776263578034403e-19
Info: CFL hydro = 0.007342853621713307 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007342853621713307 cfl multiplier : 0.6431152953215501 [sph::Model][rank=0]
Info: Timestep 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.0542e+04 | 800 | 1 | 3.894e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 490.4530156626929 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.279678589443299, dt = 0.007342853621713307 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.22 us (1.0%)
patch tree reduce : 1142.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 408.50 us (96.0%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5951873819041357e-18,-4.0336522248524295e-18,-8.849170941117027e-18)
sum a = (1.6763696881005715e-17,-1.1558443181857121e-16,-1.609266970063665e-17)
sum e = 4.144510045785914
sum de = 2.5139937874507634e-18
Info: CFL hydro = 0.008695541317107284 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008695541317107284 cfl multiplier : 0.7620768635477001 [sph::Model][rank=0]
Info: Timestep 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.0080e+04 | 800 | 1 | 3.984e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 663.502875421378 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.287021443065012, dt = 0.008695541317107284 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (1.2%)
patch tree reduce : 1173.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 387.30 us (95.6%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3907337878854366e-18,-5.031206024240368e-18,-8.920317796178479e-18)
sum a = (-2.02865895779433e-16,1.0249940180137448e-16,8.309952671177601e-17)
sum e = 4.144510121068186
sum de = 3.6930636500287495e-19
Info: CFL hydro = 0.009591221316421424 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009591221316421424 cfl multiplier : 0.8413845756984667 [sph::Model][rank=0]
Info: Timestep 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.0758e+04 | 800 | 1 | 3.854e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 812.261809078105 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.2957169843821195, dt = 0.009591221316421424 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (0.7%)
patch tree reduce : 1923.00 ns (0.3%)
gen split merge : 842.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.1%)
LB compute : 704.91 us (97.3%)
LB move op cnt : 0
LB apply : 3.73 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (74.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.361676672398914e-18,-3.6517059503120025e-18,-7.655401604612242e-18)
sum a = (6.637177771543293e-17,-6.380150396205499e-17,5.890660033382709e-17)
sum e = 4.144510166066004
sum de = -2.1074179727686992e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010228821133274068
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.860103573470373e-18,-4.6567488923379885e-18,-7.846374741882456e-18)
sum a = (-9.941986634860931e-17,5.266365103075062e-17,1.25182517023493e-16)
sum e = 4.144509828952965
sum de = -1.9244588561617704e-18
Info: CFL hydro = 0.005093047148608703 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005093047148608703 cfl multiplier : 0.44712819189948894 [sph::Model][rank=0]
Info: Timestep 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.4020e+04 | 800 | 1 | 5.706e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 605.1169074099948 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.305308205698541, dt = 0.005093047148608703 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (1.2%)
patch tree reduce : 1853.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 395.17 us (95.5%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.987968454760339e-18,-3.4075599003116514e-18,-6.8630503135068074e-18)
sum a = (-2.1665790086166144e-16,4.882921000007026e-17,7.53228009964274e-17)
sum e = 4.144509923599786
sum de = 5.624298769768554e-19
Info: CFL hydro = 0.007189376816843817 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007189376816843817 cfl multiplier : 0.6314187945996593 [sph::Model][rank=0]
Info: Timestep 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.0872e+04 | 800 | 1 | 3.833e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 478.3533528083518 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.31040125284715, dt = 0.007189376816843817 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (1.1%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 389.51 us (95.9%)
LB move op cnt : 0
LB apply : 3.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.349295128536743e-18,-2.980678769942939e-18,-6.442909411512338e-18)
sum a = (-1.4649961262843164e-16,4.945829798166626e-17,1.1623149374249853e-17)
sum e = 4.144510006358671
sum de = -3.9979955110402976e-19
Info: CFL hydro = 0.008584443538261531 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008584443538261531 cfl multiplier : 0.7542791963997729 [sph::Model][rank=0]
Info: Timestep 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.0698e+04 | 800 | 1 | 3.865e-02 | 0.1% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 669.613677774214 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.317590629663994, dt = 0.008584443538261531 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (1.1%)
patch tree reduce : 1352.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 398.48 us (95.7%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.264468358906157e-18,-2.9821765984705487e-18,-6.663839119334742e-18)
sum a = (1.21216267082383e-16,1.996695297015143e-16,-2.637376471414838e-17)
sum e = 4.144510066169474
sum de = -1.6601845766184287e-18
Info: CFL hydro = 0.009513157695347208 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009513157695347208 cfl multiplier : 0.8361861309331818 [sph::Model][rank=0]
Info: Timestep 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.0001e+04 | 800 | 1 | 4.000e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 772.6224017554289 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.326175073202255, dt = 0.009513157695347208 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.36 us (1.0%)
patch tree reduce : 1273.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 416.34 us (95.9%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.418594156448075e-18,1.8872639447879916e-19,-7.06338487907458e-18)
sum a = (3.2952227607409376e-17,6.086650896220414e-17,8.84317962700659e-18)
sum e = 4.14451009953413
sum de = 1.2468324983583301e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010775256948556872
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.249888989271358e-18,-8.297970042956725e-19,-6.84919539962642e-18)
sum a = (-3.418643831415962e-17,1.2019025454097048e-16,1.511009418652481e-17)
sum e = 4.144509828099839
sum de = 9.554531645028508e-19
Info: CFL hydro = 0.005065487225277613 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005065487225277613 cfl multiplier : 0.44539537697772724 [sph::Model][rank=0]
Info: Timestep 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.5601e+04 | 800 | 1 | 5.128e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 667.8772399789154 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.335688230897603, dt = 0.005065487225277613 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.97 us (1.2%)
patch tree reduce : 1764.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 380.77 us (95.5%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.9014443987814975e-18,1.8872639447879916e-19,-6.7121440893501486e-18)
sum a = (-1.1707027771795986e-17,-1.9301018406776236e-17,-1.1536874451059545e-16)
sum e = 4.14450990468085
sum de = 8.944667923005412e-19
Info: CFL hydro = 0.007165635730512706 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007165635730512706 cfl multiplier : 0.6302635846518182 [sph::Model][rank=0]
Info: Timestep 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.0582e+04 | 800 | 1 | 3.887e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 469.1502657426184 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.340753718122881, dt = 0.007165635730512706 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.88 us (1.1%)
patch tree reduce : 1473.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 410.30 us (95.7%)
LB move op cnt : 0
LB apply : 4.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.564432980069356e-18,-5.811574687124927e-19,-7.87221228398372e-18)
sum a = (-8.501674722711619e-17,5.929603575100556e-17,-1.4355188608609614e-17)
sum e = 4.14450997115385
sum de = 1.5924219408380846e-18
Info: CFL hydro = 0.008563829436974571 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008563829436974571 cfl multiplier : 0.7535090564345456 [sph::Model][rank=0]
Info: Timestep 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.0788e+04 | 800 | 1 | 3.848e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 670.3026017523019 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.347919353853393, dt = 0.008563829436974571 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (1.0%)
patch tree reduce : 1372.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.2%)
LB compute : 406.45 us (95.9%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.713267460745856e-18,4.74811643252217e-19,-7.624883348362198e-18)
sum a = (-2.2557297625799328e-17,2.1483354571503305e-16,-7.031406240010117e-17)
sum e = 4.144510020030803
sum de = 2.3174821436877657e-18
Info: CFL hydro = 0.009493676290071067 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009493676290071067 cfl multiplier : 0.8356727042896971 [sph::Model][rank=0]
Info: Timestep 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.0706e+04 | 800 | 1 | 3.864e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 797.9347548604335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.356483183290368, dt = 0.009493676290071067 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.05 us (1.2%)
patch tree reduce : 1743.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 413.93 us (95.7%)
LB move op cnt : 0
LB apply : 3.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.594939007064704e-18,3.2682618472439665e-18,-8.445506152926263e-18)
sum a = (-7.860604112894746e-18,9.421341438663863e-17,7.052974970807695e-17)
sum e = 4.144510050614475
sum de = -3.449118161219511e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010590931722301805
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.3642734138128384e-18,2.5418150113533507e-18,-7.775789572518856e-18)
sum a = (-9.306907339154495e-17,-8.691599380012506e-17,-1.7161520137938805e-16)
sum e = 4.144509829398686
sum de = -2.0735366548785272e-18
Info: CFL hydro = 0.005051908458771322 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005051908458771322 cfl multiplier : 0.4452242347632323 [sph::Model][rank=0]
Info: Timestep 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.5523e+04 | 800 | 1 | 5.153e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 663.1859711944402 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.365976859580439, dt = 0.005051908458771322 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.4%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 415.28 us (95.3%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (76.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.342355442341853e-18,8.642470604306913e-19,-9.754982743188882e-18)
sum a = (-1.6604327925668063e-16,1.2775279077687093e-16,7.354937201973773e-17)
sum e = 4.144509891491985
sum de = -3.9302328752599536e-19
Info: CFL hydro = 0.007145796765380504 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007145796765380504 cfl multiplier : 0.6301494898421548 [sph::Model][rank=0]
Info: Timestep 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.0567e+04 | 800 | 1 | 3.890e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 467.5697908628175 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.37102876803921, dt = 0.007145796765380504 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.64 us (1.1%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 393.79 us (95.7%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.491189923018352e-18,2.806930660740235e-18,-8.698639174092271e-18)
sum a = (-1.990584156622496e-16,-8.510062562466232e-17,6.441860931543012e-17)
sum e = 4.144509949655751
sum de = 2.9375102610779136e-18
Info: CFL hydro = 0.008537729660337588 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008537729660337588 cfl multiplier : 0.7534329932281031 [sph::Model][rank=0]
Info: Timestep 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.0871e+04 | 800 | 1 | 3.833e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 671.1419875351354 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.37817456480459, dt = 0.008537729660337588 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (1.0%)
patch tree reduce : 1452.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 429.84 us (95.9%)
LB move op cnt : 0
LB apply : 4.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0681015230383466e-17,1.3809979024559747e-18,-8.19162421749645e-18)
sum a = (3.2259332130537214e-16,1.0718460943573705e-16,-6.916373009089706e-17)
sum e = 4.144509998088613
sum de = 9.012430558785756e-19
Info: CFL hydro = 0.00946336038306592 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00946336038306592 cfl multiplier : 0.835621995485402 [sph::Model][rank=0]
Info: Timestep 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.1663e+04 | 800 | 1 | 3.693e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 832.2851437866343 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.386712294464928, dt = 0.00946336038306592 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (1.0%)
patch tree reduce : 1203.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 410.40 us (95.9%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.1450409923386915e-18,2.97768311288772e-18,-9.362177211823288e-18)
sum a = (2.3348151088377155e-17,3.022018837304962e-17,1.4865648570818935e-16)
sum e = 4.144510037095191
sum de = -5.72594272343907e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01059839707387909
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.6054238067579704e-18,2.354586445402161e-18,-8.429030039122558e-18)
sum a = (-1.341515142468188e-16,4.69000068565092e-17,1.1853215836090674e-16)
sum e = 4.144509832948869
sum de = -1.2705494208814505e-18
Info: CFL hydro = 0.005040935214471239 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005040935214471239 cfl multiplier : 0.4452073318284673 [sph::Model][rank=0]
Info: Timestep 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.6385e+04 | 800 | 1 | 4.882e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 697.764292811875 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.396175654847994, dt = 0.005040935214471239 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.28 us (1.1%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 374.81 us (95.6%)
LB move op cnt : 0
LB apply : 3.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.025365250931793e-18,2.778471918715654e-18,-7.931002053692393e-18)
sum a = (1.3087126977135395e-16,-2.4804040417213603e-17,-6.621600354856153e-17)
sum e = 4.1445098900385515
sum de = 5.624298769768554e-19
Info: CFL hydro = 0.007134202671501814 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007134202671501814 cfl multiplier : 0.6301382212189782 [sph::Model][rank=0]
Info: Timestep 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.0904e+04 | 800 | 1 | 3.827e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 474.19101001183276 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.401216590062465, dt = 0.007134202671501814 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.74 us (1.2%)
patch tree reduce : 1402.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 391.47 us (95.5%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.566480265040123e-18,2.552299811046617e-18,-8.754807743877628e-18)
sum a = (-2.336312937365325e-16,2.1053477784079373e-17,6.842080714120274e-17)
sum e = 4.144509951511029
sum de = -1.1722935989999517e-18
Info: CFL hydro = 0.008530388974522032 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008530388974522032 cfl multiplier : 0.7534254808126523 [sph::Model][rank=0]
Info: Timestep 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.0954e+04 | 800 | 1 | 3.818e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 672.7056543608627 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.408350792733967, dt = 0.008530388974522032 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.08 us (1.0%)
patch tree reduce : 1473.00 ns (0.3%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 405.48 us (96.0%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.749365886210347e-18,2.7020826638075687e-18,-7.844127999091041e-18)
sum a = (-3.1629944583235695e-16,-1.786609867732632e-17,-7.805484023078716e-17)
sum e = 4.144510010131925
sum de = 2.4326786245143506e-18
Info: CFL hydro = 0.009463810021449005 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009463810021449005 cfl multiplier : 0.8356169872084349 [sph::Model][rank=0]
Info: Timestep 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.1131e+04 | 800 | 1 | 3.786e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 811.1532851393213 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.416881181708489, dt = 0.009463810021449005 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.81 us (1.2%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 391.05 us (95.7%)
LB move op cnt : 0
LB apply : 3.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3294726011062073e-17,2.7155631205560547e-18,-9.141247504000883e-18)
sum a = (-3.061561510433853e-17,-3.270059241477098e-17,3.0907991232927906e-16)
sum e = 4.144510064756477
sum de = 1.4797665588532627e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011049219182436485
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1566231890200692e-17,2.621199923316655e-18,-7.517601380072166e-18)
sum a = (-1.6472519015238426e-16,1.3007142933761046e-16,-8.756904703816281e-17)
sum e = 4.144509837742013
sum de = 3.07472959853311e-19
Info: CFL hydro = 0.005046148886393719 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005046148886393719 cfl multiplier : 0.4452056624028116 [sph::Model][rank=0]
Info: Timestep 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.5747e+04 | 800 | 1 | 5.080e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 670.6402034971297 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.4263449917299384, dt = 0.005046148886393719 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.05 us (1.2%)
patch tree reduce : 1432.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 399.18 us (95.7%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3489443719651311e-17,4.154976335588801e-18,-9.689452745105966e-18)
sum a = (-1.702731470186499e-17,-2.084977310432448e-17,3.237706145280732e-17)
sum e = 4.144509901190733
sum de = 6.814380060660846e-19
Info: CFL hydro = 0.00714532240638704 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00714532240638704 cfl multiplier : 0.6301371082685411 [sph::Model][rank=0]
Info: Timestep 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.9569e+04 | 800 | 1 | 4.088e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 444.36107041190144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.431391140616332, dt = 0.00714532240638704 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.56 us (1.1%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 414.75 us (95.9%)
LB move op cnt : 0
LB apply : 3.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.3191375842657018e-17,3.1469377365075956e-18,-9.163714931915026e-18)
sum a = (4.005792614238893e-17,-1.5304212763703002e-16,-5.73488586651132e-17)
sum e = 4.1445099754144445
sum de = -6.333688863094031e-19
Info: CFL hydro = 0.008549898885489396 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008549898885489396 cfl multiplier : 0.7534247388456942 [sph::Model][rank=0]
Info: Timestep 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.0512e+04 | 800 | 1 | 3.900e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 659.5296988292157 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.43853646302272, dt = 0.008549898885489396 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.45 us (1.1%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 400.63 us (95.8%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2662642372410858e-17,1.6521048659532975e-18,-1.0077390333756831e-17)
sum a = (1.3564335146031787e-16,-5.523991609823899e-17,-2.981277901353983e-17)
sum e = 4.144510049443175
sum de = 4.0572878173480986e-19
Info: CFL hydro = 0.009493470223348295 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009493470223348295 cfl multiplier : 0.8356164925637962 [sph::Model][rank=0]
Info: Timestep 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.0858e+04 | 800 | 1 | 3.836e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 802.4850316459158 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.447086361908209, dt = 0.009493470223348295 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.58 us (1.2%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1223.00 ns (0.3%)
LB compute : 378.92 us (95.7%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0845776368420514e-17,1.523291612578879e-18,-1.0092368619032927e-17)
sum a = (-9.445905826516659e-17,2.8336519216727887e-16,2.223017187536941e-16)
sum e = 4.144510119173156
sum de = 1.9566461081574338e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010915932961622193
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2015580448483547e-17,2.983674426998158e-18,-8.927058024552722e-18)
sum a = (-4.2957722171840954e-17,-5.248391160743748e-17,-1.2176746798054331e-16)
sum e = 4.144509842285812
sum de = -1.7974039140736253e-18
Info: CFL hydro = 0.005066385973537196 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005066385973537196 cfl multiplier : 0.4452054975212654 [sph::Model][rank=0]
Info: Timestep 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.4763e+04 | 800 | 1 | 5.419e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 630.6934376580606 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.456579832131557, dt = 0.005066385973537196 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (1.1%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 402.07 us (95.7%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1843330167808452e-17,1.0241402557530074e-18,-1.116780950185656e-17)
sum a = (-6.154277854241983e-17,1.058066071903363e-16,6.664737816451308e-17)
sum e = 4.1445099199428395
sum de = -2.541098841762901e-19
Info: CFL hydro = 0.0071754563879503665 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0071754563879503665 cfl multiplier : 0.6301369983475102 [sph::Model][rank=0]
Info: Timestep 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.0549e+04 | 800 | 1 | 3.893e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 468.4936492278969 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.461646218105094, dt = 0.0071754563879503665 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (1.1%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 388.73 us (95.8%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2405764779925826e-17,2.165860050923362e-18,-1.0086377304922488e-17)
sum a = (-2.5630841764454058e-17,-5.133357929823337e-17,7.10569853497955e-17)
sum e = 4.144510010008508
sum de = -3.8285889215894375e-19
Info: CFL hydro = 0.008576632015786966 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008576632015786966 cfl multiplier : 0.7534246655650069 [sph::Model][rank=0]
Info: Timestep 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.0505e+04 | 800 | 1 | 3.901e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 662.1085752248046 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.468821674493045, dt = 0.008576632015786966 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.3%)
patch tree reduce : 1363.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 387.64 us (95.5%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.251660409096893e-17,1.7932752046804946e-18,-9.622050461363538e-18)
sum a = (8.548406972773036e-17,-2.3629742851567743e-17,1.66007331372018e-16)
sum e = 4.144510096548473
sum de = 1.2874900798265365e-18
Info: CFL hydro = 0.009510155738355047 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009510155738355047 cfl multiplier : 0.8356164437100047 [sph::Model][rank=0]
Info: Timestep 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.0524e+04 | 800 | 1 | 3.898e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 792.1149420181392 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.477398306508832, dt = 0.009510155738355047 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (1.0%)
patch tree reduce : 1082.00 ns (0.2%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 427.88 us (96.0%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1238956356918012e-17,1.5364912264784378e-18,-7.611964577311566e-18)
sum a = (8.895903191178445e-17,5.619852635590909e-17,-4.234660813257627e-17)
sum e = 4.144510172381275
sum de = 1.2366681029912785e-18
Info: CFL hydro = 0.010133275980405997 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010133275980405997 cfl multiplier : 0.8904109624733364 [sph::Model][rank=0]
Info: Timestep 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.0868e+04 | 800 | 1 | 3.834e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 893.0493062059614 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.486908462247187, dt = 0.010133275980405997 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (1.1%)
patch tree reduce : 1313.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 416.04 us (95.9%)
LB move op cnt : 0
LB apply : 3.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0358607639815519e-17,2.637863265686311e-18,-9.067853906148017e-18)
sum a = (1.216236764418928e-16,-2.1568730797577047e-17,-5.667783148474412e-17)
sum e = 4.1445102348188865
sum de = 3.1170812458958252e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010160640397506351
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.983776050781237e-18,1.6850570935607068e-18,-9.178693217191122e-18)
sum a = (7.553848830440317e-17,9.569326897191683e-17,7.340558048108722e-17)
sum e = 4.144509849725723
sum de = -3.333921680392926e-18
Info: CFL hydro = 0.00527598909471932 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00527598909471932 cfl multiplier : 0.46347032082444545 [sph::Model][rank=0]
Info: Timestep 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.5835e+04 | 800 | 1 | 5.052e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 722.0610480233405 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.497041738227593, dt = 0.0029582617724068783 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.2%)
patch tree reduce : 1382.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 408.53 us (95.6%)
LB move op cnt : 0
LB apply : 4.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.903642224554127e-18,3.0297326542221507e-18,-8.193122046024059e-18)
sum a = (8.268013472404534e-17,2.276699361966466e-17,5.727696289578794e-18)
sum e = 4.144509879675347
sum de = -1.6466320494623599e-18
Info: CFL hydro = 0.007312504816509284 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007312504816509284 cfl multiplier : 0.642313547216297 [sph::Model][rank=0]
Info: Timestep 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.0596e+04 | 800 | 1 | 3.884e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 274.17658482185453 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 743 [SPH][rank=0]
Info: time since start : 883.6070603300001 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15089566706008517 max=0.15142579804570044 delta=0.0005301309856152736
Number of particle pairs: 319600
Distance min=0.164180 max=2.298723 mean=0.934810
---------------- t = 5.5, dt = 0.007312504816509284 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.26 us (1.6%)
patch tree reduce : 1262.00 ns (0.2%)
gen split merge : 571.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.1%)
LB compute : 617.15 us (96.1%)
LB move op cnt : 0
LB apply : 5.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (81.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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.546410120719258e-18,3.249164533516945e-18,-8.22008295952103e-18)
sum a = (-1.1325980194372125e-16,1.0674125219156462e-16,2.2107949067516474e-17)
sum e = 4.144510052220172
sum de = 9.41900637346782e-19
Info: CFL hydro = 0.008672198312443771 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008672198312443771 cfl multiplier : 0.7615423648108646 [sph::Model][rank=0]
Info: Timestep 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.7323e+04 | 800 | 1 | 4.618e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 570.0287943805488 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.507312504816509, dt = 0.008672198312443771 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (0.7%)
patch tree reduce : 1282.00 ns (0.2%)
gen split merge : 751.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.2%)
LB compute : 738.10 us (97.5%)
LB move op cnt : 0
LB apply : 3.65 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1087020375648621e-17,4.2695602179509285e-18,-8.175148103692745e-18)
sum a = (-4.284987851785307e-17,6.891209489825866e-17,1.1958662964434385e-17)
sum e = 4.144510140988875
sum de = 1.2874900798265365e-18
Info: CFL hydro = 0.009582105008009087 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009582105008009087 cfl multiplier : 0.841028243207243 [sph::Model][rank=0]
Info: Timestep 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.0237e+04 | 800 | 1 | 3.953e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 789.7355227330645 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.515984703128953, dt = 0.009582105008009087 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.2%)
patch tree reduce : 1163.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 408.46 us (95.6%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.120712750070631e-17,4.7144152906509554e-18,-8.121226276698803e-18)
sum a = (2.554456684126375e-16,9.448302352160834e-17,-9.12956444148553e-17)
sum e = 4.144510208632955
sum de = -1.6940658945086007e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010757092583780438
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.972729565390116e-18,4.8964014567555115e-18,-8.567579177926439e-18)
sum a = (6.559290688107597e-17,-2.3366125030708468e-18,1.8012286741621009e-16)
sum e = 4.144509849213223
sum de = -6.776263578034403e-20
Info: CFL hydro = 0.0050952903354932015 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0050952903354932015 cfl multiplier : 0.4470094144024143 [sph::Model][rank=0]
Info: Timestep 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.5358e+04 | 800 | 1 | 5.209e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 662.2341720781853 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.525566808136962, dt = 0.0050952903354932015 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.79 us (1.2%)
patch tree reduce : 1273.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 388.75 us (95.6%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0422265352238922e-17,4.4605333552211424e-18,-6.3088537582912866e-18)
sum a = (-1.8201612267510851e-16,1.1503323092041091e-17,5.87987566798392e-17)
sum e = 4.144509950021633
sum de = 3.3203691532368573e-19
Info: CFL hydro = 0.007194868751797446 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007194868751797446 cfl multiplier : 0.6313396096016096 [sph::Model][rank=0]
Info: Timestep 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.0666e+04 | 800 | 1 | 3.871e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 473.85189512457447 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.5306620984724555, dt = 0.007194868751797446 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (1.1%)
patch tree reduce : 1012.00 ns (0.2%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 396.38 us (95.6%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.236082992409754e-17,4.443308327153633e-18,-6.162066562585553e-18)
sum a = (1.0295474167376777e-16,-4.134006736202267e-17,-1.913266248027293e-16)
sum e = 4.1445100490839195
sum de = -9.622294280808852e-19
Info: CFL hydro = 0.008593648123213862 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008593648123213862 cfl multiplier : 0.7542264064010732 [sph::Model][rank=0]
Info: Timestep 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.0684e+04 | 800 | 1 | 3.868e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 669.6882781411512 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.537856967224253, dt = 0.008593648123213862 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (1.1%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 391.12 us (95.7%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0564184605229925e-17,3.961756455527173e-18,-8.816218713509619e-18)
sum a = (2.7584010164456867e-17,-1.3149736209589473e-16,-1.34373192868905e-16)
sum e = 4.1445101300180305
sum de = 7.453889935837843e-19
Info: CFL hydro = 0.009526372278077979 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009526372278077979 cfl multiplier : 0.8361509376007156 [sph::Model][rank=0]
Info: Timestep 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.0931e+04 | 800 | 1 | 3.822e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 809.4284506234654 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.546450615347467, dt = 0.009526372278077979 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (1.1%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 402.16 us (95.9%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0450349637131602e-17,2.5365726115067173e-18,-9.750863714737956e-18)
sum a = (1.0904191680997285e-16,8.946230229706124e-17,1.287233836627619e-17)
sum e = 4.144510185115368
sum de = 5.692061405548898e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011583829309639417
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0273605870873678e-17,3.4697197842074464e-18,-9.049879963816703e-18)
sum a = (-3.1154833374277954e-17,-1.2113238868483688e-16,-7.733588253753459e-17)
sum e = 4.144509848120227
sum de = 1.1858461261560205e-18
Info: CFL hydro = 0.005075325401653483 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005075325401653483 cfl multiplier : 0.4453836458669052 [sph::Model][rank=0]
Info: Timestep 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.5408e+04 | 800 | 1 | 5.192e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 660.5293257828133 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.555976987625545, dt = 0.005075325401653483 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.3%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 398.93 us (95.4%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (75.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0959611336518837e-17,2.0932153673343e-18,-9.70892451596489e-18)
sum a = (2.9117786576729014e-17,4.5653813521538086e-18,2.5271362917827774e-17)
sum e = 4.144509943225287
sum de = -2.371692252312041e-19
Info: CFL hydro = 0.007182851199366066 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007182851199366066 cfl multiplier : 0.6302557639112701 [sph::Model][rank=0]
Info: Timestep 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.1059e+04 | 800 | 1 | 3.799e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 480.9759095732851 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.561052313027199, dt = 0.007182851199366066 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.69 us (1.2%)
patch tree reduce : 1143.00 ns (0.3%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 384.10 us (95.4%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0646565174248447e-17,2.152379594174876e-18,-9.619054804308319e-18)
sum a = (-3.8943541717847446e-17,-1.0952122193880789e-17,1.517000732762919e-17)
sum e = 4.144510031592189
sum de = 1.666960840196463e-18
Info: CFL hydro = 0.008589752680071323 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008589752680071323 cfl multiplier : 0.7535038426075135 [sph::Model][rank=0]
Info: Timestep 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.0398e+04 | 800 | 1 | 3.922e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 659.3350533899079 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.568235164226565, dt = 0.008589752680071323 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.0%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 427.93 us (96.0%)
LB move op cnt : 0
LB apply : 3.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.1088424589893256e-17,2.044535940186991e-18,-9.403367496332549e-18)
sum a = (1.4860855519530586e-16,3.229318305526119e-17,3.7152138798826466e-17)
sum e = 4.144510099582388
sum de = -1.0909784360635388e-18
Info: CFL hydro = 0.009520062641919154 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009520062641919154 cfl multiplier : 0.8356692284050089 [sph::Model][rank=0]
Info: Timestep 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.0411e+04 | 800 | 1 | 3.919e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 788.9617704628374 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.576824916906636, dt = 0.009520062641919154 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (0.9%)
patch tree reduce : 1262.00 ns (0.2%)
gen split merge : 792.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.1%)
LB compute : 546.16 us (96.6%)
LB move op cnt : 0
LB apply : 3.91 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.955516766577302e-18,2.5058671266907222e-18,-8.849170941117027e-18)
sum a = (-1.0240354077560746e-16,-1.0089372961977708e-17,-3.214340020250024e-17)
sum e = 4.14451014132385
sum de = 1.0299920638612292e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011050795052533586
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0146290446026869e-17,2.4174952435617607e-18,-9.262571614737254e-18)
sum a = (1.6512061688367316e-17,-7.623947205532442e-17,-2.1317095604938647e-17)
sum e = 4.144509847183151
sum de = -9.283481101907132e-19
Info: CFL hydro = 0.005068742969424931 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005068742969424931 cfl multiplier : 0.44522307613500295 [sph::Model][rank=0]
Info: Timestep 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.2874e+04 | 800 | 1 | 6.214e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 551.5440002050406 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.586344979548556, dt = 0.005068742969424931 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.3%)
patch tree reduce : 1243.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 403.33 us (95.7%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 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: 3.876250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.428830581301911e-18,1.5397677263825836e-18,-9.496232865044338e-18)
sum a = (1.2821412196337467e-16,8.129014985042371e-17,-8.540019133018423e-17)
sum e = 4.144509930144824
sum de = 2.541098841762901e-18
Info: CFL hydro = 0.007170490462643387 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007170490462643387 cfl multiplier : 0.6301487174233352 [sph::Model][rank=0]
Info: Timestep 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.0610e+04 | 800 | 1 | 3.882e-02 | 0.1% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 470.10795069077307 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.591413722517981, dt = 0.007170490462643387 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (1.1%)
patch tree reduce : 1372.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 391.28 us (95.6%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.303961357067163e-18,2.6002303239301217e-18,-1.0191225301855154e-17)
sum a = (1.3204856299405503e-17,8.894405362650834e-17,-2.2934750414756926e-17)
sum e = 4.144510004600357
sum de = 1.2400562347802957e-18
Info: CFL hydro = 0.00856682165676738 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00856682165676738 cfl multiplier : 0.7534324782822234 [sph::Model][rank=0]
Info: Timestep 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.0909e+04 | 800 | 1 | 3.826e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 674.6745200510281 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.598584212980624, dt = 0.00856682165676738 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.16 us (1.0%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.2%)
LB compute : 392.67 us (95.8%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.531631293263809e-18,3.4015685862012135e-18,-1.0164264388358183e-17)
sum a = (9.438716249584133e-17,1.3502100370709611e-16,3.301214074851376e-17)
sum e = 4.144510060553176
sum de = -3.1916201452542037e-18
Info: CFL hydro = 0.009494467324556064 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009494467324556064 cfl multiplier : 0.8356216521881489 [sph::Model][rank=0]
Info: Timestep 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.1150e+04 | 800 | 1 | 3.782e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 815.3646707865429 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.607151034637392, dt = 0.009494467324556064 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.19 us (1.1%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.3%)
LB compute : 381.21 us (95.7%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.105698534979549e-18,5.001249453688178e-18,-9.550154692038282e-18)
sum a = (9.390785736700628e-17,6.218984046634715e-17,1.4478609679284637e-16)
sum e = 4.144510095594539
sum de = -3.313592889658823e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01019817573667392
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.444207782219301e-18,4.520446496325523e-18,-9.025914707374951e-18)
sum a = (-5.0926169938723585e-17,5.3144453988113275e-17,-2.717060949083664e-16)
sum e = 4.144509847605718
sum de = 1.9447876468958736e-18
Info: CFL hydro = 0.005056261821051198 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005056261821051198 cfl multiplier : 0.4452072173960497 [sph::Model][rank=0]
Info: Timestep 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.5541e+04 | 800 | 1 | 5.148e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 663.9809956664724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.616645501961948, dt = 0.005056261821051198 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.2%)
patch tree reduce : 1783.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 389.32 us (95.3%)
LB move op cnt : 0
LB apply : 3.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.969945595410241e-18,4.784064317184798e-18,-1.2512859519649907e-17)
sum a = (-5.0458847438109414e-17,-3.135704022550524e-17,5.250787686387923e-17)
sum e = 4.144509917456902
sum de = -2.168404344971009e-18
Info: CFL hydro = 0.007154948268449629 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007154948268449629 cfl multiplier : 0.6301381449306999 [sph::Model][rank=0]
Info: Timestep 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.0821e+04 | 800 | 1 | 3.842e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 473.7400426213911 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.6217017637829985, dt = 0.007154948268449629 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.45 us (1.0%)
patch tree reduce : 1173.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 436.04 us (96.1%)
LB move op cnt : 0
LB apply : 3.78 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.507666036822057e-18,4.1325089076746575e-18,-1.1092918075476085e-17)
sum a = (1.4985474853027696e-16,-6.384643881788327e-17,3.6451155047905206e-17)
sum e = 4.144509981862366
sum de = 8.131516293641283e-20
Info: CFL hydro = 0.008553269800322765 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008553269800322765 cfl multiplier : 0.7534254299538 [sph::Model][rank=0]
Info: Timestep 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.0646e+04 | 800 | 1 | 3.875e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 664.7481385967478 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.628856712051448, dt = 0.008553269800322765 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.97 us (1.0%)
patch tree reduce : 1183.00 ns (0.2%)
gen split merge : 741.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.2%)
LB compute : 491.44 us (96.2%)
LB move op cnt : 0
LB apply : 4.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.6653369478623515e-18,3.5618362386554316e-18,-1.1146839902470027e-17)
sum a = (1.3303113850816688e-16,3.506117017428358e-17,-8.272806523692886e-17)
sum e = 4.144510033307447
sum de = 7.792703114739563e-19
Info: CFL hydro = 0.009486152988311172 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009486152988311172 cfl multiplier : 0.8356169533025334 [sph::Model][rank=0]
Info: Timestep 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.0845e+04 | 800 | 1 | 3.838e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 802.305736285314 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.6374099818517704, dt = 0.009486152988311172 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.78 us (1.2%)
patch tree reduce : 1193.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 393.04 us (95.7%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.622848292646128e-18,4.533926953074008e-18,-1.2303163525784575e-17)
sum a = (-3.00668107318224e-16,-4.098058851539639e-18,-2.4204909006169798e-17)
sum e = 4.1445100707627525
sum de = 6.606856988583543e-19
Info: CFL hydro = 0.0101104434565996 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0101104434565996 cfl multiplier : 0.8904113022016888 [sph::Model][rank=0]
Info: Timestep 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.0753e+04 | 800 | 1 | 3.855e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 885.8833632674176 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.646896134840081, dt = 0.0101104434565996 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (1.2%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 373.84 us (95.4%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0583656376088848e-17,4.06510662393223e-18,-1.2015580448483547e-17)
sum a = (4.633682333012802e-17,-1.404304114345579e-16,1.759049822824617e-17)
sum e = 4.144510098878659
sum de = -1.768604793866979e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01164651228391513
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.825205684675276e-18,3.555844924544993e-18,-1.1940689022103071e-17)
sum a = (-4.5036708168162964e-17,-1.946817607045746e-16,-5.3298730326457056e-17)
sum e = 4.144509850954927
sum de = -5.658180087658726e-19
Info: CFL hydro = 0.0052660356404896575 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0052660356404896575 cfl multiplier : 0.4634704340672296 [sph::Model][rank=0]
Info: Timestep 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.5769e+04 | 800 | 1 | 5.073e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 717.4384141687233 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.657006578296681, dt = 0.0052660356404896575 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.70 us (1.1%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 413.13 us (95.8%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.574119948480034e-18,2.1179295380398573e-18,-1.2521846490815564e-17)
sum a = (-5.268761628719237e-17,6.487394918782341e-17,7.505918317556812e-17)
sum e = 4.144509917247203
sum de = -4.1504614415460717e-19
Info: CFL hydro = 0.0073006210433676135 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0073006210433676135 cfl multiplier : 0.6423136227114864 [sph::Model][rank=0]
Info: Timestep 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.0442e+04 | 800 | 1 | 3.914e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 484.4181940085816 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.66227261393717, dt = 0.0073006210433676135 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.2%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1173.00 ns (0.3%)
LB compute : 400.90 us (95.7%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.0167260045413403e-17,3.3386597880416136e-18,-1.1719010400016862e-17)
sum a = (1.6837390044564104e-16,1.0929355200261124e-16,-6.715064854978987e-17)
sum e = 4.144509980514265
sum de = -1.0503208545953324e-18
Info: CFL hydro = 0.008661159292485473 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008661159292485473 cfl multiplier : 0.761542415140991 [sph::Model][rank=0]
Info: Timestep 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.0609e+04 | 800 | 1 | 3.882e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 677.0655506543484 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.669573234980538, dt = 0.008661159292485473 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (1.2%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 383.83 us (95.5%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.995408680379603e-18,4.229118847705472e-18,-1.2977186363208857e-17)
sum a = (-8.880325774491305e-17,6.822908508966873e-17,9.049280832405659e-17)
sum e = 4.144510037470832
sum de = -1.704428813222665e-18
Info: CFL hydro = 0.009564627929882028 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009564627929882028 cfl multiplier : 0.8410282767606606 [sph::Model][rank=0]
Info: Timestep 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.1198e+04 | 800 | 1 | 3.774e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 826.1992157390684 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.678234394273024, dt = 0.009564627929882028 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (1.0%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 1012.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1292.00 ns (0.3%)
LB compute : 417.09 us (95.8%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.649011374860509e-18,4.6822119773073506e-18,-1.1203757386519188e-17)
sum a = (-3.165098907404861e-17,6.789357149948419e-17,-1.2176746798054331e-16)
sum e = 4.144510086400464
sum de = -2.65121312490596e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011110008180147068
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.283541214123788e-18,5.001998367951982e-18,-1.2289683069036087e-17)
sum a = (2.628310864251481e-16,2.3438020800033725e-17,4.6109153393931376e-17)
sum e = 4.144509854526125
sum de = -4.573977915173222e-19
Info: CFL hydro = 0.005081236247147125 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005081236247147125 cfl multiplier : 0.4470094255868869 [sph::Model][rank=0]
Info: Timestep 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.5905e+04 | 800 | 1 | 5.030e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 684.5659143208255 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.687799022202906, dt = 0.005081236247147125 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.71 us (1.1%)
patch tree reduce : 1052.00 ns (0.2%)
gen split merge : 991.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 404.38 us (95.9%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.629389063199723e-18,4.89939711381073e-18,-1.1256181384985521e-17)
sum a = (1.689176122011633e-16,1.7638428741129673e-17,1.7446706689595655e-17)
sum e = 4.144509918988918
sum de = 2.202285662861181e-18
Info: CFL hydro = 0.007174890962535441 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007174890962535441 cfl multiplier : 0.6313396170579245 [sph::Model][rank=0]
Info: Timestep 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.0641e+04 | 800 | 1 | 3.876e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 471.96687194422776 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.692880258450053, dt = 0.007174890962535441 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (1.0%)
patch tree reduce : 992.00 ns (0.2%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 392.21 us (95.9%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.389187042339043e-18,4.7720816889639215e-18,-1.1113887674862617e-17)
sum a = (2.948026108041052e-17,-1.2947229792656667e-16,1.6828403073398447e-16)
sum e = 4.144509989467982
sum de = 1.1722935989999517e-18
Info: CFL hydro = 0.008568276904593034 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008568276904593034 cfl multiplier : 0.7542264113719496 [sph::Model][rank=0]
Info: Timestep 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.0113e+04 | 800 | 1 | 3.978e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 649.3927284992702 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.700055149412589, dt = 0.008568276904593034 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.2%)
patch tree reduce : 1402.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 414.16 us (95.6%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.592891722093937e-18,3.3375364166459065e-18,-9.019923393264512e-18)
sum a = (-3.352679463060039e-16,-4.709172890804322e-17,9.825755141118433e-19)
sum e = 4.144510055750792
sum de = 6.776263578034403e-21
Info: CFL hydro = 0.00949346507588281 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00949346507588281 cfl multiplier : 0.8361509409146329 [sph::Model][rank=0]
Info: Timestep 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.1078e+04 | 800 | 1 | 3.795e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 812.7240461597131 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.708623426317182, dt = 0.00949346507588281 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.3%)
patch tree reduce : 1332.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 402.10 us (95.6%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.017025570246862e-17,3.4225381855877467e-18,-9.75610611458459e-18)
sum a = (-6.623996880500329e-17,1.1866396727133638e-16,2.5858511700650704e-17)
sum e = 4.144510113807539
sum de = 7.657177843178875e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01082952034719418
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.253584643571597e-18,4.119777365189977e-18,-9.687206002314552e-18)
sum a = (9.557943400381851e-17,5.335864346756144e-17,8.53642434455216e-17)
sum e = 4.144509857782233
sum de = 9.486769009248164e-20
Info: CFL hydro = 0.005055166131630111 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005055166131630111 cfl multiplier : 0.44538364697154426 [sph::Model][rank=0]
Info: Timestep 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.5618e+04 | 800 | 1 | 5.122e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 667.2029492315133 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.7181168913930644, dt = 0.005055166131630111 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (1.1%)
patch tree reduce : 1273.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1343.00 ns (0.3%)
LB compute : 428.17 us (95.9%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.746769144796423e-18,4.066604452459839e-18,-8.914326482068041e-18)
sum a = (1.5673277712905986e-17,-1.6694197637324635e-16,1.6109445380145878e-16)
sum e = 4.144509929362473
sum de = 1.6940658945086007e-19
Info: CFL hydro = 0.007152370906892146 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007152370906892146 cfl multiplier : 0.6302557646476962 [sph::Model][rank=0]
Info: Timestep 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.0128e+04 | 800 | 1 | 3.974e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 457.8873952525396 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.723172057524694, dt = 0.007152370906892146 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.2%)
patch tree reduce : 1362.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 399.44 us (95.6%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.166161132527088e-18,2.4687958706323867e-18,-7.725050631146085e-18)
sum a = (-7.32617889424367e-17,9.872487391179849e-17,-1.8788761050333783e-17)
sum e = 4.144510008291622
sum de = 1.849919956803392e-18
Info: CFL hydro = 0.008550155679507055 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008550155679507055 cfl multiplier : 0.7535038430984642 [sph::Model][rank=0]
Info: Timestep 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.1101e+04 | 800 | 1 | 3.791e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 679.1345435947474 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.730324428431587, dt = 0.008550155679507055 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (1.2%)
patch tree reduce : 1243.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 373.47 us (95.5%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.989966822712321e-18,3.9896535118539e-18,-8.625807261937258e-18)
sum a = (7.157223836329316e-17,1.393459835805686e-16,-1.2773481683453962e-16)
sum e = 4.144510081476987
sum de = 2.358139725155972e-18
Info: CFL hydro = 0.009482968398744998 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009482968398744998 cfl multiplier : 0.8356692287323094 [sph::Model][rank=0]
Info: Timestep 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.0518e+04 | 800 | 1 | 3.899e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 789.4377219669791 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.738874584111094, dt = 0.009482968398744998 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (1.1%)
patch tree reduce : 1453.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 407.52 us (95.6%)
LB move op cnt : 0
LB apply : 4.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.523592694182605e-18,5.55245035184848e-18,-1.012438470381058e-17)
sum a = (9.850918660382272e-17,-1.0391335193143787e-16,4.0501283386561346e-18)
sum e = 4.1445101430776266
sum de = -1.599198204416119e-18
Info: CFL hydro = 0.010107254609323867 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010107254609323867 cfl multiplier : 0.8904461524882062 [sph::Model][rank=0]
Info: Timestep 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.1773e+04 | 800 | 1 | 3.674e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 929.1464602779498 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.748357552509839, dt = 0.010107254609323867 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.3%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 393.91 us (95.4%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.624895577616894e-18,3.230441676921826e-18,-9.531431835443162e-18)
sum a = (4.237057338901802e-16,1.8655753877082057e-16,2.059813791168608e-16)
sum e = 4.144510191984741
sum de = -1.938011383317839e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011029121223938005
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.920366713197264e-18,4.776949631678652e-18,-8.53312912179142e-18)
sum a = (9.2098480505654e-17,7.47716000982671e-17,3.6115641457720676e-17)
sum e = 4.144509863038678
sum de = -6.776263578034403e-19
Info: CFL hydro = 0.005264184803020067 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005264184803020067 cfl multiplier : 0.46348205082940214 [sph::Model][rank=0]
Info: Timestep 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.5507e+04 | 800 | 1 | 5.159e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 705.2905517665715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.758464807119163, dt = 0.005264184803020067 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.78 us (1.2%)
patch tree reduce : 1213.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 389.46 us (95.7%)
LB move op cnt : 0
LB apply : 3.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.0257641665730875e-18,4.614060779301118e-18,-9.355436983449044e-18)
sum a = (8.569975703570614e-17,8.383046703324945e-17,-2.434870054482031e-17)
sum e = 4.14450995102412
sum de = -2.981555974335137e-19
Info: CFL hydro = 0.00729787583161567 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00729787583161567 cfl multiplier : 0.6423213672196014 [sph::Model][rank=0]
Info: Timestep 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.0839e+04 | 800 | 1 | 3.839e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 493.65212830962747 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.763728991922183, dt = 0.00729787583161567 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (1.0%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 433.49 us (96.1%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.550952523320871e-18,5.077638708596263e-18,-9.525440521332724e-18)
sum a = (-2.1161321438067257e-17,8.879127511669218e-18,1.4546910660143632e-17)
sum e = 4.144510035849333
sum de = -5.285485590866834e-19
Info: CFL hydro = 0.008657507489409641 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008657507489409641 cfl multiplier : 0.7615475781464008 [sph::Model][rank=0]
Info: Timestep 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.0897e+04 | 800 | 1 | 3.828e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 686.281259311709 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.771026867753799, dt = 0.008657507489409641 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (1.1%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 403.94 us (95.8%)
LB move op cnt : 0
LB apply : 3.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.135105649088582e-18,5.0386951668784155e-18,-9.204156302160482e-18)
sum a = (-9.873685654001938e-18,-2.0801842591440973e-17,-1.3104202222350143e-16)
sum e = 4.144510108889212
sum de = 1.1248597539537109e-18
Info: CFL hydro = 0.009569147881901982 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009569147881901982 cfl multiplier : 0.8410317187642672 [sph::Model][rank=0]
Info: Timestep 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.0647e+04 | 800 | 1 | 3.875e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 804.3857882695095 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.7796843752432085, dt = 0.009569147881901982 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.74 us (1.1%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 423.63 us (95.8%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.29687113007041e-18,4.7990426024608925e-18,-1.1064459333451503e-17)
sum a = (2.7320392343597592e-17,5.988917584793893e-17,-6.197415315837138e-17)
sum e = 4.144510164348874
sum de = -1.3552527156068805e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010124535663781863
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.127616506450535e-18,4.848470943872007e-18,-1.085626116811378e-17)
sum a = (1.591293027732351e-17,1.495432001965342e-16,-3.3287741197593906e-17)
sum e = 4.144509863256832
sum de = -1.4501204056993622e-18
Info: CFL hydro = 0.005092068098319182 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005092068098319182 cfl multiplier : 0.44701057292142243 [sph::Model][rank=0]
Info: Timestep 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.5627e+04 | 800 | 1 | 5.119e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 672.9266682119483 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.789253523125111, dt = 0.005092068098319182 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (1.1%)
patch tree reduce : 1263.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 399.84 us (95.8%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-6.183036161972087e-18,6.326078786358795e-18,-1.0779871913205695e-17)
sum a = (9.844927346271834e-17,-9.582507788234647e-17,1.7422741433153903e-16)
sum e = 4.1445099477677845
sum de = 6.2341624917916505e-19
Info: CFL hydro = 0.007191921161632224 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007191921161632224 cfl multiplier : 0.631340381947615 [sph::Model][rank=0]
Info: Timestep 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.0924e+04 | 800 | 1 | 3.823e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 479.4476788571311 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.79434559122343, dt = 0.007191921161632224 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.46 us (1.1%)
patch tree reduce : 1072.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 378.56 us (95.6%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.21094544755351e-18,4.5953379227059984e-18,-9.034901678540608e-18)
sum a = (8.224876010809381e-17,-7.809078811544979e-17,-8.792852588478909e-17)
sum e = 4.14451003089113
sum de = -2.290377089375628e-18
Info: CFL hydro = 0.008587273076158806 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008587273076158806 cfl multiplier : 0.7542269212984101 [sph::Model][rank=0]
Info: Timestep 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.0998e+04 | 800 | 1 | 3.810e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 679.563306441077 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.801537512385062, dt = 0.008587273076158806 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.2%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 403.64 us (95.7%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.3796506147302285e-18,4.083080566263544e-18,-1.0781369741733304e-17)
sum a = (5.099806570804884e-17,-1.2826205247625818e-16,-5.952969700131265e-17)
sum e = 4.144510099370226
sum de = -3.482999479109683e-18
Info: CFL hydro = 0.0095158813840063 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0095158813840063 cfl multiplier : 0.8361512808656067 [sph::Model][rank=0]
Info: Timestep 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.0950e+04 | 800 | 1 | 3.819e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 809.5575481307106 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.810124785461221, dt = 0.0095158813840063 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (1.1%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 373.79 us (95.6%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.06510662393223e-18,2.5852520386540268e-18,-1.1266666184678787e-17)
sum a = (-3.069949350188466e-17,1.0923363886150687e-16,-4.4623307494542735e-17)
sum e = 4.144510147788144
sum de = 7.589415207398531e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011556987986726544
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-4.503221468258013e-18,3.964752112582392e-18,-1.1086926761365646e-17)
sum a = (7.79829444614619e-17,4.6169066535035754e-17,-3.1442416451578985e-17)
sum e = 4.144509863329081
sum de = -1.7076184216646695e-18
Info: CFL hydro = 0.005068139081830515 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005068139081830515 cfl multiplier : 0.4453837602885356 [sph::Model][rank=0]
Info: Timestep 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.5753e+04 | 800 | 1 | 5.078e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 674.5697142908866 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.819640666845227, dt = 0.005068139081830515 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (1.1%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 398.51 us (95.8%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.720606062582041e-18,4.0501283386561346e-18,-1.1101905046641742e-17)
sum a = (1.7202261073889781e-16,-3.548056216201424e-17,2.1568730797577045e-18)
sum e = 4.144509943423842
sum de = 3.1170812458958252e-19
Info: CFL hydro = 0.00717150168037221 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00717150168037221 cfl multiplier : 0.630255840192357 [sph::Model][rank=0]
Info: Timestep 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.1529e+04 | 800 | 1 | 3.716e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 491.0001438015974 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.824708805927057, dt = 0.00717150168037221 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.63 us (1.1%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 418.63 us (96.0%)
LB move op cnt : 0
LB apply : 3.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.2722058763836375e-18,3.397075100618385e-18,-1.0991065735598636e-17)
sum a = (-3.1777930041763515e-17,7.860604112894746e-18,-8.699388088356076e-18)
sum e = 4.144510020175301
sum de = 2.0328790734103208e-19
Info: CFL hydro = 0.008572376817223316 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008572376817223316 cfl multiplier : 0.7535038934615713 [sph::Model][rank=0]
Info: Timestep 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.1050e+04 | 800 | 1 | 3.800e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 679.3223305038888 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.831880307607429, dt = 0.008572376817223316 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (1.0%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.2%)
LB compute : 409.45 us (95.9%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.876250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.238305276691776e-18,3.281742303992452e-18,-1.1152831216580464e-17)
sum a = (1.1929904656704281e-16,-5.2723564171855e-18,-1.3861504325909516e-16)
sum e = 4.144510082098084
sum de = 1.8973538018496328e-19
Info: CFL hydro = 0.00950222460108854 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00950222460108854 cfl multiplier : 0.8356692623077141 [sph::Model][rank=0]
Info: Timestep 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.0829e+04 | 800 | 1 | 3.841e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 803.5002542983999 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.840452684424653, dt = 0.00950222460108854 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.31 us (1.1%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 380.68 us (95.5%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.876250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.4102055587443604e-18,3.488442640802566e-18,-1.3126969215969808e-17)
sum a = (5.854712148720081e-17,1.0613013815229995e-16,-1.1581210175476785e-16)
sum e = 4.144510125042024
sum de = 8.944667923005412e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011778252233539736
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.757795391432744e-18,3.9632542840547824e-18,-1.3037099504313238e-17)
sum a = (-4.1435928387789685e-17,-1.0861054219402131e-16,-1.6839187438797234e-16)
sum e = 4.144509863871292
sum de = 4.607859233063394e-19
Info: CFL hydro = 0.005061796346060122 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005061796346060122 cfl multiplier : 0.44522308743590466 [sph::Model][rank=0]
Info: Timestep 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.5497e+04 | 800 | 1 | 5.162e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 662.6582368103525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.849954909025741, dt = 0.005061796346060122 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.2%)
patch tree reduce : 1453.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 407.37 us (95.6%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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: 3.876250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.441647728569464e-18,2.6301868944823122e-18,-1.4031657646645958e-17)
sum a = (-2.8576171781145414e-16,-1.7577317337203205e-16,-1.0491989270199145e-16)
sum e = 4.144509937420873
sum de = 1.2197274440461925e-19
Info: CFL hydro = 0.007163796996162364 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007163796996162364 cfl multiplier : 0.6301487249572698 [sph::Model][rank=0]
Info: Timestep 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.0522e+04 | 800 | 1 | 3.898e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 467.44491555518005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.855016705371801, dt = 0.007163796996162364 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.2%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 397.92 us (95.4%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.191286448128635e-18,1.1548257947869377e-18,-1.448699751903925e-17)
sum a = (1.9627545025795113e-17,-1.0290681116088427e-16,-1.2715965067993757e-16)
sum e = 4.144510008028396
sum de = -8.131516293641283e-20
Info: CFL hydro = 0.008565925051781173 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008565925051781173 cfl multiplier : 0.7534324833048466 [sph::Model][rank=0]
Info: Timestep 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.0765e+04 | 800 | 1 | 3.853e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 669.3991997938386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.862180502367964, dt = 0.008565925051781173 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.65 us (1.2%)
patch tree reduce : 1253.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.3%)
LB compute : 378.59 us (95.4%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (71.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-3.8662698868920665e-18,-1.3480456748485654e-20,-1.5550455773642006e-17)
sum a = (2.397723906997315e-16,2.794588553672733e-16,9.572322554246902e-17)
sum e = 4.144510066097025
sum de = 1.395910297075087e-18
Info: CFL hydro = 0.009503266084225553 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009503266084225553 cfl multiplier : 0.8356216555365643 [sph::Model][rank=0]
Info: Timestep 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.0506e+04 | 800 | 1 | 3.901e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 790.4334858871882 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.8707464274197445, dt = 0.009503266084225553 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.48 us (1.1%)
patch tree reduce : 1413.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 371.88 us (95.4%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-7.545311207832943e-19,4.515953010742694e-18,-1.3845926909222377e-17)
sum a = (9.123573127375091e-17,4.12501976503661e-17,-1.8573073742358012e-17)
sum e = 4.144510108987136
sum de = -1.0706496453294356e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011277115385140996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.2843879624251609e-18,3.3506424162624898e-18,-1.4418097406769213e-17)
sum a = (3.503720491784183e-17,-9.000152056700067e-17,-1.281122696234972e-16)
sum e = 4.1445098654220685
sum de = 1.6127507315721878e-18
Info: CFL hydro = 0.005066992685735949 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005066992685735949 cfl multiplier : 0.4452072185121881 [sph::Model][rank=0]
Info: Timestep 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.6011e+04 | 800 | 1 | 4.997e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 684.687133734961 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.88024969350397, dt = 0.005066992685735949 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.2%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 428.64 us (95.9%)
LB move op cnt : 0
LB apply : 3.56 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-1.5247894411064885e-18,2.3965256441752275e-18,-1.5457590404930218e-17)
sum a = (3.7007148997353864e-16,8.957763509368717e-17,-6.251636708536602e-17)
sum e = 4.144509934023903
sum de = 5.488773498207866e-19
Info: CFL hydro = 0.007174682217819812 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007174682217819812 cfl multiplier : 0.630138145674792 [sph::Model][rank=0]
Info: Timestep 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.0354e+04 | 800 | 1 | 3.930e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 464.1046465398675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.8853166861897055, dt = 0.007174682217819812 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.62 us (1.1%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 397.80 us (95.6%)
LB move op cnt : 0
LB apply : 3.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0078391412605577e-18,3.609766751538936e-18,-1.5703234283458178e-17)
sum a = (2.948924805157617e-17,-1.0153779588664917e-17,-1.8540421080456126e-16)
sum e = 4.1445100025553225
sum de = -1.6940658945086007e-18
Info: CFL hydro = 0.008582436253013172 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008582436253013172 cfl multiplier : 0.7534254304498612 [sph::Model][rank=0]
Info: Timestep 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.0729e+04 | 800 | 1 | 3.859e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 669.2620046228366 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.8924913684075255, dt = 0.008582436253013172 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (1.2%)
patch tree reduce : 1413.00 ns (0.3%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 390.66 us (95.4%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0649560831303667e-18,2.881822087120711e-18,-1.7940990103706797e-17)
sum a = (8.687405460135199e-17,-7.347073602203823e-17,5.708823650130914e-17)
sum e = 4.14451006186651
sum de = -1.9244588561617704e-18
Info: CFL hydro = 0.009515575346620758 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009515575346620758 cfl multiplier : 0.8356169536332407 [sph::Model][rank=0]
Info: Timestep 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.2195e+04 | 800 | 1 | 3.604e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 857.1861433291633 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.901073804660538, dt = 0.009515575346620758 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.63 us (1.2%)
patch tree reduce : 1353.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 366.41 us (95.2%)
LB move op cnt : 0
LB apply : 4.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.174847022089019e-18,2.1853318217822853e-18,-1.622148295401107e-17)
sum a = (-1.1928706393882194e-16,-2.3786116149850176e-16,3.132858148348066e-17)
sum e = 4.144510108981229
sum de = 9.656175598699024e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01084323667276145
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.302361904756475e-18,1.2117432788360993e-18,-1.6398226720268993e-17)
sum a = (-1.8557496325670873e-16,-1.9624699151592655e-16,1.255300132418984e-16)
sum e = 4.1445098678966605
sum de = -1.700842158086635e-18
Info: CFL hydro = 0.005067353783094231 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005067353783094231 cfl multiplier : 0.44520565121108024 [sph::Model][rank=0]
Info: Timestep 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.5461e+04 | 800 | 1 | 5.174e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 662.0375525378104 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.910589380007159, dt = 0.005067353783094231 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 us (1.1%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 376.10 us (95.5%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-5.991314110438069e-20,3.400070757673604e-19,-1.5098111558303934e-17)
sum a = (8.408210222588785e-17,4.70258244528284e-17,7.347747625041247e-17)
sum e = 4.144509935495239
sum de = -9.994988777600744e-19
Info: CFL hydro = 0.007170540383813206 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007170540383813206 cfl multiplier : 0.6301371008073868 [sph::Model][rank=0]
Info: Timestep 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.1330e+04 | 800 | 1 | 3.751e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 486.38622177727314 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.915656733790253, dt = 0.007170540383813206 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.92 us (1.2%)
patch tree reduce : 1223.00 ns (0.3%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 401.14 us (95.6%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2896303622717943e-18,1.445404529143184e-18,-1.4888415564438602e-17)
sum a = (-8.6969915627119e-17,1.3507118096277104e-16,-1.3772832877075032e-16)
sum e = 4.14451000613333
sum de = -4.2859867131067597e-19
Info: CFL hydro = 0.008571831998346073 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008571831998346073 cfl multiplier : 0.7534247338715913 [sph::Model][rank=0]
Info: Timestep 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.1294e+04 | 800 | 1 | 3.757e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 687.0904622950934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.922827274174066, dt = 0.008571831998346073 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.3%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.2%)
LB compute : 401.13 us (95.4%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-8.6874054601352e-20,2.9821765984705487e-18,-1.6853566592662286e-17)
sum a = (2.8966805461145976e-16,-2.8614516191452215e-17,6.053623777186625e-17)
sum e = 4.144510069721369
sum de = -1.3196773318222e-18
Info: CFL hydro = 0.009506803083647432 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009506803083647432 cfl multiplier : 0.8356164892477276 [sph::Model][rank=0]
Info: Timestep 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.1426e+04 | 800 | 1 | 3.734e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 826.4842903131139 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.931399106172412, dt = 0.009506803083647432 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.2%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 414.17 us (95.8%)
LB move op cnt : 0
LB apply : 3.63 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.367667986509352e-18,2.053522911352648e-18,-1.5424638177322808e-17)
sum a = (1.491837213499079e-17,-2.235958426015487e-17,2.851865516568521e-17)
sum e = 4.144510122882783
sum de = 1.5246593050577406e-20
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010743498668066375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.9462287138079202e-18,1.824355146628392e-18,-1.5547460116586788e-17)
sum a = (-3.765540918410326e-17,-8.146389795962641e-17,-1.8129716498185594e-17)
sum e = 4.144509870622414
sum de = 4.887380105657313e-19
Info: CFL hydro = 0.005067022355205417 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005067022355205417 cfl multiplier : 0.4452054964159092 [sph::Model][rank=0]
Info: Timestep 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.5563e+04 | 800 | 1 | 5.140e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 665.8051846486785 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.94090590925606, dt = 0.005067022355205417 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.3%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 385.47 us (95.4%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5058671266907222e-18,1.2267215641121946e-18,-1.588596936382654e-17)
sum a = (-5.470069782829957e-17,-1.1414052511795566e-16,9.672377499891218e-17)
sum e = 4.144509941420933
sum de = 3.6253010142484055e-19
Info: CFL hydro = 0.00717332168934259 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00717332168934259 cfl multiplier : 0.630136997610606 [sph::Model][rank=0]
Info: Timestep 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.0351e+04 | 800 | 1 | 3.931e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 464.0328194379548 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.945972931611265, dt = 0.00717332168934259 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.84 us (1.1%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1183.00 ns (0.3%)
LB compute : 408.63 us (95.8%)
LB move op cnt : 0
LB apply : 3.58 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0834794819048383e-18,3.2952227607409377e-19,-1.4873437279162506e-17)
sum a = (9.306308207743452e-17,-1.7123774859043043e-16,-1.7973942331314207e-17)
sum e = 4.144510017173107
sum de = -6.403569081242511e-19
Info: CFL hydro = 0.008580604347470508 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008580604347470508 cfl multiplier : 0.7534246650737373 [sph::Model][rank=0]
Info: Timestep 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.0858e+04 | 800 | 1 | 3.835e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 673.2917971351972 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.953146253300607, dt = 0.008580604347470508 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.1%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 417.26 us (95.7%)
LB move op cnt : 0
LB apply : 3.58 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2622705331335282e-18,-1.3570326460142224e-18,-1.548455131842719e-17)
sum a = (-1.3362427860510024e-16,-5.787609430683174e-18,-2.6050233752184723e-17)
sum e = 4.144510086135781
sum de = 2.0599841277224584e-18
Info: CFL hydro = 0.009523616534546288 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009523616534546288 cfl multiplier : 0.8356164433824915 [sph::Model][rank=0]
Info: Timestep 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.0545e+04 | 800 | 1 | 3.894e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 793.2878433038611 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.9617268576480775, dt = 0.009523616534546288 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.84 us (1.2%)
patch tree reduce : 1323.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 393.88 us (95.7%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.222228078529366e-18,-1.0185233987744717e-18,-1.5805086623335623e-17)
sum a = (-6.340457940223847e-17,-6.61800556638989e-17,-3.613960671416243e-17)
sum e = 4.144510143504757
sum de = -8.199278929421627e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010674410699971429
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4214392727014317e-18,-9.90064656749891e-19,-1.581257576597367e-17)
sum a = (-2.357132753899097e-17,-3.223326991415681e-18,-1.173578607952609e-16)
sum e = 4.144509872840369
sum de = -1.6059744679941534e-18
Info: CFL hydro = 0.005079953696469684 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005079953696469684 cfl multiplier : 0.4452054811274972 [sph::Model][rank=0]
Info: Timestep 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.5733e+04 | 800 | 1 | 5.085e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 674.2596074095756 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.971250474182624, dt = 0.005079953696469684 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.3%)
patch tree reduce : 1262.00 ns (0.3%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 381.46 us (95.2%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5891960677936976e-18,-7.099707220869112e-19,-1.6826605679165314e-17)
sum a = (-1.6728872367738795e-16,1.296520373498798e-16,-4.658845852276642e-17)
sum e = 4.144509948979449
sum de = -1.6059744679941534e-18
Info: CFL hydro = 0.007190420985724002 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007190420985724002 cfl multiplier : 0.6301369874183315 [sph::Model][rank=0]
Info: Timestep 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.0673e+04 | 800 | 1 | 3.870e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 472.57521412120894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.976330427879094, dt = 0.007190420985724002 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.73 us (1.2%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1292.00 ns (0.3%)
LB compute : 387.94 us (95.4%)
LB move op cnt : 0
LB apply : 4.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.4934855828285514e-21,6.650358662586256e-19,-1.7138154012908095e-17)
sum a = (5.688752747860946e-17,5.2447963722774854e-17,-3.2832401325200613e-17)
sum e = 4.144510029286575
sum de = -2.6359665318553827e-18
Info: CFL hydro = 0.008597264124990834 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008597264124990834 cfl multiplier : 0.7534246582788876 [sph::Model][rank=0]
Info: Timestep 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.0967e+04 | 800 | 1 | 3.816e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 678.4264590695898 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.983520848864818, dt = 0.008597264124990834 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.45 us (1.1%)
patch tree reduce : 1042.00 ns (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 391.75 us (95.8%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4004696733148985e-18,8.837188312896151e-19,-1.724599766689598e-17)
sum a = (-1.0461134002530389e-16,1.2318141811060669e-17,-6.087175136205077e-17)
sum e = 4.1445101004435925
sum de = 1.7143946852427039e-18
Info: CFL hydro = 0.009536742188219025 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009536742188219025 cfl multiplier : 0.8356164388525918 [sph::Model][rank=0]
Info: Timestep 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.0830e+04 | 800 | 1 | 3.841e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 805.8813598953052 (tsim/hr) [sph::Model][rank=0]
---------------- t = 5.992118112989809, dt = 0.00788188701019088 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.2%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 380.01 us (95.5%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-2.3965256441752274e-19,8.500176894184009e-19,-1.7725302795731025e-17)
sum a = (1.4601431618548616e-16,1.2991565517073907e-16,1.0113338218419459e-17)
sum e = 4.144510066851944
sum de = -2.019326546254252e-18
Info: CFL hydro = 0.010165539337344912 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010165539337344912 cfl multiplier : 0.8904109592350613 [sph::Model][rank=0]
Info: Timestep 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.0871e+04 | 800 | 1 | 3.833e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 740.2565737985657 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 808 [SPH][rank=0]
Info: time since start : 887.257911745 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15091884663084468 max=0.1513723876641838 delta=0.000453541033339111
Number of particle pairs: 319600
Distance min=0.163972 max=2.296799 mean=0.934996
---------------- t = 6, dt = 0.010165539337344912 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.41 us (1.5%)
patch tree reduce : 1603.00 ns (0.3%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.1%)
LB compute : 586.42 us (96.3%)
LB move op cnt : 0
LB apply : 3.88 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2018079355859904e-18,2.7342859771511736e-18,-1.7392035948337908e-17)
sum a = (1.758450691413573e-17,-2.0490294257698196e-18,1.8376558639535643e-16)
sum e = 4.144510196249799
sum de = -1.2197274440461925e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011352196027789176
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.526287269634098e-18,1.765939834051621e-18,-1.658021288637355e-17)
sum a = (9.722105407007854e-17,6.2309666748555914e-18,1.4067605531308586e-17)
sum e = 4.144509874882025
sum de = -2.710505431213761e-19
Info: CFL hydro = 0.005291008272527286 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005291008272527286 cfl multiplier : 0.46347031974502045 [sph::Model][rank=0]
Info: Timestep 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.5142e+04 | 800 | 1 | 5.283e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 692.6546636952716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.010165539337345, dt = 0.005291008272527286 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.2%)
patch tree reduce : 852.00 ns (0.2%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 392.15 us (95.7%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.493884498469846e-18,1.8310953750026346e-18,-1.7325382578859283e-17)
sum a = (1.3377406145786119e-16,-1.5712820386034878e-16,1.495432001965342e-17)
sum e = 4.144509961069779
sum de = 1.260385025514399e-18
Info: CFL hydro = 0.007330860301992816 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007330860301992816 cfl multiplier : 0.6423135464966804 [sph::Model][rank=0]
Info: Timestep 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.1071e+04 | 800 | 1 | 3.797e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 501.6978800060166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.0154565476098725, dt = 0.007330860301992816 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (1.0%)
patch tree reduce : 1042.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 366.62 us (95.8%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.479455669636909e-18,5.811574687124927e-19,-1.712954149887434e-17)
sum a = (3.9758360436867025e-17,1.0630987757561309e-16,8.869541409092516e-17)
sum e = 4.144510040529594
sum de = 2.710505431213761e-19
Info: CFL hydro = 0.00868908381727842 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00868908381727842 cfl multiplier : 0.7615423643311203 [sph::Model][rank=0]
Info: Timestep 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.1087e+04 | 800 | 1 | 3.794e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 695.6446753374676 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.022787407911865, dt = 0.00868908381727842 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (0.9%)
patch tree reduce : 742.00 ns (0.2%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 417.30 us (96.5%)
LB move op cnt : 0
LB apply : 3.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.579810180986746e-18,2.2527341055247137e-18,-1.6115511585682697e-17)
sum a = (-2.2191827465062605e-17,8.260823895472009e-17,1.6883523163214478e-16)
sum e = 4.144510106110307
sum de = -1.2332799712022613e-18
Info: CFL hydro = 0.00958830296319984 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00958830296319984 cfl multiplier : 0.8410282428874135 [sph::Model][rank=0]
Info: Timestep 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.0831e+04 | 800 | 1 | 3.840e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 814.5239523440828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.031476491729144, dt = 0.00958830296319984 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (0.9%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 410.75 us (96.3%)
LB move op cnt : 0
LB apply : 3.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.179889964115005e-18,3.282491218256257e-18,-1.4144743700480474e-17)
sum a = (-1.822797404959678e-16,1.3866297377197865e-16,6.851666816696975e-17)
sum e = 4.144510152684769
sum de = 2.0328790734103208e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010152562438697853
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.29617113282539e-18,3.167158421630324e-18,-1.469416592726424e-17)
sum a = (-9.121176601730915e-17,-1.2098859714618634e-16,-3.700235594606551e-17)
sum e = 4.144509874939621
sum de = -1.043544591017298e-18
Info: CFL hydro = 0.005093403018336057 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005093403018336057 cfl multiplier : 0.4470094142958045 [sph::Model][rank=0]
Info: Timestep 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.5994e+04 | 800 | 1 | 5.002e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 690.078041910637 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.041064794692344, dt = 0.005093403018336057 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (1.0%)
patch tree reduce : 1133.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.3%)
LB compute : 376.57 us (95.9%)
LB move op cnt : 0
LB apply : 3.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4332224431016605e-18,1.4113289301400676e-18,-1.53445043510957e-17)
sum a = (1.9867197590212635e-17,1.1432625585537922e-16,-1.4738632711677649e-16)
sum e = 4.144509952685976
sum de = -4.87890977618477e-19
Info: CFL hydro = 0.007191690759255469 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007191690759255469 cfl multiplier : 0.6313396095305364 [sph::Model][rank=0]
Info: Timestep 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.1445e+04 | 800 | 1 | 3.730e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 491.5268104292275 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.046158197710681, dt = 0.007191690759255469 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.19 us (1.0%)
patch tree reduce : 812.00 ns (0.2%)
gen split merge : 591.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 396.24 us (96.2%)
LB move op cnt : 0
LB apply : 3.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6721260932553786e-18,2.7983181467064806e-18,-1.6634883627631296e-17)
sum a = (-8.591544434368191e-17,-1.3486448062596092e-16,-6.130312597800232e-17)
sum e = 4.14451002704271
sum de = 5.55653613398821e-19
Info: CFL hydro = 0.00858911596947448 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00858911596947448 cfl multiplier : 0.7542264063536909 [sph::Model][rank=0]
Info: Timestep 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.0981e+04 | 800 | 1 | 3.813e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 679.0030467784767 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.053349888469937, dt = 0.00858911596947448 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.28 us (1.0%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 400.51 us (95.9%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.539018812118779e-18,5.096361565191382e-19,-1.6868544877938382e-17)
sum a = (-1.2239056464802888e-16,-3.799691408839823e-17,9.830548192406783e-17)
sum e = 4.144510087025874
sum de = -2.439454888092385e-19
Info: CFL hydro = 0.009520580542103101 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009520580542103101 cfl multiplier : 0.8361509375691272 [sph::Model][rank=0]
Info: Timestep 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.0901e+04 | 800 | 1 | 3.828e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 807.8369368894635 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.061939004439411, dt = 0.009520580542103101 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.34 us (1.1%)
patch tree reduce : 1012.00 ns (0.3%)
gen split merge : 712.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 374.96 us (95.7%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0668039102804864e-19,4.343702730067599e-19,-1.5251638982383908e-17)
sum a = (4.687604160006745e-17,-6.458636611052238e-17,5.2819425197622013e-17)
sum e = 4.14451012837336
sum de = -1.6940658945086007e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010268353382915945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0245147128849098e-18,7.554672636130502e-19,-1.538419680707735e-17)
sum a = (7.926508568109564e-17,-1.430126678161567e-16,-3.1154833374277957e-18)
sum e = 4.144509875147866
sum de = -3.6591823321385775e-19
Info: CFL hydro = 0.005072023607582269 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005072023607582269 cfl multiplier : 0.44538364585637574 [sph::Model][rank=0]
Info: Timestep 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.4815e+04 | 800 | 1 | 5.400e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 634.7042763717307 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.071459584981515, dt = 0.005072023607582269 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.1%)
patch tree reduce : 1072.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 399.03 us (95.8%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (73.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.805632290033273e-18,-2.390908787196692e-19,-1.569724296934774e-17)
sum a = (1.1606373694740626e-16,-1.7824159478553253e-16,1.3049082132534112e-16)
sum e = 4.144509946473789
sum de = -1.1248597539537109e-18
Info: CFL hydro = 0.007178013675570403 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007178013675570403 cfl multiplier : 0.6302557639042505 [sph::Model][rank=0]
Info: Timestep 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.0757e+04 | 800 | 1 | 3.854e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 473.76203836123517 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.076531608589097, dt = 0.007178013675570403 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (0.8%)
patch tree reduce : 1223.00 ns (0.2%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 418.12 us (84.4%)
LB move op cnt : 0
LB apply : 63.88 us (12.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.453068671092487e-18,-1.582643067985406e-18,-1.4472019233763155e-17)
sum a = (-8.95341980663865e-17,5.901444398781497e-17,-1.2727947696214632e-16)
sum e = 4.144510014194218
sum de = 9.486769009248164e-20
Info: CFL hydro = 0.008583831615007259 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008583831615007259 cfl multiplier : 0.7535038426028337 [sph::Model][rank=0]
Info: Timestep 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.0391e+04 | 800 | 1 | 3.923e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 658.6492326122877 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.083709622264667, dt = 0.008583831615007259 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.40 us (2.5%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 395.48 us (94.5%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1278648812899664e-18,-3.922438456677423e-19,-1.6386244092048118e-17)
sum a = (2.491188407120149e-16,9.451298009216054e-17,1.1846026259158148e-16)
sum e = 4.144510068785684
sum de = 2.5343225781848666e-18
Info: CFL hydro = 0.009519773278501892 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009519773278501892 cfl multiplier : 0.8356692284018891 [sph::Model][rank=0]
Info: Timestep 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.0809e+04 | 800 | 1 | 3.845e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 803.7885692144459 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.092293453879674, dt = 0.009519773278501892 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (0.9%)
patch tree reduce : 500.00 ns (0.1%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.2%)
LB compute : 438.75 us (96.5%)
LB move op cnt : 0
LB apply : 3.75 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.7739539746234335e-18,4.450423012659778e-19,-1.433421900922308e-17)
sum a = (1.1997007374741189e-16,-5.5018237476152786e-17,1.8676124345057547e-16)
sum e = 4.144510107107043
sum de = 1.6398557858843255e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01050556920693511
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.165741978130994e-18,-3.731611591724359e-19,-1.389535525063349e-17)
sum a = (-8.699388088356076e-17,9.438716249584133e-17,-3.1753964785321765e-17)
sum e = 4.144509876062761
sum de = 7.860465750519907e-19
Info: CFL hydro = 0.005072379869644486 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005072379869644486 cfl multiplier : 0.44522307613396306 [sph::Model][rank=0]
Info: Timestep 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.5637e+04 | 800 | 1 | 5.116e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 669.880348541675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.101813227158176, dt = 0.005072379869644486 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.1%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 429.15 us (95.9%)
LB move op cnt : 0
LB apply : 3.61 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6357101371778723e-18,9.56784779152067e-19,-1.5093618072721104e-17)
sum a = (1.3827952966891062e-17,2.3384098973039783e-17,-2.0202711180397168e-17)
sum e = 4.144509941095669
sum de = -3.469446951953614e-18
Info: CFL hydro = 0.007179687776290974 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007179687776290974 cfl multiplier : 0.630148717422642 [sph::Model][rank=0]
Info: Timestep 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.0286e+04 | 800 | 1 | 3.944e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 463.0317772615597 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.10688560702782, dt = 0.007179687776290974 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.1%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 412.51 us (96.0%)
LB move op cnt : 0
LB apply : 3.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.925259114421387e-18,8.616258605073747e-19,-1.5213444354929866e-17)
sum a = (3.101104183562744e-17,-1.2503273417073204e-16,1.043926570602729e-16)
sum e = 4.144510004152545
sum de = 4.472333961502706e-19
Info: CFL hydro = 0.008586240462641776 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008586240462641776 cfl multiplier : 0.7534324782817613 [sph::Model][rank=0]
Info: Timestep 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.0556e+04 | 800 | 1 | 3.892e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 664.12502565342 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.114065294804111, dt = 0.008586240462641776 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.4%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 398.56 us (95.5%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.4094321859711634e-18,-4.568377009209028e-19,-1.3750065883455368e-17)
sum a = (-9.883271756578638e-17,5.0806343656514823e-17,-4.3449009928896875e-17)
sum e = 4.144510056927368
sum de = -3.5236570605778894e-19
Info: CFL hydro = 0.009519064426877721 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009519064426877721 cfl multiplier : 0.8356216521878409 [sph::Model][rank=0]
Info: Timestep 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.0719e+04 | 800 | 1 | 3.861e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 800.5595302485448 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.122651535266753, dt = 0.009519064426877721 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.71 us (1.2%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 384.82 us (95.7%)
LB move op cnt : 0
LB apply : 3.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0362978832851386e-18,3.293350475081426e-19,-1.488541990738338e-17)
sum a = (5.2723564171855e-18,1.2168358958299716e-16,-2.2814924132548166e-17)
sum e = 4.144510096969855
sum de = 1.2197274440461925e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010757816733829388
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6841087214762547e-18,1.429490101037333e-18,-1.479555019572681e-17)
sum a = (-7.208749137679084e-17,-5.610865664425251e-17,-5.679765776695289e-18)
sum e = 4.144509877996213
sum de = -1.0977546996415732e-18
Info: CFL hydro = 0.005070625136537512 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005070625136537512 cfl multiplier : 0.44520721739594693 [sph::Model][rank=0]
Info: Timestep 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.4756e+04 | 800 | 1 | 5.421e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 632.0957878745685 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.132170599693631, dt = 0.005070625136537512 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.54 us (1.0%)
patch tree reduce : 1173.00 ns (0.3%)
gen split merge : 1053.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 425.12 us (96.0%)
LB move op cnt : 0
LB apply : 3.57 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.72175389248714e-18,-3.727720748088186e-19,-1.4726650083456772e-17)
sum a = (2.318398908175115e-16,-6.454442691174931e-17,3.8919576461405696e-17)
sum e = 4.144509939469084
sum de = -7.453889935837843e-19
Info: CFL hydro = 0.0071761830367713195 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0071761830367713195 cfl multiplier : 0.6301381449306312 [sph::Model][rank=0]
Info: Timestep 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.0968e+04 | 800 | 1 | 3.815e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 478.4358996434594 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.137241224830168, dt = 0.0071761830367713195 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.5%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 380.29 us (95.2%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.259075418257662e-18,-4.411105013810028e-19,-1.4280297182229136e-17)
sum a = (-1.610345406603544e-16,2.7152635548505327e-17,-1.1683062515354234e-16)
sum e = 4.144510002185161
sum de = -1.3823577699190182e-18
Info: CFL hydro = 0.008579814042969479 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008579814042969479 cfl multiplier : 0.7534254299537541 [sph::Model][rank=0]
Info: Timestep 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.0477e+04 | 800 | 1 | 3.907e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 661.2466586665535 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.144417407866939, dt = 0.008579814042969479 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (1.2%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 380.84 us (95.5%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4259327582842604e-18,-3.6734244639623407e-19,-1.58170692515565e-17)
sum a = (-1.316171883781035e-16,-5.168107551663878e-17,-1.1179792130077435e-17)
sum e = 4.144510057715897
sum de = -1.1519648082658485e-19
Info: CFL hydro = 0.009516473616620242 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009516473616620242 cfl multiplier : 0.8356169533025026 [sph::Model][rank=0]
Info: Timestep 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.0579e+04 | 800 | 1 | 3.887e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 794.5522946176229 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.152997221909908, dt = 0.009516473616620242 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.3%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.2%)
LB compute : 397.36 us (95.4%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6176548098182785e-19,-4.508463868104647e-19,-1.5406664234991494e-17)
sum a = (-8.591544434368191e-17,3.236507882458645e-17,2.779969747243264e-18)
sum e = 4.144510103721185
sum de = -9.486769009248164e-20
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010362190599451537
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.298767874239314e-19,-3.418793614268723e-19,-1.5427633834378026e-17)
sum a = (2.590644221353421e-16,-1.0977285713144629e-16,8.796447376945172e-17)
sum e = 4.144509880678244
sum de = 1.6940658945086007e-19
Info: CFL hydro = 0.00507181118861916 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00507181118861916 cfl multiplier : 0.4452056511008342 [sph::Model][rank=0]
Info: Timestep 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.5488e+04 | 800 | 1 | 5.165e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 663.2607559144684 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.1625136955265285, dt = 0.00507181118861916 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.33 us (1.1%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 375.50 us (95.6%)
LB move op cnt : 0
LB apply : 3.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.545360124851727e-18,-1.8003898901866396e-18,-1.457686723069582e-17)
sum a = (2.8087280549733666e-17,1.1886168063698084e-16,-7.982826920747683e-17)
sum e = 4.14450994324959
sum de = -1.2807138162485021e-18
Info: CFL hydro = 0.007179786728448748 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007179786728448748 cfl multiplier : 0.6301371007338895 [sph::Model][rank=0]
Info: Timestep 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.0998e+04 | 800 | 1 | 3.810e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 479.2365431632883 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.167585506715148, dt = 0.007179786728448748 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (0.9%)
patch tree reduce : 721.00 ns (0.2%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 381.49 us (96.2%)
LB move op cnt : 0
LB apply : 3.02 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1439420794523765e-18,-5.500775267645952e-19,-1.5442612119654122e-17)
sum a = (3.53008227387011e-17,-6.848072028230712e-18,-2.4821415228133874e-16)
sum e = 4.1445100102280845
sum de = -2.9205696021328276e-18
Info: CFL hydro = 0.00858728199176687 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00858728199176687 cfl multiplier : 0.7534247338225931 [sph::Model][rank=0]
Info: Timestep 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.1077e+04 | 800 | 1 | 3.796e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 680.9821425890997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.174765293443596, dt = 0.00858728199176687 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (1.1%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 390.34 us (95.8%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.166409507366519e-18,-1.091916996627338e-18,-1.839033866198965e-17)
sum a = (2.2189430939418431e-16,4.535574564454379e-17,3.1957669465076656e-17)
sum e = 4.1445100718462475
sum de = 1.582257545471033e-18
Info: CFL hydro = 0.009520483053432262 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009520483053432262 cfl multiplier : 0.8356164892150622 [sph::Model][rank=0]
Info: Timestep 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.0720e+04 | 800 | 1 | 3.861e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 800.6844690946657 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.1833525754353635, dt = 0.009520483053432262 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.28 us (1.1%)
patch tree reduce : 902.00 ns (0.2%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 377.45 us (95.6%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.2669145595182195e-18,-2.1643622223957523e-19,-1.6817618707999657e-17)
sum a = (9.690351442222532e-17,-8.992962479767542e-17,-1.6664840198183488e-17)
sum e = 4.1445101241882725
sum de = -1.3230654636112171e-18
Info: CFL hydro = 0.01013542046139135 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01013542046139135 cfl multiplier : 0.8904109928100414 [sph::Model][rank=0]
Info: Timestep 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.9363e+04 | 800 | 1 | 4.132e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 829.5510181841162 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.192873058488796, dt = 0.01013542046139135 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (0.6%)
patch tree reduce : 1072.00 ns (0.2%)
gen split merge : 781.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.1%)
LB compute : 668.89 us (97.6%)
LB move op cnt : 0
LB apply : 3.76 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.463130096635066e-18,-1.8310953750026346e-18,-1.7287936865669046e-17)
sum a = (2.234999815757817e-16,-5.765048388486056e-17,1.7253187243828507e-16)
sum e = 4.144510167580694
sum de = 2.326799506107563e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010599906469135036
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.640423319336146e-18,-1.4465279005388911e-18,-1.6245448210452823e-17)
sum a = (1.2449950721490306e-17,-9.759101771639808e-18,-5.897774718888854e-17)
sum e = 4.144509886744539
sum de = -5.251604272976662e-20
Info: CFL hydro = 0.005272681919424772 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005272681919424772 cfl multiplier : 0.4634703309366805 [sph::Model][rank=0]
Info: Timestep 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.5272e+04 | 800 | 1 | 5.238e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 696.5664866379146 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.203008478950187, dt = 0.005272681919424772 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (1.0%)
patch tree reduce : 1022.00 ns (0.2%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 408.20 us (96.2%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.350792957064353e-18,-1.5296573838212193e-18,-1.786609867732632e-17)
sum a = (7.437617336697819e-17,6.724725848982069e-17,-1.1446106042286408e-16)
sum e = 4.144509961508339
sum de = -1.2671612890924333e-18
Info: CFL hydro = 0.007305281213118182 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007305281213118182 cfl multiplier : 0.642313553957787 [sph::Model][rank=0]
Info: Timestep 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.9619e+04 | 800 | 1 | 4.078e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 465.505617766373 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.208281160869611, dt = 0.007305281213118182 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.18 us (0.5%)
patch tree reduce : 1252.00 ns (0.1%)
gen split merge : 781.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1383.00 ns (0.2%)
LB compute : 825.30 us (97.9%)
LB move op cnt : 0
LB apply : 3.96 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.901993855224655e-18,-5.84527582899614e-19,-1.8848674191438165e-17)
sum a = (9.312898653264934e-17,-7.40945816037876e-17,-9.481254579768244e-18)
sum e = 4.144510036056228
sum de = 1.1180834903756764e-19
Info: CFL hydro = 0.008659304174143422 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008659304174143422 cfl multiplier : 0.7615423693051913 [sph::Model][rank=0]
Info: Timestep 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.0090e+04 | 800 | 1 | 3.982e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 660.4366742059422 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.21558644208273, dt = 0.008659304174143422 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.89 us (0.9%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 406.82 us (96.1%)
LB move op cnt : 0
LB apply : 3.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.775227886821003e-18,-1.9355689148033986e-18,-1.8465230088370128e-17)
sum a = (-1.2315745285416495e-16,3.3579817760477764e-17,1.1850220179035456e-16)
sum e = 4.144510102986
sum de = -2.066760391300493e-18
Info: CFL hydro = 0.009562518236316585 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009562518236316585 cfl multiplier : 0.8410282462034608 [sph::Model][rank=0]
Info: Timestep 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.0814e+04 | 800 | 1 | 3.844e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 811.0627226426866 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.224245746256873, dt = 0.009562518236316585 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (1.0%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 396.63 us (95.8%)
LB move op cnt : 0
LB apply : 3.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.844526914732336e-18,-1.1900247651857614e-18,-1.6754709909840058e-17)
sum a = (5.7223041068794e-17,-1.0030358517989892e-16,1.4498980147260126e-17)
sum e = 4.1445101577090435
sum de = -1.0164395367051604e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010147522981034454
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.60841946381319e-18,-1.6977886360453876e-18,-1.736881960615996e-17)
sum a = (2.3164217745186707e-16,1.1684560343881843e-16,-2.512757137917726e-17)
sum e = 4.144509888160763
sum de = -8.267041565201971e-19
Info: CFL hydro = 0.005084163914929014 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005084163914929014 cfl multiplier : 0.44700941540115363 [sph::Model][rank=0]
Info: Timestep 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.5507e+04 | 800 | 1 | 5.159e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 667.2782222094406 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.23380826449319, dt = 0.005084163914929014 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (1.1%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 400.79 us (95.7%)
LB move op cnt : 0
LB apply : 4.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.696392431300856e-18,-1.0035451134983765e-19,-1.7734289766896682e-17)
sum a = (-1.912008072064101e-16,-5.340657398044494e-17,5.124970090068724e-17)
sum e = 4.144509963517309
sum de = -1.2536087619363645e-18
Info: CFL hydro = 0.007182030822056196 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007182030822056196 cfl multiplier : 0.6313396102674358 [sph::Model][rank=0]
Info: Timestep 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.0736e+04 | 800 | 1 | 3.858e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 474.4060873138992 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.238892428408119, dt = 0.007182030822056196 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (1.0%)
patch tree reduce : 982.00 ns (0.2%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 395.15 us (96.0%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.340308157371086e-18,-8.739829458601532e-19,-1.7111193099411124e-17)
sum a = (4.042189847459804e-17,1.4625097309284848e-16,-4.493485582828552e-18)
sum e = 4.144510041726631
sum de = 1.9922214919421144e-18
Info: CFL hydro = 0.008583465503115194 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008583465503115194 cfl multiplier : 0.7542264068449572 [sph::Model][rank=0]
Info: Timestep 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.0891e+04 | 800 | 1 | 3.829e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 675.1907141933489 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.246074459230175, dt = 0.008583465503115194 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.36 us (1.1%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 378.64 us (95.6%)
LB move op cnt : 0
LB apply : 3.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.328874985593367e-18,9.470020865811173e-19,-1.7162119269349848e-17)
sum a = (-2.218299027674971e-16,-1.284387962425161e-16,1.1269661841734007e-16)
sum e = 4.144510110262023
sum de = -1.3552527156068805e-18
Info: CFL hydro = 0.00952238129552842 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00952238129552842 cfl multiplier : 0.8361509378966382 [sph::Model][rank=0]
Info: Timestep 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.1044e+04 | 800 | 1 | 3.801e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 812.8503028008757 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.25465792473329, dt = 0.00952238129552842 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (1.0%)
patch tree reduce : 892.00 ns (0.2%)
gen split merge : 1032.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 409.76 us (96.3%)
LB move op cnt : 0
LB apply : 3.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.054621824238963e-18,-1.280456162540186e-18,-1.56912516552373e-17)
sum a = (9.641821797927984e-17,1.0021970678235279e-16,-9.499827653510602e-17)
sum e = 4.144510163332232
sum de = 7.995991022080595e-19
Info: CFL hydro = 0.010150401762851025 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010150401762851025 cfl multiplier : 0.890767291931092 [sph::Model][rank=0]
Info: Timestep 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.0631e+04 | 800 | 1 | 3.878e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 884.0426840011347 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.264180306028818, dt = 0.010150401762851025 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (1.1%)
patch tree reduce : 1011.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 375.73 us (95.8%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.629389063199723e-18,6.972391796022302e-19,-1.7458689317816533e-17)
sum a = (-1.7386793548491274e-17,-7.173100818721978e-17,-1.0867045533512569e-16)
sum e = 4.1445102006182
sum de = 4.472333961502706e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011349858715544876
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.950872740192612e-18,-9.548656863510672e-20,-1.758450691413573e-17)
sum a = (-2.6128120835620418e-17,7.284239695470604e-17,1.670618026554551e-16)
sum e = 4.144509889995202
sum de = -1.4907779871675686e-19
Info: CFL hydro = 0.00528355180008742 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00528355180008742 cfl multiplier : 0.463589097310364 [sph::Model][rank=0]
Info: Timestep 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.5668e+04 | 800 | 1 | 5.106e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 715.6841065281181 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.274330707791669, dt = 0.00528355180008742 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.0%)
patch tree reduce : 1273.00 ns (0.3%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 396.95 us (95.9%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.838535600621898e-18,8.451497467036701e-19,-1.5622351542967265e-17)
sum a = (2.0212297282973868e-16,1.5802090966280405e-16,2.3150437722732697e-17)
sum e = 4.14450997332135
sum de = 2.846030702774449e-19
Info: CFL hydro = 0.007320318300119278 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007320318300119278 cfl multiplier : 0.6423927315402427 [sph::Model][rank=0]
Info: Timestep 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.0663e+04 | 800 | 1 | 3.872e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 491.2812669468811 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.279614259591757, dt = 0.007320318300119278 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (1.0%)
patch tree reduce : 1083.00 ns (0.2%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 417.11 us (96.1%)
LB move op cnt : 0
LB apply : 3.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.772232229765785e-18,2.344850559972699e-18,-1.5592394972415073e-17)
sum a = (7.305209294857137e-17,1.6861355301005857e-16,7.644916804918976e-18)
sum e = 4.144510048679161
sum de = 3.2526065174565133e-19
Info: CFL hydro = 0.008676112790345683 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008676112790345683 cfl multiplier : 0.7615951543601618 [sph::Model][rank=0]
Info: Timestep 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.0694e+04 | 800 | 1 | 3.866e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 681.6752133299319 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.286934577891876, dt = 0.008676112790345683 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (1.0%)
patch tree reduce : 932.00 ns (0.2%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 418.76 us (96.1%)
LB move op cnt : 0
LB apply : 3.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.133208904919678e-18,3.847734258862898e-18,-1.5658299427629893e-17)
sum a = (1.8279499350946548e-17,9.146340120994755e-17,-1.980488792346408e-16)
sum e = 4.1445101097730594
sum de = -6.098637220230962e-19
Info: CFL hydro = 0.009579736684852718 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009579736684852718 cfl multiplier : 0.8410634362401078 [sph::Model][rank=0]
Info: Timestep 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.0634e+04 | 800 | 1 | 3.877e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 805.5930141280895 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.295610690682222, dt = 0.009579736684852718 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (1.0%)
patch tree reduce : 992.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 370.22 us (95.9%)
LB move op cnt : 0
LB apply : 3.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.010386965655697e-18,4.330222273319114e-18,-1.8573073742358012e-17)
sum a = (-7.080535015715709e-17,1.821239663290964e-16,1.3310303427749214e-16)
sum e = 4.144510152436418
sum de = -9.351243737687476e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01101947710135598
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.558042750317624e-18,4.900614099489413e-18,-1.6672329340821536e-17)
sum a = (-2.2994663555861307e-17,4.673824137552737e-17,6.190225738904613e-17)
sum e = 4.1445098900281545
sum de = 6.2341624917916505e-19
Info: CFL hydro = 0.005092232913310327 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005092232913310327 cfl multiplier : 0.44702114541336924 [sph::Model][rank=0]
Info: Timestep 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.6169e+04 | 800 | 1 | 4.948e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 697.0450135429047 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.305190427367075, dt = 0.005092232913310327 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (1.1%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 382.00 us (95.7%)
LB move op cnt : 0
LB apply : 3.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.465177381605833e-18,4.356340658269305e-18,-1.6867047049410773e-17)
sum a = (9.043289518295221e-17,-2.46302923080109e-17,-6.6144107779236274e-18)
sum e = 4.1445099636162785
sum de = 1.463672932855431e-18
Info: CFL hydro = 0.0071925431457137284 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0071925431457137284 cfl multiplier : 0.6313474302755795 [sph::Model][rank=0]
Info: Timestep 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.9127e+04 | 800 | 1 | 4.182e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 438.30350713359877 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.310282660280385, dt = 0.0071925431457137284 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (1.1%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 424.11 us (96.1%)
LB move op cnt : 0
LB apply : 3.73 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.534626950319028e-18,4.024969500106443e-18,-1.7163617097877457e-17)
sum a = (1.1143844245414807e-17,-1.4279098919407048e-16,1.505976714799713e-16)
sum e = 4.144510033365801
sum de = -2.981555974335137e-19
Info: CFL hydro = 0.008594420123792698 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008594420123792698 cfl multiplier : 0.7542316201837197 [sph::Model][rank=0]
Info: Timestep 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.0995e+04 | 800 | 1 | 3.810e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 679.5248913849085 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.317475203426099, dt = 0.008594420123792698 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (1.2%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.3%)
LB compute : 396.41 us (95.5%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.199113360134496e-18,2.3842621731054247e-18,-1.5147539899715046e-17)
sum a = (4.693595474117183e-17,1.291667409069343e-16,-4.793051288350455e-19)
sum e = 4.14451008943505
sum de = -2.087089182034596e-18
Info: CFL hydro = 0.009532045521004793 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009532045521004793 cfl multiplier : 0.8361544134558132 [sph::Model][rank=0]
Info: Timestep 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.1127e+04 | 800 | 1 | 3.787e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 817.0759653745178 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.326069623549892, dt = 0.009532045521004793 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.1%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 385.61 us (95.7%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.021421221792122e-18,4.833586272878887e-18,-1.594887816198614e-17)
sum a = (-7.008639246390453e-17,1.1208550437807538e-16,1.2629690144803448e-16)
sum e = 4.144510128238639
sum de = -1.0842021724855044e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010656999224099123
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.444757238662458e-18,4.625575336107116e-18,-1.5372214178856475e-17)
sum a = (-7.762346561483561e-17,1.73939831254238e-16,-4.53422651877953e-17)
sum e = 4.144509890441581
sum de = -1.0842021724855044e-19
Info: CFL hydro = 0.0050812554781481944 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0050812554781481944 cfl multiplier : 0.44538480448527107 [sph::Model][rank=0]
Info: Timestep 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.5442e+04 | 800 | 1 | 5.181e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 662.3872805158139 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.335601669070897, dt = 0.0050812554781481944 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (0.9%)
patch tree reduce : 1203.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 424.65 us (96.2%)
LB move op cnt : 0
LB apply : 3.58 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.876250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.751262630379251e-18,5.929715912240127e-18,-1.6420694148183137e-17)
sum a = (-1.3851918223332815e-17,-8.6969915627119e-17,9.818565564185907e-17)
sum e = 4.1445099574928514
sum de = 2.358139725155972e-18
Info: CFL hydro = 0.007191176447089355 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007191176447089355 cfl multiplier : 0.6302565363235141 [sph::Model][rank=0]
Info: Timestep 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.1237e+04 | 800 | 1 | 3.767e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 485.6082958116147 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.3406829245490455, dt = 0.007191176447089355 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.18 us (1.0%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.2%)
LB compute : 414.64 us (96.0%)
LB move op cnt : 0
LB apply : 3.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.070300106760079e-18,4.460907812353045e-18,-1.5235911782844007e-17)
sum a = (1.3529585524191246e-16,-1.4791356275849505e-16,-8.96300590921535e-18)
sum e = 4.144510021409857
sum de = 3.5236570605778894e-19
Info: CFL hydro = 0.008596575276582308 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008596575276582308 cfl multiplier : 0.7535043575490095 [sph::Model][rank=0]
Info: Timestep 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.9986e+04 | 800 | 1 | 4.003e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 646.7619105245624 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.347874100996135, dt = 0.008596575276582308 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.93 us (1.0%)
patch tree reduce : 591.00 ns (0.2%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 377.75 us (96.1%)
LB move op cnt : 0
LB apply : 3.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.61456131872549e-18,3.0795354527651673e-18,-1.5717463654470467e-17)
sum a = (1.4990267904316047e-16,-2.2623202081014148e-17,1.351880115879246e-16)
sum e = 4.144510073364245
sum de = -2.168404344971009e-18
Info: CFL hydro = 0.00953457142338215 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00953457142338215 cfl multiplier : 0.8356695716993396 [sph::Model][rank=0]
Info: Timestep 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.1438e+04 | 800 | 1 | 3.732e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 829.3096771857748 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.356470676272718, dt = 0.00953457142338215 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.1%)
patch tree reduce : 621.00 ns (0.2%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 386.12 us (96.1%)
LB move op cnt : 0
LB apply : 3.10 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1226973728697135e-17,3.5526620389238234e-18,-1.3562837317504178e-17)
sum a = (2.4530836493777626e-16,1.21216267082383e-16,1.7254984638061637e-18)
sum e = 4.144510110947276
sum de = 1.8973538018496328e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01069115547819265
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1710023428851205e-17,3.966437169675952e-18,-1.4441313748947158e-17)
sum a = (7.528685311176477e-17,-1.0688504373021514e-17,-1.1997007374741189e-16)
sum e = 4.14450989168794
sum de = 3.2526065174565133e-19
Info: CFL hydro = 0.005080969591484636 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005080969591484636 cfl multiplier : 0.44522319056644655 [sph::Model][rank=0]
Info: Timestep 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.5793e+04 | 800 | 1 | 5.066e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 677.5935854783809 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.3660052476960995, dt = 0.005080969591484636 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (1.0%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 372.21 us (95.9%)
LB move op cnt : 0
LB apply : 3.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1574469947102544e-17,3.3515785590922458e-18,-1.5572174287292346e-17)
sum a = (-1.2725551170570457e-17,1.7021922519165598e-16,1.150332309204109e-16)
sum e = 4.144509953378631
sum de = 1.0706496453294356e-18
Info: CFL hydro = 0.007188853510713933 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007188853510713933 cfl multiplier : 0.6301487937109643 [sph::Model][rank=0]
Info: Timestep 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.1067e+04 | 800 | 1 | 3.797e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 481.6849808179042 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.371086217287584, dt = 0.007188853510713933 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.48 us (1.1%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 383.34 us (95.7%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0991065735598636e-17,5.016227738964273e-18,-1.4218886212597146e-17)
sum a = (-3.325658636421963e-16,1.656598351536126e-17,1.6536026944809069e-18)
sum e = 4.144510014137763
sum de = 1.5585406229479126e-18
Info: CFL hydro = 0.008591988314371893 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008591988314371893 cfl multiplier : 0.7534325291406428 [sph::Model][rank=0]
Info: Timestep 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.1189e+04 | 800 | 1 | 3.776e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 685.4638293702131 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.378275070798298, dt = 0.008591988314371893 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.19 us (1.0%)
patch tree reduce : 982.00 ns (0.2%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 411.57 us (96.1%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.018824480378197e-18,4.546658495558689e-18,-1.4572654587961918e-17)
sum a = (5.715713661357917e-17,-6.277099793505965e-17,-1.6579164406404223e-16)
sum e = 4.144510065879424
sum de = -5.963111948670274e-19
Info: CFL hydro = 0.009526429501888586 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009526429501888586 cfl multiplier : 0.835621686093762 [sph::Model][rank=0]
Info: Timestep 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.1048e+04 | 800 | 1 | 3.801e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 813.7970274588415 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.38686705911267, dt = 0.009526429501888586 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (1.1%)
patch tree reduce : 782.00 ns (0.2%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 374.07 us (95.9%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.222130244491796e-18,3.79137846051159e-18,-1.6829882179069462e-17)
sum a = (-1.6679818483459584e-17,-5.420042310007799e-17,-8.716163767865302e-17)
sum e = 4.144510106516434
sum de = 7.995991022080595e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01074094773676596
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.79300237133167e-18,3.831445373625145e-18,-1.6525354916549852e-17)
sum a = (1.550072786652537e-16,1.5555248824930358e-16,-1.1647114630691606e-16)
sum e = 4.144509893805025
sum de = 1.0164395367051604e-18
Info: CFL hydro = 0.005074989852035275 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005074989852035275 cfl multiplier : 0.4452072286979207 [sph::Model][rank=0]
Info: Timestep 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.5941e+04 | 800 | 1 | 5.019e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 683.3685834075528 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.396393488614558, dt = 0.005074989852035275 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (0.9%)
patch tree reduce : 821.00 ns (0.2%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 411.75 us (96.3%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0621102089279087e-17,5.6187292641952014e-18,-1.722690035316896e-17)
sum a = (-6.190225738904613e-17,-1.966199508193013e-16,1.100724228369682e-16)
sum e = 4.144509953496419
sum de = -7.453889935837843e-19
Info: CFL hydro = 0.007182576527416338 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007182576527416338 cfl multiplier : 0.6301381524652805 [sph::Model][rank=0]
Info: Timestep 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.0957e+04 | 800 | 1 | 3.817e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 478.59914790128977 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.401468478466594, dt = 0.007182576527416338 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (1.0%)
patch tree reduce : 872.00 ns (0.2%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 364.57 us (96.0%)
LB move op cnt : 0
LB apply : 3.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.607821090351248e-18,3.0184989402650794e-18,-1.586612313583571e-17)
sum a = (1.0432076129094765e-16,3.556144490250516e-17,5.1477370836883884e-17)
sum e = 4.144510015402428
sum de = 1.7211709488207383e-18
Info: CFL hydro = 0.00858825651679464 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00858825651679464 cfl multiplier : 0.7534254349768537 [sph::Model][rank=0]
Info: Timestep 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.1014e+04 | 800 | 1 | 3.807e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 679.2022409494728 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.40865105499401, dt = 0.00858825651679464 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (1.0%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 398.26 us (96.0%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0801590426856033e-17,4.690824491341105e-18,-1.5757905024715925e-17)
sum a = (-5.564732545774878e-17,2.3836443188377854e-17,1.1774130489832892e-16)
sum e = 4.144510070899898
sum de = -1.0164395367051604e-18
Info: CFL hydro = 0.009527315487583935 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009527315487583935 cfl multiplier : 0.8356169566512358 [sph::Model][rank=0]
Info: Timestep 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.0857e+04 | 800 | 1 | 3.836e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 806.0793774059365 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.417239311510805, dt = 0.009527315487583935 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (1.0%)
patch tree reduce : 1282.00 ns (0.3%)
gen split merge : 1012.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.2%)
LB compute : 408.04 us (95.2%)
LB move op cnt : 0
LB apply : 3.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.985648336440748e-18,4.572121580528051e-18,-1.4203159013057246e-17)
sum a = (-5.635430052278047e-17,5.579411265345451e-17,6.973889624549912e-18)
sum e = 4.144510117270614
sum de = -1.4907779871675686e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010577560274131826
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.708550058832988e-18,5.247267789348041e-18,-1.4901896021187086e-17)
sum a = (-5.0015490193936993e-17,7.440612993753037e-17,1.3182089305785837e-16)
sum e = 4.144509896334526
sum de = 1.0842021724855044e-19
Info: CFL hydro = 0.005073129747187877 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005073129747187877 cfl multiplier : 0.44520565221707864 [sph::Model][rank=0]
Info: Timestep 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.5677e+04 | 800 | 1 | 5.103e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 672.1071136623582 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.426766626998389, dt = 0.005073129747187877 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.2%)
patch tree reduce : 1323.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 402.27 us (95.4%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.323608127237342e-18,5.277598817032134e-18,-1.3424288178700297e-17)
sum a = (2.5125174853533085e-16,-1.4991466167138135e-16,-3.8440271332570646e-17)
sum e = 4.144509958208154
sum de = 6.369687763352339e-19
Info: CFL hydro = 0.007178359161961432 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007178359161961432 cfl multiplier : 0.6301371014780525 [sph::Model][rank=0]
Info: Timestep 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.0807e+04 | 800 | 1 | 3.845e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 475.0102583569191 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.4318397567455765, dt = 0.007178359161961432 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.76 us (1.2%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1073.00 ns (0.3%)
LB compute : 375.76 us (95.4%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2103952331612508e-17,3.673050006830438e-18,-1.4185185070725932e-17)
sum a = (-1.488362251315025e-16,-8.216188605349245e-17,6.277698924917009e-17)
sum e = 4.14451002438064
sum de = -1.0028870095490916e-18
Info: CFL hydro = 0.008580186702857434 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008580186702857434 cfl multiplier : 0.7534247343187017 [sph::Model][rank=0]
Info: Timestep 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.1035e+04 | 800 | 1 | 3.803e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 679.4761290777334 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.439018115907538, dt = 0.008580186702857434 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (1.0%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1253.00 ns (0.3%)
LB compute : 392.21 us (92.2%)
LB move op cnt : 0
LB apply : 19.28 us (4.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.415350124553425e-18,3.0885224239308243e-18,-1.3390587036829083e-17)
sum a = (-1.1571624072900085e-16,-1.1437418636826273e-16,1.2810627830938677e-16)
sum e = 4.144510084719117
sum de = 2.439454888092385e-19
Info: CFL hydro = 0.009514151269698535 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009514151269698535 cfl multiplier : 0.8356164895458011 [sph::Model][rank=0]
Info: Timestep 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.0953e+04 | 800 | 1 | 3.818e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 809.0213485340922 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.447598302610396, dt = 0.009514151269698535 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.74 us (1.2%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 377.92 us (95.5%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.711370716576952e-18,2.00034999862251e-18,-1.188377153805391e-17)
sum a = (-1.3178494517319576e-16,-2.375556044788694e-17,-1.5462383456218568e-16)
sum e = 4.144510135300187
sum de = 2.032879073410321e-18
Info: CFL hydro = 0.010137538098187708 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010137538098187708 cfl multiplier : 0.8904109930305341 [sph::Model][rank=0]
Info: Timestep 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.0192e+04 | 800 | 1 | 3.962e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 864.5058059723038 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.457112453880094, dt = 0.010137538098187708 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (1.0%)
patch tree reduce : 971.00 ns (0.2%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 374.63 us (95.9%)
LB move op cnt : 0
LB apply : 3.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.974638538813716e-18,2.125418680677905e-18,-1.4865948136524458e-17)
sum a = (-9.6160591472531e-17,1.3276152937319716e-16,-7.879776318048148e-17)
sum e = 4.144510176301223
sum de = 1.1079190950086248e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01124070255575186
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.158871447709687e-18,2.854112259359935e-18,-1.4451049634376623e-17)
sum a = (2.2191827465062605e-17,3.7322891250973946e-17,5.890060901971665e-17)
sum e = 4.144509901370931
sum de = 1.3010426069826053e-18
Info: CFL hydro = 0.005278138574362494 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005278138574362494 cfl multiplier : 0.463470331010178 [sph::Model][rank=0]
Info: Timestep 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.6234e+04 | 800 | 1 | 4.928e-02 | 0.0% | 2.9% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 740.5858118999009 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.4672499919782815, dt = 0.005278138574362494 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 20.21 us (4.7%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.3%)
LB compute : 395.91 us (92.3%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.918270511207712e-18,2.562035696476079e-18,-1.3564335146031787e-17)
sum a = (2.379031006972748e-16,1.0894905144126106e-16,-3.049578882212977e-18)
sum e = 4.144509974790561
sum de = 1.6678078731437174e-18
Info: CFL hydro = 0.0073159665458465166 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0073159665458465166 cfl multiplier : 0.6423135540067854 [sph::Model][rank=0]
Info: Timestep 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.1532e+04 | 800 | 1 | 3.715e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 511.4240381909934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.472528130552644, dt = 0.0073159665458465166 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (0.9%)
patch tree reduce : 831.00 ns (0.2%)
gen split merge : 682.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 389.14 us (96.3%)
LB move op cnt : 0
LB apply : 3.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0090870790505317e-17,3.3506424162624898e-18,-1.37395810837621e-17)
sum a = (5.0303073271238024e-17,1.133137237707152e-16,-2.0593344860397728e-16)
sum e = 4.144510046620133
sum de = -2.947674656444965e-19
Info: CFL hydro = 0.008676762578426072 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008676762578426072 cfl multiplier : 0.761542369337857 [sph::Model][rank=0]
Info: Timestep 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.1039e+04 | 800 | 1 | 3.802e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 692.6558869483583 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.47984409709849, dt = 0.008676762578426072 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.98 us (0.9%)
patch tree reduce : 1282.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 420.79 us (96.2%)
LB move op cnt : 0
LB apply : 3.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.95606622302046e-18,4.503970382521818e-18,-1.6242452553397605e-17)
sum a = (2.5882476957092458e-17,1.0466076836671501e-16,1.3209948916399374e-16)
sum e = 4.1445101098657355
sum de = 4.1674021004911577e-19
Info: CFL hydro = 0.009582850427905625 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009582850427905625 cfl multiplier : 0.8410282462252381 [sph::Model][rank=0]
Info: Timestep 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.1235e+04 | 800 | 1 | 3.767e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 829.1141363309083 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.488520859676916, dt = 0.009582850427905625 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (0.9%)
patch tree reduce : 1263.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 394.77 us (96.1%)
LB move op cnt : 0
LB apply : 3.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0382947353389173e-17,5.381697899700995e-18,-1.3360630466276894e-17)
sum a = (2.3030611440523935e-17,-9.208050656332268e-17,-1.465385561701495e-16)
sum e = 4.144510159736366
sum de = -2.236166980751353e-19
Info: CFL hydro = 0.010177552858510462 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010177552858510462 cfl multiplier : 0.8940188308168254 [sph::Model][rank=0]
Info: Timestep 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.0914e+04 | 800 | 1 | 3.825e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 901.8542205051162 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.498103710104822, dt = 0.0018962898951784268 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (0.9%)
patch tree reduce : 802.00 ns (0.2%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.2%)
LB compute : 414.31 us (96.2%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.024065364326627e-17,4.294274388656485e-18,-1.5190976927015722e-17)
sum a = (-1.3769238088608768e-16,-2.6036303946877954e-16,-6.941087179795264e-17)
sum e = 4.144509912784708
sum de = -1.179069862577986e-18
Info: CFL hydro = 0.010578718001887526 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010578718001887526 cfl multiplier : 0.929345887211217 [sph::Model][rank=0]
Info: Timestep 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.1028e+04 | 800 | 1 | 3.804e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 179.4386628690992 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 873 [SPH][rank=0]
Info: time since start : 890.9045328850001 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15095887419903445 max=0.1514038454960963 delta=0.00044497129706186356
Number of particle pairs: 319600
Distance min=0.163490 max=2.296883 mean=0.934801
---------------- t = 6.5, dt = 0.010578718001887526 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.29 us (1.5%)
patch tree reduce : 1452.00 ns (0.2%)
gen split merge : 561.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.2%)
LB compute : 597.93 us (96.3%)
LB move op cnt : 0
LB apply : 4.43 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (74.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.215589473938201e-18,1.2529335633453611e-18,-1.5760151767507338e-17)
sum a = (-1.248050642345354e-16,1.2387041923330707e-18,-5.99947727591354e-17)
sum e = 4.14451021729735
sum de = -1.1993986533120893e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011721858376633473
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.413302839582657e-18,2.798692603838383e-18,-1.582006490861172e-17)
sum a = (-8.543613921484686e-18,5.515004638658242e-18,5.2933260165720333e-17)
sum e = 4.144509903291163
sum de = 8.809142651444724e-20
Info: CFL hydro = 0.0054187803286047075 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0054187803286047075 cfl multiplier : 0.4764486290704057 [sph::Model][rank=0]
Info: Timestep 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.5423e+04 | 800 | 1 | 5.187e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 734.1802235055264 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.510578718001888, dt = 0.0054187803286047075 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.32 us (1.0%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 397.54 us (95.9%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.295523842344663e-18,2.8780775158016874e-18,-1.5006744018119752e-17)
sum a = (4.071697069453711e-17,1.5379703321494523e-17,2.8228825345592765e-17)
sum e = 4.144509984914662
sum de = -1.6195269951502222e-18
Info: CFL hydro = 0.007400790413844311 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007400790413844311 cfl multiplier : 0.6509657527136038 [sph::Model][rank=0]
Info: Timestep 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.0275e+04 | 800 | 1 | 3.946e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 494.3876245662793 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.515997498330493, dt = 0.007400790413844311 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (0.5%)
patch tree reduce : 882.00 ns (0.1%)
gen split merge : 742.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.1%)
LB compute : 826.00 us (98.1%)
LB move op cnt : 0
LB apply : 3.35 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.192173673939607e-18,3.1349551082867195e-18,-1.4807532823947685e-17)
sum a = (-1.534016064836563e-16,-5.425734058412715e-17,1.8331474000854598e-16)
sum e = 4.1445100559121615
sum de = -1.5720931501039814e-18
Info: CFL hydro = 0.00871992443165672 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00871992443165672 cfl multiplier : 0.7673105018090691 [sph::Model][rank=0]
Info: Timestep 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.0754e+04 | 800 | 1 | 3.855e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 691.1681795728674 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.523398288744337, dt = 0.00871992443165672 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (1.2%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 388.71 us (95.3%)
LB move op cnt : 0
LB apply : 3.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.140148591114568e-18,2.288681990187342e-18,-1.2637179287441496e-17)
sum a = (-9.243998540994896e-17,2.5637581992828302e-17,-1.0780471044616739e-16)
sum e = 4.144510114048831
sum de = -3.7947076036992655e-19
Info: CFL hydro = 0.009598182258336007 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009598182258336007 cfl multiplier : 0.8448736678727128 [sph::Model][rank=0]
Info: Timestep 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.1430e+04 | 800 | 1 | 3.733e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 840.8949564097833 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.532118213175994, dt = 0.009598182258336007 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.97 us (1.0%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 386.67 us (96.1%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.5245410662670565e-18,3.2263226484708998e-18,-1.4945333048487762e-17)
sum a = (3.9404872904351174e-17,-1.3886742736599735e-16,1.4219185778302669e-16)
sum e = 4.144510155676119
sum de = -2.439454888092385e-18
Info: CFL hydro = 0.010183800162336963 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010183800162336963 cfl multiplier : 0.8965824452484753 [sph::Model][rank=0]
Info: Timestep 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.1222e+04 | 800 | 1 | 3.770e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 916.6106510436027 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.54171639543433, dt = 0.010183800162336963 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (1.1%)
patch tree reduce : 1282.00 ns (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 386.86 us (95.9%)
LB move op cnt : 0
LB apply : 3.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.892058511974546e-18,7.668882061360728e-19,-1.2208800328545174e-17)
sum a = (3.853313670128244e-17,-2.115832578101204e-17,-8.33811184749666e-17)
sum e = 4.14451018237903
sum de = 1.1655173354219173e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011070325431358176
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.948975996023707e-18,1.5210448697874647e-18,-1.3457989320571512e-17)
sum a = (-1.0790356712898961e-17,2.011190532591084e-17,1.1527288348482845e-16)
sum e = 4.1445099035174175
sum de = -8.809142651444724e-19
Info: CFL hydro = 0.005288331079982025 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005288331079982025 cfl multiplier : 0.4655274817494918 [sph::Model][rank=0]
Info: Timestep 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.5948e+04 | 800 | 1 | 5.016e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 730.8710563810884 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.551900195596667, dt = 0.005288331079982025 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (0.9%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 428.75 us (96.3%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.523592694182605e-18,1.727745206597578e-18,-1.1772932227010804e-17)
sum a = (5.3008151592100814e-17,2.5658738820780785e-17,-2.42049090061698e-18)
sum e = 4.144509978066718
sum de = 2.995108501491206e-18
Info: CFL hydro = 0.0073127013792506825 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0073127013792506825 cfl multiplier : 0.6436849878329945 [sph::Model][rank=0]
Info: Timestep 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.0437e+04 | 800 | 1 | 3.915e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 486.3444244229636 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.557188526676649, dt = 0.0073127013792506825 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.23 us (1.0%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 396.31 us (96.0%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.81716708559407e-18,1.9404368575181294e-18,-1.206800444694988e-17)
sum a = (-2.2039048955246436e-17,-2.782186533464126e-16,-4.134006736202267e-18)
sum e = 4.1445100432883875
sum de = -1.7618285302889447e-19
Info: CFL hydro = 0.008663797969322694 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008663797969322694 cfl multiplier : 0.7624566585553296 [sph::Model][rank=0]
Info: Timestep 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.0724e+04 | 800 | 1 | 3.860e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 681.9842536128809 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.564501228055899, dt = 0.008663797969322694 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.3%)
patch tree reduce : 1462.00 ns (0.4%)
gen split merge : 1162.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 385.37 us (95.3%)
LB move op cnt : 0
LB apply : 3.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.5385709794587e-18,-1.6790657794502687e-18,-1.2132411073637088e-17)
sum a = (1.3040095161368456e-16,5.802288150253748e-17,-5.3544374204985017e-17)
sum e = 4.1445100955339305
sum de = -4.336808689942018e-19
Info: CFL hydro = 0.009564808093251087 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009564808093251087 cfl multiplier : 0.8416377723702197 [sph::Model][rank=0]
Info: Timestep 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.1138e+04 | 800 | 1 | 3.785e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 824.1202823853524 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.573165026025222, dt = 0.009564808093251087 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (1.0%)
patch tree reduce : 1183.00 ns (0.3%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 412.44 us (95.9%)
LB move op cnt : 0
LB apply : 3.56 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (72.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.550154692038282e-18,6.32832552915021e-19,-1.2808680653852785e-17)
sum a = (2.1358847575145762e-16,4.322283782122784e-17,-4.905687993626691e-17)
sum e = 4.1445101320557765
sum de = 1.1519648082658485e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010170582032639331
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.713418001547719e-18,3.489940469330175e-19,-1.2940489564282423e-17)
sum a = (-1.297763571176714e-16,-1.2118031919772037e-16,4.826003515957864e-17)
sum e = 4.144509904179943
sum de = 2.574980159653073e-19
Info: CFL hydro = 0.005079536761151478 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005079536761151478 cfl multiplier : 0.44721259079007325 [sph::Model][rank=0]
Info: Timestep 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.6446e+04 | 800 | 1 | 4.864e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 707.8613146112979 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.5827298341184735, dt = 0.005079536761151478 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.21 us (1.0%)
patch tree reduce : 752.00 ns (0.2%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 408.79 us (96.1%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.742275659213594e-18,-1.0260125414125192e-18,-1.2087476217808803e-17)
sum a = (1.2841632881460196e-17,-1.4365373842597358e-16,1.8513759732664676e-16)
sum e = 4.144509967922537
sum de = -2.0057740190981832e-18
Info: CFL hydro = 0.007170417634383231 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007170417634383231 cfl multiplier : 0.6314750605267155 [sph::Model][rank=0]
Info: Timestep 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.1327e+04 | 800 | 1 | 3.751e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 487.49662503218264 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.587809370879625, dt = 0.007170417634383231 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (1.0%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 387.00 us (95.8%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (74.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.173650275165136e-18,-2.42049090061698e-18,-1.0648811917039862e-17)
sum a = (-2.1365026117822154e-17,1.8881626419045575e-17,-7.656899433139851e-17)
sum e = 4.1445100288173595
sum de = -1.7076184216646695e-18
Info: CFL hydro = 0.008562940765098241 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008562940765098241 cfl multiplier : 0.7543167070178104 [sph::Model][rank=0]
Info: Timestep 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.1628e+04 | 800 | 1 | 3.699e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 697.860618483898 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.594979788514008, dt = 0.008562940765098241 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.82 us (1.0%)
patch tree reduce : 901.00 ns (0.2%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 371.91 us (96.2%)
LB move op cnt : 0
LB apply : 2.90 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.721306059827061e-18,-1.5113089843580028e-18,-1.2136904559219917e-17)
sum a = (2.0312951360029227e-16,-4.742424684117253e-17,-9.945581423327194e-17)
sum e = 4.1445100789253475
sum de = -1.2874900798265365e-18
Info: CFL hydro = 0.009491197697212819 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009491197697212819 cfl multiplier : 0.8362111380118735 [sph::Model][rank=0]
Info: Timestep 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.1689e+04 | 800 | 1 | 3.688e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 835.764043525318 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.6035427292791065, dt = 0.009491197697212819 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (0.9%)
patch tree reduce : 671.00 ns (0.2%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 651.00 ns (0.2%)
LB compute : 389.67 us (96.5%)
LB move op cnt : 0
LB apply : 3.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.057766506197841e-17,-2.223526449236328e-18,-1.3055073446644552e-17)
sum a = (-1.724749549542359e-16,-7.99181389191334e-17,-2.152080028469354e-17)
sum e = 4.144510115876654
sum de = -5.421010862427522e-20
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01086461198615855
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.928555853080331e-18,-2.227271020555352e-18,-1.2662642372410858e-17)
sum a = (8.274603917926016e-17,1.5992315189286814e-16,8.408210222588785e-17)
sum e = 4.144509905485461
sum de = -1.6127507315721878e-18
Info: CFL hydro = 0.005056306009379491 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005056306009379491 cfl multiplier : 0.4454037126706245 [sph::Model][rank=0]
Info: Timestep 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.6170e+04 | 800 | 1 | 4.947e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 690.6274497685424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.613033926976319, dt = 0.005056306009379491 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.1%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 401.13 us (96.0%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0442860494493554e-17,-2.748515348163464e-19,-1.1736235428084372e-17)
sum a = (6.063209879763325e-18,6.649160399764168e-17,7.06016454774022e-17)
sum e = 4.14450996463124
sum de = 7.047314121155779e-19
Info: CFL hydro = 0.0071556852438770715 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0071556852438770715 cfl multiplier : 0.6302691417804164 [sph::Model][rank=0]
Info: Timestep 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.1561e+04 | 800 | 1 | 3.710e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 490.59276084641124 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.618090232985699, dt = 0.0071556852438770715 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (1.1%)
patch tree reduce : 1363.00 ns (0.4%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 369.46 us (95.7%)
LB move op cnt : 0
LB apply : 3.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0203207930076031e-17,-8.986971165657102e-20,-1.1272657498789226e-17)
sum a = (1.1911032017256403e-16,-8.478009031975389e-17,1.4182638762228997e-16)
sum e = 4.144510023585906
sum de = -1.3552527156068805e-20
Info: CFL hydro = 0.008557235621020872 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008557235621020872 cfl multiplier : 0.7535127611869443 [sph::Model][rank=0]
Info: Timestep 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.1402e+04 | 800 | 1 | 3.738e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 689.1623131880283 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.6252459182295755, dt = 0.008557235621020872 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.90 us (2.1%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 1292.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1523.00 ns (0.4%)
LB compute : 395.10 us (93.5%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1946680336213509e-17,-1.3293228182534465e-18,-9.847473654768771e-18)
sum a = (-4.386690408809993e-17,-7.593990634980252e-17,7.819863176943767e-17)
sum e = 4.144510074437026
sum de = 2.2768245622195593e-18
Info: CFL hydro = 0.009495064629515408 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009495064629515408 cfl multiplier : 0.8356751741246295 [sph::Model][rank=0]
Info: Timestep 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.0964e+04 | 800 | 1 | 3.816e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 807.2803078151676 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.633803153850597, dt = 0.009495064629515408 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.1%)
patch tree reduce : 1542.00 ns (0.4%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 381.80 us (95.7%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0868243796334656e-17,-2.051276168561234e-18,-9.350194583602411e-18)
sum a = (1.0112739087008416e-16,-1.5112790277874507e-16,-3.417445568593874e-17)
sum e = 4.144510114968672
sum de = -5.963111948670274e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011310261436475727
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1280146641427273e-17,-2.298417875616804e-18,-1.0029834278005229e-17)
sum a = (-1.452144757517427e-17,-7.756954378784167e-17,-1.5589399315359855e-17)
sum e = 4.144509907505206
sum de = 4.0657581468206416e-19
Info: CFL hydro = 0.00506313928312108 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00506313928312108 cfl multiplier : 0.44522505804154316 [sph::Model][rank=0]
Info: Timestep 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.4163e+04 | 800 | 1 | 5.649e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 605.1480334983585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.643298218480112, dt = 0.00506313928312108 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.2%)
patch tree reduce : 1403.00 ns (0.3%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 399.08 us (95.6%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0681015230383466e-17,-2.247117248546178e-18,-9.874809025397644e-18)
sum a = (1.3978334951063057e-16,-4.7004854853441866e-17,1.1711820823084336e-16)
sum e = 4.1445099658442395
sum de = 2.9544509200229996e-18
Info: CFL hydro = 0.007169556530381659 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007169556530381659 cfl multiplier : 0.630150038694362 [sph::Model][rank=0]
Info: Timestep 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.0863e+04 | 800 | 1 | 3.834e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 475.35606113123083 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.648361357763233, dt = 0.007169556530381659 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.93 us (1.2%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 378.31 us (95.2%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2343604896030031e-17,-2.80767957500404e-18,-8.652206489736376e-18)
sum a = (2.5213097388103762e-16,-5.1369527182896e-17,-1.9084731967389424e-16)
sum e = 4.144510026729372
sum de = 2.710505431213761e-20
Info: CFL hydro = 0.008579004770437913 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008579004770437913 cfl multiplier : 0.7534333591295747 [sph::Model][rank=0]
Info: Timestep 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.0839e+04 | 800 | 1 | 3.839e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 672.3180136231738 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.655530914293615, dt = 0.008579004770437913 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.3%)
patch tree reduce : 1614.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 388.67 us (95.0%)
LB move op cnt : 0
LB apply : 4.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4758104482536573e-17,-3.2442965908022142e-18,-1.1378254409985697e-17)
sum a = (-2.044535940186991e-18,3.261072270311441e-17,2.5367223943594784e-17)
sum e = 4.144510081603524
sum de = 1.0977546996415732e-18
Info: CFL hydro = 0.009525391896818891 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009525391896818891 cfl multiplier : 0.8356222394197165 [sph::Model][rank=0]
Info: Timestep 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.0828e+04 | 800 | 1 | 3.841e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 804.0856804042245 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.664109919064052, dt = 0.009525391896818891 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.89 us (1.1%)
patch tree reduce : 1563.00 ns (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 431.55 us (95.8%)
LB move op cnt : 0
LB apply : 4.22 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (76.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3574819945725055e-17,-2.379300616107718e-18,-1.0349995125781764e-17)
sum a = (-8.537622607374247e-17,-1.4881225987506074e-16,1.5775130052783434e-16)
sum e = 4.144510127626097
sum de = 2.2497195079074217e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010628019472259507
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3282743382841198e-17,-3.2379308195598737e-18,-9.497637079288973e-18)
sum a = (-8.257528672711268e-17,-1.0595039872898681e-16,6.612613383690497e-17)
sum e = 4.144509909862876
sum de = -1.4907779871675686e-19
Info: CFL hydro = 0.005082637836161005 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005082637836161005 cfl multiplier : 0.4452074131399055 [sph::Model][rank=0]
Info: Timestep 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.5459e+04 | 800 | 1 | 5.175e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 662.6483146699838 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.673635310960871, dt = 0.005082637836161005 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.06 us (1.2%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1343.00 ns (0.3%)
LB compute : 398.00 us (95.3%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2987671162902123e-17,-3.7778980037631045e-18,-9.637777660903439e-18)
sum a = (5.74754251756962e-17,-7.864798032772053e-17,1.6237060370698209e-16)
sum e = 4.144509971131638
sum de = -4.336808689942018e-19
Info: CFL hydro = 0.007199729525151713 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007199729525151713 cfl multiplier : 0.6301382754266037 [sph::Model][rank=0]
Info: Timestep 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.0426e+04 | 800 | 1 | 3.917e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 467.18242178837687 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.678717948797032, dt = 0.007199729525151713 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.76 us (1.1%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 417.80 us (95.8%)
LB move op cnt : 0
LB apply : 3.57 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3576317774252664e-17,-4.244846047245372e-18,-8.234593173382247e-18)
sum a = (-3.9338219534872556e-17,2.3836443188377858e-16,-5.302312987737691e-18)
sum e = 4.144510036784169
sum de = -2.0599841277224584e-18
Info: CFL hydro = 0.008607669049749689 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008607669049749689 cfl multiplier : 0.7534255169510692 [sph::Model][rank=0]
Info: Timestep 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.1134e+04 | 800 | 1 | 3.785e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 684.7273175897593 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.685917678322183, dt = 0.008607669049749689 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (1.1%)
patch tree reduce : 1443.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.2%)
LB compute : 416.14 us (95.9%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2887316651552285e-17,-9.919369424094027e-19,-8.930989824437697e-18)
sum a = (-2.185706278914188e-18,4.1489850214783627e-17,1.6536026944809069e-18)
sum e = 4.144510096384772
sum de = -2.507217523872729e-18
Info: CFL hydro = 0.009542363136936379 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009542363136936379 cfl multiplier : 0.8356170113007128 [sph::Model][rank=0]
Info: Timestep 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.1118e+04 | 800 | 1 | 3.788e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 818.0083151616377 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.694525347371933, dt = 0.009542363136936379 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (1.1%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 379.19 us (93.8%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2821412196337467e-17,-1.4401621292965508e-18,-8.849358169682978e-18)
sum a = (1.2903418308224088e-17,1.3212645007749073e-16,1.5575619292905847e-16)
sum e = 4.144510145812575
sum de = -2.3852447794681098e-18
Info: CFL hydro = 0.010164753626133583 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010164753626133583 cfl multiplier : 0.8904113408671419 [sph::Model][rank=0]
Info: Timestep 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.1061e+04 | 800 | 1 | 3.798e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 904.3770283774105 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.704067710508869, dt = 0.010164753626133583 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.81 us (1.2%)
patch tree reduce : 1142.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 395.21 us (95.8%)
LB move op cnt : 0
LB apply : 3.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3161419272104827e-17,1.52029595552366e-19,-6.3859919274631765e-18)
sum a = (2.086864574377236e-16,-1.2846575715601306e-16,8.303961357067163e-18)
sum e = 4.144510185323167
sum de = -2.913793338554793e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010691029946891238
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4200912270265832e-17,-1.1340434239663556e-18,-7.243685988085577e-18)
sum a = (-4.668431954853343e-17,5.852315623075905e-17,-1.715313229818419e-17)
sum e = 4.144509914503574
sum de = 2.4801124695605914e-18
Info: CFL hydro = 0.0052906248419565885 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0052906248419565885 cfl multiplier : 0.463470446955714 [sph::Model][rank=0]
Info: Timestep 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.5722e+04 | 800 | 1 | 5.088e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 719.1413835311629 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.714232464135002, dt = 0.0052906248419565885 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.3%)
patch tree reduce : 1554.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 395.01 us (95.5%)
LB move op cnt : 0
LB apply : 3.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2602729231306477e-17,-2.565031353531298e-20,-7.68180083241136e-18)
sum a = (-5.932149883597493e-17,-1.029906895584304e-16,2.82190894601633e-17)
sum e = 4.144509986826714
sum de = 3.5914196963582334e-19
Info: CFL hydro = 0.0073320163513498696 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0073320163513498696 cfl multiplier : 0.6423136313038094 [sph::Model][rank=0]
Info: Timestep 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.0961e+04 | 800 | 1 | 3.817e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 499.0365631604357 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.719523088976959, dt = 0.0073320163513498696 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (1.2%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 395.02 us (95.6%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.206650661842227e-17,-9.939964566348659e-19,-7.174785875815538e-18)
sum a = (-1.6333820093581784e-16,2.2840686783223047e-16,2.202407066997034e-17)
sum e = 4.14451005700666
sum de = 1.9989977555201488e-19
Info: CFL hydro = 0.008693663137499646 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008693663137499646 cfl multiplier : 0.7615424208692062 [sph::Model][rank=0]
Info: Timestep 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.0717e+04 | 800 | 1 | 3.862e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 683.5388184830691 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.726855105328308, dt = 0.008693663137499646 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.90 us (1.2%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 380.73 us (95.4%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0165762216885792e-17,2.326314931943531e-18,-7.076865335823067e-18)
sum a = (7.077838924366013e-17,3.834441030680364e-17,4.512058656570909e-17)
sum e = 4.144510118251092
sum de = -9.50370966819325e-19
Info: CFL hydro = 0.009603271778623414 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009603271778623414 cfl multiplier : 0.8410282805794708 [sph::Model][rank=0]
Info: Timestep 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.1227e+04 | 800 | 1 | 3.769e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 830.4148516513281 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.735548768465808, dt = 0.009603271778623414 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (1.0%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 384.57 us (95.9%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1871788909833033e-17,1.617093124120425e-18,-6.589322150086168e-18)
sum a = (-4.209497293993787e-17,6.92655824307745e-17,-1.0498879281426149e-16)
sum e = 4.144510166115618
sum de = 3.373308712440251e-19
Info: CFL hydro = 0.01020483359157152 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01020483359157152 cfl multiplier : 0.8940188537196473 [sph::Model][rank=0]
Info: Timestep 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.1176e+04 | 800 | 1 | 3.778e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 915.1053409689027 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.745152040244432, dt = 0.01020483359157152 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.10 us (1.0%)
patch tree reduce : 701.00 ns (0.2%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 377.06 us (96.1%)
LB move op cnt : 0
LB apply : 3.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0830798083144419e-17,2.6837342643443525e-18,-8.226823187895273e-18)
sum a = (1.0040843317683159e-16,-2.4564387852796082e-17,9.328476069952073e-18)
sum e = 4.14451020032593
sum de = 1.6534083130403943e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011010271509157878
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.16620929159677e-17,2.126542052073612e-18,-7.800316514658463e-18)
sum a = (-1.0772382770567648e-16,-1.5682863815482688e-16,-6.012283709824602e-17)
sum e = 4.144509916649037
sum de = -8.114575634696197e-19
Info: CFL hydro = 0.005301725961128593 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005301725961128593 cfl multiplier : 0.46467295123988245 [sph::Model][rank=0]
Info: Timestep 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.5901e+04 | 800 | 1 | 5.031e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 730.2152367198205 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.7553568738360035, dt = 0.005301725961128593 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.48 us (0.8%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 772.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.1%)
LB compute : 533.59 us (96.7%)
LB move op cnt : 0
LB apply : 3.62 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 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: 3.876250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0005494564431575e-17,5.30231298773769e-19,-8.432774610441582e-18)
sum a = (3.3084036517839016e-17,-4.7415259870006876e-17,4.9275562901297894e-17)
sum e = 4.14450999237762
sum de = 1.6805133673525319e-18
Info: CFL hydro = 0.0073360711433991255 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0073360711433991255 cfl multiplier : 0.6431153008265883 [sph::Model][rank=0]
Info: Timestep 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.1165e+04 | 800 | 1 | 3.780e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 504.9434874940429 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.760658599797132, dt = 0.0073360711433991255 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.11 us (1.1%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 364.74 us (95.6%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.876250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0636080374555181e-17,6.904989512279874e-19,-7.890935140578839e-18)
sum a = (-5.0081394649151814e-17,2.223975797794611e-17,-7.455516387602752e-17)
sum e = 4.144510061506185
sum de = 1.734723475976807e-18
Info: CFL hydro = 0.008691164528739371 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008691164528739371 cfl multiplier : 0.7620768672177256 [sph::Model][rank=0]
Info: Timestep 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.9260e+04 | 800 | 1 | 4.154e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 635.8282303984621 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.767994670940531, dt = 0.008691164528739371 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (1.0%)
patch tree reduce : 1473.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 443.53 us (96.2%)
LB move op cnt : 0
LB apply : 3.75 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 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: 3.876250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.843729083449747e-18,9.818265998480386e-19,-8.949525452466865e-18)
sum a = (-7.97443908099307e-18,-3.954267312889125e-18,-9.549873849189354e-17)
sum e = 4.144510118383565
sum de = 1.7618285302889447e-18
Info: CFL hydro = 0.009594282138847037 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009594282138847037 cfl multiplier : 0.8413845781451504 [sph::Model][rank=0]
Info: Timestep 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.1176e+04 | 800 | 1 | 3.778e-02 | 0.1% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 828.212114795236 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.776685835469271, dt = 0.009594282138847037 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.69 us (1.1%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 394.39 us (95.6%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.876250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.906637881609346e-18,9.567379720105792e-19,-9.972542336824165e-18)
sum a = (-1.624185342198656e-16,-4.625294493258189e-17,2.973788758715935e-17)
sum e = 4.1445101589883055
sum de = 3.8624702394796095e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010514621708216357
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.258078129154426e-18,8.818465456301031e-19,-9.259575957682035e-18)
sum a = (-1.991812376015136e-16,8.369865812281981e-17,1.1552601650599444e-16)
sum e = 4.144509916767803
sum de = 2.4191260973582818e-18
Info: CFL hydro = 0.005098946934301541 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005098946934301541 cfl multiplier : 0.44712819271505017 [sph::Model][rank=0]
Info: Timestep 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.5795e+04 | 800 | 1 | 5.065e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 681.9232301739378 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.7862801176081184, dt = 0.005098946934301541 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.91 us (1.1%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 428.34 us (95.8%)
LB move op cnt : 0
LB apply : 4.14 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.876250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.100256677312269e-18,1.485845899388641e-18,-8.39308215445993e-18)
sum a = (-1.6928458019042762e-16,1.2173152009588067e-16,-7.68962698646812e-17)
sum e = 4.144509984636411
sum de = 4.0657581468206416e-19
Info: CFL hydro = 0.007200887132184633 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007200887132184633 cfl multiplier : 0.6314187951433667 [sph::Model][rank=0]
Info: Timestep 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.1124e+04 | 800 | 1 | 3.787e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 484.7023302093823 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.79137906454242, dt = 0.007200887132184633 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.41 us (1.0%)
patch tree reduce : 1443.00 ns (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 408.47 us (95.9%)
LB move op cnt : 0
LB apply : 3.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.876250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.9064873408074835e-18,2.859354659206568e-18,-9.347198926547192e-18)
sum a = (8.832395261607801e-17,1.0974889187500453e-16,2.142299208184064e-16)
sum e = 4.14451004959826
sum de = 0
Info: CFL hydro = 0.008603312928796195 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008603312928796195 cfl multiplier : 0.7542791967622445 [sph::Model][rank=0]
Info: Timestep 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.0842e+04 | 800 | 1 | 3.838e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 675.3519903916098 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.798579951674605, dt = 0.008603312928796195 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.80 us (1.2%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 378.56 us (95.5%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.71736203068739e-18,3.4951828691768085e-18,-6.450024097018483e-18)
sum a = (-6.860054656451589e-18,-1.1473366521488901e-16,2.7941991182555545e-17)
sum e = 4.144510102214862
sum de = -1.3417001884508117e-18
Info: CFL hydro = 0.009536508145636956 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009536508145636956 cfl multiplier : 0.8361861311748298 [sph::Model][rank=0]
Info: Timestep 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.2010e+04 | 800 | 1 | 3.635e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 852.1262403220783 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.807183264603402, dt = 0.009536508145636956 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.89 us (0.9%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 692.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 402.27 us (96.1%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.131711076392069e-18,1.5367720693273645e-18,-6.878777513046707e-18)
sum a = (1.3573921248608487e-16,-3.550452741845599e-17,-1.0903892115291763e-16)
sum e = 4.144510138645631
sum de = 3.5236570605778894e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011095284028465352
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.596037919951019e-18,2.120925195095076e-18,-7.699587546176723e-18)
sum a = (-9.25717943203786e-17,1.1766940912900367e-17,1.0383846050505738e-16)
sum e = 4.144509917044126
sum de = -1.8973538018496328e-19
Info: CFL hydro = 0.0050778046228227664 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0050778046228227664 cfl multiplier : 0.4453953770582766 [sph::Model][rank=0]
Info: Timestep 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.6052e+04 | 800 | 1 | 4.984e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 688.8660095074207 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.816719772749039, dt = 0.0050778046228227664 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (0.9%)
patch tree reduce : 621.00 ns (0.1%)
gen split merge : 581.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.2%)
LB compute : 415.69 us (96.7%)
LB move op cnt : 0
LB apply : 3.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.363325041728386e-18,1.9958565130396816e-18,-6.09691102163454e-18)
sum a = (5.731291078045056e-17,4.269410435098168e-17,8.992962479767542e-17)
sum e = 4.144509979383205
sum de = 1.5856456772600502e-18
Info: CFL hydro = 0.007181708704198297 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007181708704198297 cfl multiplier : 0.6302635847055177 [sph::Model][rank=0]
Info: Timestep 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.0651e+04 | 800 | 1 | 3.874e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 471.87538554988805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.8217975773718615, dt = 0.007181708704198297 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.88 us (1.2%)
patch tree reduce : 1734.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 375.88 us (95.4%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.788708343569488e-18,2.542563925617155e-18,-5.363723957369681e-18)
sum a = (9.394979656577936e-17,-4.40361587117198e-17,1.843257742646824e-16)
sum e = 4.144510038656767
sum de = 1.4907779871675686e-19
Info: CFL hydro = 0.008580798950947642 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008580798950947642 cfl multiplier : 0.753509056470345 [sph::Model][rank=0]
Info: Timestep 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.1144e+04 | 800 | 1 | 3.784e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 683.3125897378085 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.82897928607606, dt = 0.008580798950947642 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (1.1%)
patch tree reduce : 1403.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.2%)
LB compute : 399.55 us (95.8%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.816218713509619e-18,1.957661885585639e-18,-3.4442566992380847e-18)
sum a = (-4.8817227371849383e-17,1.8561091114137137e-17,-4.417395893625988e-17)
sum e = 4.144510086459172
sum de = 1.0842021724855044e-19
Info: CFL hydro = 0.009511195709744106 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009511195709744106 cfl multiplier : 0.8356727043135633 [sph::Model][rank=0]
Info: Timestep 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.0669e+04 | 800 | 1 | 3.870e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 798.1150298756679 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.8375600850270075, dt = 0.009511195709744106 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.56 us (1.1%)
patch tree reduce : 1173.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 392.98 us (95.7%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.863599769949966e-18,2.3433527314450895e-18,-4.8567090007738594e-18)
sum a = (2.978461983722077e-16,-1.3661394434620884e-16,-1.0034852003572722e-16)
sum e = 4.144510120245215
sum de = -2.710505431213761e-20
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01046159002033655
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.322484755841634e-18,1.6124124099716452e-18,-5.110403707637721e-18)
sum a = (5.380200071173385e-18,-1.9028413614751305e-17,-5.805583373014488e-18)
sum e = 4.14450991790436
sum de = 3.211948935988307e-18
Info: CFL hydro = 0.00506594829823359 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00506594829823359 cfl multiplier : 0.4452242347711877 [sph::Model][rank=0]
Info: Timestep 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.6035e+04 | 800 | 1 | 4.989e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 686.3044446913144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.847071280736752, dt = 0.00506594829823359 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (0.9%)
patch tree reduce : 1332.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 392.66 us (92.1%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.154178504306211e-18,2.1179295380398573e-18,-4.773017831793678e-18)
sum a = (1.7543765978184752e-16,-1.7207054125178133e-17,1.956883014751282e-16)
sum e = 4.144509974801796
sum de = 2.981555974335137e-19
Info: CFL hydro = 0.007169185397412851 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007169185397412851 cfl multiplier : 0.6301494898474584 [sph::Model][rank=0]
Info: Timestep 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.1357e+04 | 800 | 1 | 3.746e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 486.861923855181 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.852137229034986, dt = 0.007169185397412851 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (0.9%)
patch tree reduce : 902.00 ns (0.2%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.2%)
LB compute : 406.77 us (96.4%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.918620509830223e-18,1.9816271420273912e-18,-2.9063490292603167e-18)
sum a = (-1.6835592650330972e-18,1.1083931104310428e-17,-1.5521697465911904e-16)
sum e = 4.1445100301709585
sum de = 2.710505431213761e-19
Info: CFL hydro = 0.00857131698778781 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00857131698778781 cfl multiplier : 0.7534329932316389 [sph::Model][rank=0]
Info: Timestep 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.1037e+04 | 800 | 1 | 3.803e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 678.6791010294722 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.859306414432399, dt = 0.00857131698778781 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (1.0%)
patch tree reduce : 1012.00 ns (0.2%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 388.94 us (96.0%)
LB move op cnt : 0
LB apply : 3.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.21464110185375e-18,2.2107949067516474e-18,-5.279658331257596e-18)
sum a = (-1.2914277565049257e-16,1.1518900508728232e-16,2.4294778717826368e-17)
sum e = 4.144510076597431
sum de = 1.179069862577986e-18
Info: CFL hydro = 0.00950750625037565 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00950750625037565 cfl multiplier : 0.8356219954877592 [sph::Model][rank=0]
Info: Timestep 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.1273e+04 | 800 | 1 | 3.761e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 820.5342310073894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.867877731420187, dt = 0.00950750625037565 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (0.4%)
patch tree reduce : 1152.00 ns (0.1%)
gen split merge : 601.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.1%)
LB compute : 1015.80 us (98.5%)
LB move op cnt : 0
LB apply : 3.33 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.327377157065758e-18,3.671177721170926e-18,-4.396220342816908e-18)
sum a = (-1.9934300308249541e-16,3.798493146017736e-18,5.116582250314111e-18)
sum e = 4.1445101121333465
sum de = 9.486769009248164e-20
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010412003827529806
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.928954768721626e-18,3.0975093950964813e-18,-4.414521935138637e-18)
sum a = (8.25782823841679e-17,2.6990870067523498e-17,5.754657203075765e-17)
sum e = 4.144509919553086
sum de = 2.019326546254252e-18
Info: CFL hydro = 0.0050679130801798145 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0050679130801798145 cfl multiplier : 0.44520733182925304 [sph::Model][rank=0]
Info: Timestep 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.6113e+04 | 800 | 1 | 4.965e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 689.3843679252112 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.877385237670563, dt = 0.0050679130801798145 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.90 us (1.3%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 372.49 us (95.6%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.834192655840933e-18,3.313196703072252e-18,-3.980666540688243e-18)
sum a = (3.499526571906876e-17,1.2319340073882757e-16,1.3660196171798797e-18)
sum e = 4.144509973688092
sum de = -2.0599841277224584e-18
Info: CFL hydro = 0.007174981102752011 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007174981102752011 cfl multiplier : 0.630138221219502 [sph::Model][rank=0]
Info: Timestep 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.1237e+04 | 800 | 1 | 3.767e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 484.31810059375516 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.8824531507507425, dt = 0.007174981102752011 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (0.8%)
patch tree reduce : 572.00 ns (0.1%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 375.12 us (96.6%)
LB move op cnt : 0
LB apply : 2.77 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.175697560135902e-18,4.5054682110494275e-18,-4.205691873390829e-18)
sum a = (-1.4888415564438602e-17,-2.360577759512599e-17,3.7080243029501204e-17)
sum e = 4.144510028969696
sum de = 1.3010426069826053e-18
Info: CFL hydro = 0.008579884537322849 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008579884537322849 cfl multiplier : 0.7534254808130013 [sph::Model][rank=0]
Info: Timestep 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.1317e+04 | 800 | 1 | 3.753e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 688.2808189382135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.889628131853494, dt = 0.008579884537322849 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.81 us (1.2%)
patch tree reduce : 821.00 ns (0.2%)
gen split merge : 1031.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 387.97 us (95.8%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.852166598172247e-18,3.8479214874288494e-18,-3.692709006255313e-18)
sum a = (-6.546409362770156e-17,2.7254487888382775e-17,-2.292276778653605e-17)
sum e = 4.144510077793217
sum de = 4.87890977618477e-19
Info: CFL hydro = 0.009516849456934984 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009516849456934984 cfl multiplier : 0.8356169872086676 [sph::Model][rank=0]
Info: Timestep 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.9604e+04 | 800 | 1 | 4.081e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 756.9020229822212 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.898208016390817, dt = 0.009516849456934984 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.98 us (0.6%)
patch tree reduce : 1142.00 ns (0.2%)
gen split merge : 721.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.1%)
LB compute : 695.11 us (97.7%)
LB move op cnt : 0
LB apply : 3.33 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.87857805522606e-18,4.358681015343695e-18,-4.108918108364808e-18)
sum a = (-5.523991609823899e-18,1.180049227191882e-16,5.471867177063088e-17)
sum e = 4.144510117936493
sum de = -1.7076184216646695e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010674410070341353
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.453744209828115e-18,4.640272778534284e-18,-3.949961055872248e-18)
sum a = (-1.8672529556591285e-16,-9.610067833142662e-18,-1.0009688484308881e-16)
sum e = 4.14450992177927
sum de = -9.351243737687476e-19
Info: CFL hydro = 0.00507278838506514 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00507278838506514 cfl multiplier : 0.4452056624028892 [sph::Model][rank=0]
Info: Timestep 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.6007e+04 | 800 | 1 | 4.998e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 685.5051175288743 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.907724865847752, dt = 0.00507278838506514 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (1.0%)
patch tree reduce : 811.00 ns (0.2%)
gen split merge : 591.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 383.25 us (96.4%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.030257652155916e-18,4.1310110791470485e-18,-5.3234698156901755e-18)
sum a = (-4.419942202122924e-17,4.601329236816437e-18,1.5399474658058969e-16)
sum e = 4.144509976836361
sum de = -1.599198204416119e-18
Info: CFL hydro = 0.00718178600691974 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00718178600691974 cfl multiplier : 0.6301371082685928 [sph::Model][rank=0]
Info: Timestep 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.1781e+04 | 800 | 1 | 3.673e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 497.2077843440074 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.912797654232817, dt = 0.00718178600691974 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (0.9%)
patch tree reduce : 531.00 ns (0.1%)
gen split merge : 501.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 372.65 us (96.6%)
LB move op cnt : 0
LB apply : 2.67 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.876250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.518549752156619e-18,4.360178843871305e-18,-3.352701930487953e-18)
sum a = (1.1939340976428223e-16,7.825554925348684e-17,-1.0233763632039264e-16)
sum e = 4.144510035448799
sum de = 2.8189256484623115e-18
Info: CFL hydro = 0.008589825366617175 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008589825366617175 cfl multiplier : 0.7534247388457285 [sph::Model][rank=0]
Info: Timestep 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.1480e+04 | 800 | 1 | 3.724e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 694.1953470113838 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.919979440239737, dt = 0.008589825366617175 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (1.0%)
patch tree reduce : 1042.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 373.48 us (95.9%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.983426052158726e-18,5.2094476190259e-18,-5.267862931602672e-18)
sum a = (9.511360933173195e-17,-1.4957315676708637e-17,8.354288395594843e-17)
sum e = 4.144510089002337
sum de = -1.8295911660692887e-18
Info: CFL hydro = 0.00952893897748501 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00952893897748501 cfl multiplier : 0.835616492563819 [sph::Model][rank=0]
Info: Timestep 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.1266e+04 | 800 | 1 | 3.762e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 822.0265956641556 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.928569265606354, dt = 0.00952893897748501 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (0.9%)
patch tree reduce : 872.00 ns (0.2%)
gen split merge : 551.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 691.00 ns (0.2%)
LB compute : 398.06 us (96.7%)
LB move op cnt : 0
LB apply : 2.79 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.915075396331846e-18,4.369165815036962e-18,-3.4360186423362322e-18)
sum a = (-2.619642181647941e-16,5.44221017221642e-17,-1.9262673996469434e-16)
sum e = 4.1445101342890345
sum de = 2.168404344971009e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010508193970786076
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.087724592648235e-18,4.953318940804673e-18,-4.6983136339791526e-18)
sum a = (2.411863408297949e-16,9.843878866302508e-17,-2.0274606949722424e-17)
sum e = 4.14450992406443
sum de = 6.640738306473715e-19
Info: CFL hydro = 0.005079611658346727 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005079611658346727 cfl multiplier : 0.445205497521273 [sph::Model][rank=0]
Info: Timestep 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.5776e+04 | 800 | 1 | 5.071e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 676.4966743481957 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.938098204583839, dt = 0.005079611658346727 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (0.8%)
patch tree reduce : 892.00 ns (0.2%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 452.46 us (96.6%)
LB move op cnt : 0
LB apply : 3.43 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0985074421488199e-17,5.70822451871987e-18,-4.2407270187944454e-18)
sum a = (2.7279651407646614e-16,3.2218291628880713e-18,-1.0855062905291692e-16)
sum e = 4.144509983072637
sum de = 1.531435568635775e-18
Info: CFL hydro = 0.0071917322853329215 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0071917322853329215 cfl multiplier : 0.6301369983475152 [sph::Model][rank=0]
Info: Timestep 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.1656e+04 | 800 | 1 | 3.694e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 495.0077078832842 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.943177816242185, dt = 0.0071917322853329215 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (0.8%)
patch tree reduce : 641.00 ns (0.1%)
gen split merge : 591.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.2%)
LB compute : 424.72 us (96.8%)
LB move op cnt : 0
LB apply : 3.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2983177677319294e-17,5.311299958903348e-18,-5.1791165913418076e-18)
sum a = (4.72774596454668e-17,4.9296158043552524e-17,5.356234814731634e-18)
sum e = 4.144510046641808
sum de = -1.782157321023048e-18
Info: CFL hydro = 0.00860333125261831 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00860333125261831 cfl multiplier : 0.7534246655650101 [sph::Model][rank=0]
Info: Timestep 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.1360e+04 | 800 | 1 | 3.745e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 691.2562865554099 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.950369548527518, dt = 0.00860333125261831 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.93 us (0.9%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 405.34 us (96.1%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1994610849097013e-17,5.934396626388907e-18,-4.6279156931815055e-18)
sum a = (5.1788919170626665e-17,-9.892708076302578e-17,4.793051288350455e-18)
sum e = 4.14451010475616
sum de = 7.995991022080595e-19
Info: CFL hydro = 0.009544766647114952 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009544766647114952 cfl multiplier : 0.8356164437100068 [sph::Model][rank=0]
Info: Timestep 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.1338e+04 | 800 | 1 | 3.749e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 826.1112597969284 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.958972879780136, dt = 0.009544766647114952 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.2%)
patch tree reduce : 1543.00 ns (0.3%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.2%)
LB compute : 454.03 us (95.8%)
LB move op cnt : 0
LB apply : 3.72 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 us (77.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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2941238478546229e-17,4.3362135874295524e-18,-4.711419633595736e-18)
sum a = (-6.22916928062246e-17,-1.2117432788360994e-17,1.9777327878556064e-17)
sum e = 4.144510153012955
sum de = -2.371692252312041e-20
Info: CFL hydro = 0.010166169618141303 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010166169618141303 cfl multiplier : 0.890410962473338 [sph::Model][rank=0]
Info: Timestep 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.0934e+04 | 800 | 1 | 3.821e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 899.1549335736081 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.968517646427251, dt = 0.010166169618141303 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.58 us (1.1%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 397.16 us (95.5%)
LB move op cnt : 0
LB apply : 3.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1748966970569053e-17,4.340707073012381e-18,-4.3122483309878e-18)
sum a = (6.062011616941238e-17,-3.595387597673885e-17,6.673125656205921e-17)
sum e = 4.144510190855234
sum de = 8.199278929421627e-19
Info: CFL hydro = 0.0105802528908847 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0105802528908847 cfl multiplier : 0.926940641648892 [sph::Model][rank=0]
Info: Timestep 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.1590e+04 | 800 | 1 | 3.705e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 987.7165937729111 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.978683816045392, dt = 0.0105802528908847 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (1.0%)
patch tree reduce : 1032.00 ns (0.2%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 407.04 us (96.0%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.306106476075499e-17,3.843428001846021e-18,-3.4599838987779845e-18)
sum a = (1.5041793205665814e-16,-1.3856112143210122e-16,5.921215735345943e-17)
sum e = 4.144510219575096
sum de = 2.966732897758187e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01114437775189611
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3597287373639197e-17,3.7925018319072976e-18,-3.3880881294527276e-18)
sum a = (-6.821710246144784e-17,-1.365779964615462e-16,-8.450748552772895e-17)
sum e = 4.144509930749291
sum de = -8.364450354136216e-19
Info: CFL hydro = 0.0054295623903108155 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0054295623903108155 cfl multiplier : 0.4756468805496306 [sph::Model][rank=0]
Info: Timestep 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.6304e+04 | 800 | 1 | 4.907e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 776.2513366911716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.989264068936277, dt = 0.0054295623903108155 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (0.9%)
patch tree reduce : 912.00 ns (0.2%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 401.17 us (96.4%)
LB move op cnt : 0
LB apply : 3.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2033554390814861e-17,3.015128826077958e-18,-4.637277121479065e-18)
sum a = (-4.2322642876134514e-17,7.217736108844742e-17,3.592391940618666e-17)
sum e = 4.144510005685318
sum de = -1.4899309542203143e-18
Info: CFL hydro = 0.007425127169941555 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007425127169941555 cfl multiplier : 0.6504312536997537 [sph::Model][rank=0]
Info: Timestep 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.0794e+04 | 800 | 1 | 3.847e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 508.0552429875924 (tsim/hr) [sph::Model][rank=0]
---------------- t = 6.994693631326587, dt = 0.00530636867341272 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.3%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 386.45 us (95.3%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1994610849097013e-17,3.786510517796859e-18,-4.103301251386272e-18)
sum a = (-1.0678918270444814e-16,1.853952238333956e-16,-7.040992342586818e-17)
sum e = 4.144510002830895
sum de = 6.759322919089317e-19
Info: CFL hydro = 0.008756607316765327 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008756607316765327 cfl multiplier : 0.7669541691331693 [sph::Model][rank=0]
Info: Timestep 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.0933e+04 | 800 | 1 | 3.822e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 499.8627609246398 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 937 [SPH][rank=0]
Info: time since start : 894.336049504 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15093772241214531 max=0.15135164103500295 delta=0.0004139186228576397
Number of particle pairs: 319600
Distance min=0.162652 max=2.296133 mean=0.934941
---------------- t = 7, dt = 0.008756607316765327 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.46 us (1.4%)
patch tree reduce : 1543.00 ns (0.2%)
gen split merge : 561.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1163.00 ns (0.2%)
LB compute : 638.50 us (96.5%)
LB move op cnt : 0
LB apply : 4.35 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0712469629463267e-17,5.763644174241422e-18,-5.0349505955593915e-18)
sum a = (-9.26976119166978e-17,-5.047083006633029e-17,-1.4415101749713992e-17)
sum e = 4.144510129787646
sum de = 2.3818566476790926e-18
Info: CFL hydro = 0.00964667570276429 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00964667570276429 cfl multiplier : 0.8446361127554463 [sph::Model][rank=0]
Info: Timestep 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.7596e+04 | 800 | 1 | 4.546e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 693.3752791199779 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.008756607316766, dt = 0.00964667570276429 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.2%)
patch tree reduce : 1442.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.2%)
LB compute : 408.71 us (95.8%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.837737769339308e-18,4.172950277920115e-18,-4.936842827000969e-18)
sum a = (-1.3827952966891062e-17,1.1024017963206046e-17,-1.2040743967747386e-16)
sum e = 4.144510173448167
sum de = 1.81603863891322e-18
Info: CFL hydro = 0.010244216378694047 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010244216378694047 cfl multiplier : 0.8964240751702975 [sph::Model][rank=0]
Info: Timestep 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.9106e+04 | 800 | 1 | 4.187e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 829.3925806009976 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.01840328301953, dt = 0.010244216378694047 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (1.0%)
patch tree reduce : 1142.00 ns (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 419.61 us (96.2%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0252636271487144e-17,4.4515463840554846e-18,-6.6308868917273325e-18)
sum a = (3.484548286630781e-17,-4.181937249085772e-17,-5.73967891779967e-18)
sum e = 4.144510203557699
sum de = -2.1819568721270777e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010671797568418807
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0441362665965943e-17,3.9078346285332305e-18,-6.071447936665178e-18)
sum a = (8.21528990823268e-17,2.2018079355859901e-16,-2.6247947117829177e-17)
sum e = 4.144509931603575
sum de = -8.944667923005412e-19
Info: CFL hydro = 0.005324360236750542 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005324360236750542 cfl multiplier : 0.46547469172343253 [sph::Model][rank=0]
Info: Timestep 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.5815e+04 | 800 | 1 | 5.058e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 729.0732097587073 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.0286474993982235, dt = 0.005324360236750542 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (1.0%)
patch tree reduce : 1413.00 ns (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.2%)
LB compute : 420.88 us (95.9%)
LB move op cnt : 0
LB apply : 3.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0986572250015808e-17,7.122174648783254e-18,-6.2272221035365674e-18)
sum a = (9.075642614491586e-17,-1.127804968148862e-16,1.1240603968298383e-16)
sum e = 4.144510004335952
sum de = -8.809142651444724e-20
Info: CFL hydro = 0.0073596565493708205 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0073596565493708205 cfl multiplier : 0.6436497944822883 [sph::Model][rank=0]
Info: Timestep 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.0764e+04 | 800 | 1 | 3.853e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 497.5062223600906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.033971859634974, dt = 0.0073596565493708205 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (0.9%)
patch tree reduce : 792.00 ns (0.2%)
gen split merge : 641.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 419.63 us (96.4%)
LB move op cnt : 0
LB apply : 3.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.190923462302327e-17,4.891907971172683e-18,-5.017725567491883e-18)
sum a = (-2.2824510235124865e-16,-1.5106499398058547e-16,-1.890289558413763e-16)
sum e = 4.144510069415669
sum de = 1.3010426069826053e-18
Info: CFL hydro = 0.008713895933204662 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008713895933204662 cfl multiplier : 0.7624331963215255 [sph::Model][rank=0]
Info: Timestep 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.1581e+04 | 800 | 1 | 3.707e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 714.7287990106131 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.041331516184345, dt = 0.008713895933204662 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (1.0%)
patch tree reduce : 691.00 ns (0.2%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 364.73 us (96.2%)
LB move op cnt : 0
LB apply : 3.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.3728614693372e-18,4.08083382347213e-18,-7.858357370103331e-18)
sum a = (-6.298069392892498e-17,1.7057271272417182e-16,4.0678027152819265e-17)
sum e = 4.1445101223020195
sum de = 1.7618285302889447e-19
Info: CFL hydro = 0.009614942232550498 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009614942232550498 cfl multiplier : 0.8416221308810169 [sph::Model][rank=0]
Info: Timestep 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.1352e+04 | 800 | 1 | 3.747e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 837.2487521023422 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.050045412117549, dt = 0.009614942232550498 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.11 us (1.0%)
patch tree reduce : 842.00 ns (0.2%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.3%)
LB compute : 389.60 us (96.1%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.516653007987714e-18,7.301165157832592e-18,-6.502073638352914e-18)
sum a = (1.7111193099411124e-17,2.682910458654167e-17,-7.678168598231906e-17)
sum e = 4.144510159756197
sum de = -2.574980159653073e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010773629232844023
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.156225789276978e-18,6.426433297708633e-18,-7.046534308138974e-18)
sum a = (2.7641526779917074e-16,-4.4791064289635003e-17,-1.6816120879472048e-16)
sum e = 4.144509931948071
sum de = 1.4365678785432934e-18
Info: CFL hydro = 0.005107872988847304 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005107872988847304 cfl multiplier : 0.4472073769603389 [sph::Model][rank=0]
Info: Timestep 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.6109e+04 | 800 | 1 | 4.966e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 696.9845989959928 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.0596603543500995, dt = 0.005107872988847304 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (1.0%)
patch tree reduce : 631.00 ns (0.2%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 371.98 us (96.3%)
LB move op cnt : 0
LB apply : 3.11 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1621651545722244e-17,6.041491366112987e-18,-8.207351417036349e-18)
sum a = (1.485845899388641e-17,-6.323232912156338e-17,6.910082129273747e-17)
sum e = 4.144509995727838
sum de = 3.5236570605778894e-19
Info: CFL hydro = 0.007211693476211553 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007211693476211553 cfl multiplier : 0.6314715846402259 [sph::Model][rank=0]
Info: Timestep 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.0809e+04 | 800 | 1 | 3.844e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 478.3130700420949 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.064768227338947, dt = 0.007211693476211553 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.4%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 367.79 us (95.1%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1209748700629626e-17,5.31317224456286e-18,-7.3026629863602e-18)
sum a = (4.117231056693041e-17,1.1884370669464953e-16,-2.0076893584077967e-17)
sum e = 4.144510056841916
sum de = -8.131516293641283e-20
Info: CFL hydro = 0.008614034201625044 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008614034201625044 cfl multiplier : 0.7543143897601506 [sph::Model][rank=0]
Info: Timestep 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.1494e+04 | 800 | 1 | 3.722e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 697.539930583229 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.071979920815158, dt = 0.008614034201625044 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (1.0%)
patch tree reduce : 852.00 ns (0.2%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 413.15 us (96.2%)
LB move op cnt : 0
LB apply : 3.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1691300572256087e-17,6.98137876718796e-18,-7.815669257066461e-18)
sum a = (-7.781518766636963e-17,1.9936696833893718e-16,-1.4034653303701175e-16)
sum e = 4.144510106828889
sum de = -2.6834003769016235e-18
Info: CFL hydro = 0.009548028164892355 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009548028164892355 cfl multiplier : 0.8362095931734338 [sph::Model][rank=0]
Info: Timestep 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.0930e+04 | 800 | 1 | 3.822e-02 | 0.1% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 811.3086280510722 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.080593955016783, dt = 0.009548028164892355 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (1.0%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 410.88 us (96.1%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0501275807070324e-17,8.777462400357722e-18,-9.656500517498557e-18)
sum a = (1.5098111558303934e-17,-2.5089226968870455e-16,4.85835661215423e-17)
sum e = 4.144510142632902
sum de = -1.3552527156068805e-20
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01101944942118057
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.090344276673348e-17,6.824481228920863e-18,-8.6087694624357e-18)
sum a = (8.891110139890093e-17,9.370415268725139e-18,-8.829998735963626e-17)
sum e = 4.144509932687134
sum de = 1.5856456772600502e-18
Info: CFL hydro = 0.005083337944327912 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005083337944327912 cfl multiplier : 0.4454031977244779 [sph::Model][rank=0]
Info: Timestep 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.6244e+04 | 800 | 1 | 4.925e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 697.9594843969164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.090141983181676, dt = 0.005083337944327912 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (1.0%)
patch tree reduce : 1072.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 388.03 us (95.9%)
LB move op cnt : 0
LB apply : 3.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1661344001703896e-17,7.765866458523444e-18,-9.860954111517257e-18)
sum a = (-2.6912982984087803e-17,7.112888111912075e-17,7.915724202710776e-17)
sum e = 4.144509991696214
sum de = 1.2197274440461925e-18
Info: CFL hydro = 0.0071884834721654385 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0071884834721654385 cfl multiplier : 0.6302687984829852 [sph::Model][rank=0]
Info: Timestep 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.1278e+04 | 800 | 1 | 3.760e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 486.7439035336294 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.095225321126003, dt = 0.0071884834721654385 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (0.9%)
patch tree reduce : 811.00 ns (0.2%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 403.33 us (96.5%)
LB move op cnt : 0
LB apply : 3.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 21.16 us (94.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1094415904003694e-17,8.792908757048694e-18,-8.954767852313498e-18)
sum a = (7.00504445792419e-17,-1.2471519452287884e-16,6.170903750898449e-17)
sum e = 4.144510049076025
sum de = -2.710505431213761e-19
Info: CFL hydro = 0.008587021151322788 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008587021151322788 cfl multiplier : 0.7535125323219901 [sph::Model][rank=0]
Info: Timestep 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.1424e+04 | 800 | 1 | 3.734e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 693.0120494972293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.102413804598169, dt = 0.008587021151322788 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.89 us (1.0%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 376.08 us (95.9%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2121739045377871e-17,7.219907960209775e-18,-8.548856321331319e-18)
sum a = (-1.326237291486571e-16,4.071697069453711e-17,9.12192551599472e-17)
sum e = 4.1445100968005475
sum de = 7.724940478959219e-19
Info: CFL hydro = 0.00951534580759933 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00951534580759933 cfl multiplier : 0.8356750215479934 [sph::Model][rank=0]
Info: Timestep 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.0988e+04 | 800 | 1 | 3.812e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 811.005804931144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.111000825749492, dt = 0.00951534580759933 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.2%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 421.73 us (95.6%)
LB move op cnt : 0
LB apply : 3.61 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.949325994646218e-18,8.225699816499565e-18,-7.541566636513919e-18)
sum a = (-1.5294626661126302e-16,9.818565564185907e-17,-8.351891869950667e-18)
sum e = 4.144510132486291
sum de = 4.743384504624082e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010508529515911283
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.886042739354715e-18,8.543239464352783e-18,-7.797695314735146e-18)
sum a = (-6.566480265040123e-17,1.2354089695723297e-16,5.645615286265792e-17)
sum e = 4.144509934010768
sum de = 1.8973538018496328e-19
Info: CFL hydro = 0.005066263861486168 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005066263861486168 cfl multiplier : 0.44522500718266445 [sph::Model][rank=0]
Info: Timestep 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.5895e+04 | 800 | 1 | 5.033e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 680.6016023609064 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.120516171557091, dt = 0.005066263861486168 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.2%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 401.27 us (95.7%)
LB move op cnt : 0
LB apply : 3.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0072896848174003e-17,8.735335973018704e-18,-7.274953158599425e-18)
sum a = (-2.1933002695491681e-16,-4.5438126213562315e-17,8.992288456930116e-17)
sum e = 4.144509989735221
sum de = -1.0977546996415732e-18
Info: CFL hydro = 0.007168181035285436 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007168181035285436 cfl multiplier : 0.630150004788443 [sph::Model][rank=0]
Info: Timestep 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.0878e+04 | 800 | 1 | 3.832e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 475.9819912444765 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.125582435418576, dt = 0.007168181035285436 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (1.1%)
patch tree reduce : 1042.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 388.94 us (95.8%)
LB move op cnt : 0
LB apply : 3.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.865846512741379e-18,8.388588668877101e-18,-6.518549752156619e-18)
sum a = (7.680864689581604e-17,-1.6061514867262374e-16,8.527662047665644e-17)
sum e = 4.144510045716611
sum de = -5.692061405548898e-19
Info: CFL hydro = 0.008567504876497333 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008567504876497333 cfl multiplier : 0.7534333365256286 [sph::Model][rank=0]
Info: Timestep 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.0953e+04 | 800 | 1 | 3.818e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 675.8811819069832 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.132750616453862, dt = 0.008567504876497333 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.70 us (1.1%)
patch tree reduce : 1323.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 407.78 us (95.9%)
LB move op cnt : 0
LB apply : 3.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.631786346793e-18,7.146888819488812e-18,-5.92391182669564e-18)
sum a = (2.6625399906786778e-17,-9.969546679768947e-18,3.257805131835592e-17)
sum e = 4.144510094122715
sum de = -1.0842021724855044e-19
Info: CFL hydro = 0.009499556811320604 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009499556811320604 cfl multiplier : 0.835622224350419 [sph::Model][rank=0]
Info: Timestep 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.0852e+04 | 800 | 1 | 3.837e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 803.924455368805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.141318121330359, dt = 0.009499556811320604 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (1.5%)
patch tree reduce : 1493.00 ns (0.3%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 409.26 us (95.1%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.899897653235104e-18,7.234511788353968e-18,-5.899946570253888e-18)
sum a = (1.9747371308003875e-17,-3.1969652093297534e-17,-1.529282926689317e-17)
sum e = 4.144510132531876
sum de = -3.9302328752599536e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011010405811972839
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.71192017302011e-18,7.185832361206658e-18,-5.904440055836716e-18)
sum a = (7.069750650316921e-18,-2.697049959954801e-16,1.414867550036545e-16)
sum e = 4.144509935777647
sum de = 2.507217523872729e-18
Info: CFL hydro = 0.0050612532966497125 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0050612532966497125 cfl multiplier : 0.4452074081168063 [sph::Model][rank=0]
Info: Timestep 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.5821e+04 | 800 | 1 | 5.057e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 676.3011082195967 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.15081767814168, dt = 0.0050612532966497125 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.71 us (1.1%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 428.22 us (95.9%)
LB move op cnt : 0
LB apply : 3.65 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.767339828541661e-18,4.751112089577389e-18,-4.677718491724522e-18)
sum a = (-1.708722784296937e-17,1.9411857717819342e-18,-5.1043000563877124e-17)
sum e = 4.14450999102858
sum de = -5.285485590866834e-19
Info: CFL hydro = 0.007163699730058334 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007163699730058334 cfl multiplier : 0.6301382720778709 [sph::Model][rank=0]
Info: Timestep 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.0607e+04 | 800 | 1 | 3.882e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 469.344109465152 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.1558789314383295, dt = 0.007163699730058334 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (0.7%)
patch tree reduce : 1313.00 ns (0.2%)
gen split merge : 772.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.1%)
LB compute : 677.92 us (97.6%)
LB move op cnt : 0
LB apply : 3.16 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.49473503651673e-18,5.640822234977442e-18,-5.45958498313669e-18)
sum a = (1.2368468849588349e-16,4.289780903073657e-17,-8.927058024552722e-18)
sum e = 4.1445100483804
sum de = -8.131516293641283e-19
Info: CFL hydro = 0.008566387451511472 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008566387451511472 cfl multiplier : 0.7534255147185807 [sph::Model][rank=0]
Info: Timestep 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.0521e+04 | 800 | 1 | 3.898e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 661.5443049692037 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.163042631168388, dt = 0.008566387451511472 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.88 us (1.2%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 380.36 us (95.6%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.113186161719393e-17,5.877479142339745e-18,-5.531480752461947e-18)
sum a = (-2.0641275373281233e-16,-2.382146490310176e-17,-1.0346400337315501e-16)
sum e = 4.144510099420321
sum de = -2.574980159653073e-19
Info: CFL hydro = 0.009503863053117144 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009503863053117144 cfl multiplier : 0.8356170098123871 [sph::Model][rank=0]
Info: Timestep 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.1150e+04 | 800 | 1 | 3.782e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 815.3097430797351 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.1716090186198995, dt = 0.009503863053117144 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.2%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 414.46 us (95.7%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.712319088661404e-18,5.14953447792152e-18,-6.857058999396369e-18)
sum a = (2.58105811877672e-16,4.5270369418470046e-17,-3.1094920233173574e-18)
sum e = 4.1445101411138525
sum de = -1.2468324983583301e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01047770449226408
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.845226911977356e-18,5.691748404916165e-18,-6.349295128536743e-18)
sum a = (-1.913625726873919e-16,1.8644969511683268e-17,7.583505835286985e-17)
sum e = 4.1445099375909145
sum de = -5.421010862427522e-19
Info: CFL hydro = 0.005066744840395454 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005066744840395454 cfl multiplier : 0.4452056699374623 [sph::Model][rank=0]
Info: Timestep 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.5544e+04 | 800 | 1 | 5.147e-02 | 0.0% | 1.8% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 664.7631920164339 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.181112881673017, dt = 0.005066744840395454 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.3%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 396.62 us (95.0%)
LB move op cnt : 0
LB apply : 4.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (74.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.7731806018502365e-18,5.416147955836014e-18,-5.589147150774913e-18)
sum a = (-4.95601503215437e-17,2.8902099268753246e-17,-3.928804227919763e-18)
sum e = 4.144509994798548
sum de = -1.599198204416119e-18
Info: CFL hydro = 0.007173876386153927 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007173876386153927 cfl multiplier : 0.6301371132916415 [sph::Model][rank=0]
Info: Timestep 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.0359e+04 | 800 | 1 | 3.929e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 464.19862104657904 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.186179626513413, dt = 0.007173876386153927 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.86 us (1.2%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 373.10 us (95.4%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.839085057065055e-18,5.914924855529983e-18,-5.87822805660355e-18)
sum a = (9.396777050811067e-17,-1.1116284200506793e-16,5.5809090938730606e-18)
sum e = 4.14451005489617
sum de = -6.776263578034403e-20
Info: CFL hydro = 0.008582537066350307 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008582537066350307 cfl multiplier : 0.7534247421944276 [sph::Model][rank=0]
Info: Timestep 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.7762e+04 | 800 | 1 | 4.504e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 573.3932032905832 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.1933535028995665, dt = 0.008582537066350307 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.1%)
patch tree reduce : 1824.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 461.67 us (96.0%)
LB move op cnt : 0
LB apply : 4.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.22307861657625e-18,4.408109356754809e-18,-5.861003028536041e-18)
sum a = (8.378253652036595e-17,4.4958821084727265e-17,9.953370131670763e-17)
sum e = 4.144510108567085
sum de = -1.2671612890924333e-18
Info: CFL hydro = 0.009526908606545328 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009526908606545328 cfl multiplier : 0.8356164947962851 [sph::Model][rank=0]
Info: Timestep 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.0514e+04 | 800 | 1 | 3.900e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 792.2864206986851 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.201936039965917, dt = 0.009526908606545328 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.2%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 411.07 us (95.7%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.136754018418055e-18,5.58390475092828e-18,-4.578112894638489e-18)
sum a = (8.996557268233804e-17,3.2101461003727174e-17,-1.164172244799221e-16)
sum e = 4.144510151990067
sum de = 6.166399856011306e-19
Info: CFL hydro = 0.010162921682054897 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010162921682054897 cfl multiplier : 0.8904109965308568 [sph::Model][rank=0]
Info: Timestep 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.0934e+04 | 800 | 1 | 3.822e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 897.459202075596 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.211462948572462, dt = 0.010162921682054897 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.3%)
patch tree reduce : 1482.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 395.01 us (95.4%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (73.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.888663939278032e-18,5.73967891779967e-18,-6.5859520358990466e-18)
sum a = (-1.0284689801977988e-16,6.572471579150561e-17,-1.9336966291438868e-17)
sum e = 4.1445101854062205
sum de = -2.290377089375628e-18
Info: CFL hydro = 0.010585089513307418 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010585089513307418 cfl multiplier : 0.9269406643539044 [sph::Model][rank=0]
Info: Timestep 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.0716e+04 | 800 | 1 | 3.862e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 947.3944588592058 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.221625870254517, dt = 0.010585089513307418 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.4%)
patch tree reduce : 1653.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 376.59 us (95.2%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.740777830685984e-18,6.907985169335093e-18,-6.455640953997019e-18)
sum a = (-7.933698145042091e-17,1.3899848736216318e-17,-1.4267116291186174e-16)
sum e = 4.1445102096452775
sum de = 3.3881317890172014e-21
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010539851745529651
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.06430879264964e-18,6.527536723322276e-18,-6.904989512279874e-18)
sum a = (-5.074643051541044e-17,1.090179515535311e-16,-7.003247063691058e-17)
sum e = 4.144509942598934
sum de = -1.7245590806097555e-18
Info: CFL hydro = 0.005434289338535444 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005434289338535444 cfl multiplier : 0.4756468881179681 [sph::Model][rank=0]
Info: Timestep 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.5175e+04 | 800 | 1 | 5.272e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 722.8478745293203 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.232210959767825, dt = 0.005434289338535444 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.3%)
patch tree reduce : 1523.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 420.53 us (95.5%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.166161132527088e-18,7.35134241350751e-18,-6.99261248114503e-18)
sum a = (-9.547758166394106e-17,1.3025116876092361e-17,-4.166958963809677e-17)
sum e = 4.144510012018698
sum de = -7.182839392716467e-19
Info: CFL hydro = 0.007427119824239571 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007427119824239571 cfl multiplier : 0.650431258745312 [sph::Model][rank=0]
Info: Timestep 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.0729e+04 | 800 | 1 | 3.859e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 506.91783858428545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.23764524910636, dt = 0.007427119824239571 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (1.1%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 398.79 us (95.5%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (73.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.904989512279874e-18,7.312398871789662e-18,-7.24125201672821e-18)
sum a = (-1.6923065836343367e-16,6.407111309702471e-17,1.534974675094233e-17)
sum e = 4.144510073272427
sum de = -8.203514094157899e-19
Info: CFL hydro = 0.008752099148262993 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008752099148262993 cfl multiplier : 0.7669541724968747 [sph::Model][rank=0]
Info: Timestep 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.0782e+04 | 800 | 1 | 3.849e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 694.5921797491155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.245072368930599, dt = 0.008752099148262993 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (1.2%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 408.50 us (95.6%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.2513868177989675e-18,8.049330507373545e-18,-6.869041627617246e-18)
sum a = (3.685257309330456e-17,1.0631586888972352e-16,-5.647412680498923e-17)
sum e = 4.144510124165788
sum de = -1.2078689827846323e-18
Info: CFL hydro = 0.009632923174846937 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009632923174846937 cfl multiplier : 0.8446361149979165 [sph::Model][rank=0]
Info: Timestep 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.0990e+04 | 800 | 1 | 3.811e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 826.6622889544573 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.253824468078863, dt = 0.009632923174846937 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (1.0%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 408.86 us (96.3%)
LB move op cnt : 0
LB apply : 2.83 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.644367348475818e-18,9.511211150320434e-18,-7.701085374704332e-18)
sum a = (1.294962631830084e-16,2.252734105524714e-17,1.6649861912907392e-17)
sum e = 4.1445101615528
sum de = 2.507217523872729e-19
Info: CFL hydro = 0.01021906806840251 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01021906806840251 cfl multiplier : 0.8964240766652777 [sph::Model][rank=0]
Info: Timestep 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.0992e+04 | 800 | 1 | 3.811e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 909.9658897685505 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.263457391253709, dt = 0.01021906806840251 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (1.1%)
patch tree reduce : 1453.00 ns (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 400.69 us (95.7%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.291978728846288e-18,9.121775733141959e-18,-7.080984364273992e-18)
sum a = (-1.5415052074746107e-16,1.5472568690206313e-18,1.370932494750439e-16)
sum e = 4.144510186575637
sum de = 2.710505431213761e-20
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01092481189308028
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.967898310439474e-18,9.24459767240594e-18,-6.587449864426656e-18)
sum a = (1.9711722989046767e-16,-1.748205544284724e-16,1.4336615534867255e-16)
sum e = 4.144509943510078
sum de = -1.0164395367051604e-18
Info: CFL hydro = 0.005305700647969133 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005305700647969133 cfl multiplier : 0.46547469222175925 [sph::Model][rank=0]
Info: Timestep 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.5816e+04 | 800 | 1 | 5.058e-02 | 0.0% | 1.8% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 727.3205775752745 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.273676459322112, dt = 0.005305700647969133 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.60 us (1.1%)
patch tree reduce : 1413.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.3%)
LB compute : 418.72 us (95.8%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.909633538664566e-18,7.561038407372842e-18,-5.6782679481676796e-18)
sum a = (2.3172605584941317e-16,-7.554672636130502e-17,1.726636813487147e-16)
sum e = 4.144510008379333
sum de = -6.776263578034403e-19
Info: CFL hydro = 0.007336257050029463 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007336257050029463 cfl multiplier : 0.6436497948145061 [sph::Model][rank=0]
Info: Timestep 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.1563e+04 | 800 | 1 | 3.710e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 514.8281640255053 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.278982159970081, dt = 0.007336257050029463 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (0.9%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 393.79 us (96.1%)
LB move op cnt : 0
LB apply : 3.11 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1581210175476786e-17,6.946928711052941e-18,-4.456039869638314e-18)
sum a = (5.448725726311521e-17,2.093814498745344e-17,1.1031806671549616e-16)
sum e = 4.144510066001825
sum de = 3.1170812458958252e-19
Info: CFL hydro = 0.00869057566396427 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00869057566396427 cfl multiplier : 0.7624331965430041 [sph::Model][rank=0]
Info: Timestep 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.0884e+04 | 800 | 1 | 3.831e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 689.4450871072409 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.2863184170201105, dt = 0.00869057566396427 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.3%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1403.00 ns (0.3%)
LB compute : 408.81 us (95.2%)
LB move op cnt : 0
LB apply : 4.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1431427322715835e-17,7.528086179765433e-18,-3.703381034514531e-18)
sum a = (-8.230567759214296e-17,5.3409569637500164e-17,-4.163963306754458e-18)
sum e = 4.144510112739914
sum de = -1.4365678785432934e-18
Info: CFL hydro = 0.009595370468127687 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009595370468127687 cfl multiplier : 0.8416221310286695 [sph::Model][rank=0]
Info: Timestep 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.9705e+04 | 800 | 1 | 4.060e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 770.6013432824578 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.295008992684075, dt = 0.009595370468127687 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (0.6%)
patch tree reduce : 1352.00 ns (0.2%)
gen split merge : 752.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.1%)
LB compute : 671.71 us (97.7%)
LB move op cnt : 0
LB apply : 3.01 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.813772512897557e-18,8.309952671177602e-18,-4.42870449900944e-18)
sum a = (-1.0526738892039686e-16,-2.0154780667513662e-17,6.619203829211978e-17)
sum e = 4.14451014603021
sum de = 4.5672016515951874e-18
Info: CFL hydro = 0.010201858693911298 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010201858693911298 cfl multiplier : 0.8944147540191129 [sph::Model][rank=0]
Info: Timestep 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.9377e+04 | 800 | 1 | 4.129e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 836.7021519108678 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.304604363152202, dt = 0.010201858693911298 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.2%)
patch tree reduce : 1523.00 ns (0.3%)
gen split merge : 1092.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 425.08 us (95.7%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (73.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.768288200626114e-18,7.620951548477223e-18,-3.1649116788389097e-18)
sum a = (1.302931079596967e-16,1.5167610801985013e-16,-5.821160789701627e-17)
sum e = 4.144510167925695
sum de = -2.303929616531697e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01082841125183701
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0194220958910374e-17,8.552600892650343e-18,-3.891732971861428e-18)
sum a = (6.079985559272552e-17,1.5613364571801606e-16,1.1415849906028696e-16)
sum e = 4.1445099443045255
sum de = -3.5236570605778894e-19
Info: CFL hydro = 0.005305940294820934 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005305940294820934 cfl multiplier : 0.4648049180063709 [sph::Model][rank=0]
Info: Timestep 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.6284e+04 | 800 | 1 | 4.913e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 747.5890178354143 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.314806221846113, dt = 0.005305940294820934 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.84 us (1.1%)
patch tree reduce : 1243.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.2%)
LB compute : 429.45 us (96.0%)
LB move op cnt : 0
LB apply : 3.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0062412048480737e-17,9.544163377927843e-18,-2.322008674926654e-18)
sum a = (1.548455131842719e-16,-7.383695509703875e-17,1.3279148594374934e-16)
sum e = 4.144510004193438
sum de = 4.2012834183813297e-19
Info: CFL hydro = 0.00734206790561712 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00734206790561712 cfl multiplier : 0.643203278670914 [sph::Model][rank=0]
Info: Timestep 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.1064e+04 | 800 | 1 | 3.798e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 502.9450447669034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.3201121621409335, dt = 0.00734206790561712 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.3%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 399.32 us (95.7%)
LB move op cnt : 0
LB apply : 3.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1431427322715835e-17,8.196117703079278e-18,-1.3443011035295416e-18)
sum a = (1.3677570982719066e-16,-7.785113555103226e-17,3.618753722704593e-18)
sum e = 4.1445100573969995
sum de = 1.4907779871675686e-18
Info: CFL hydro = 0.008698443165839407 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008698443165839407 cfl multiplier : 0.7621355191139427 [sph::Model][rank=0]
Info: Timestep 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.1122e+04 | 800 | 1 | 3.787e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 697.8655947940549 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.327454230046551, dt = 0.008698443165839407 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.1%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 431.87 us (95.8%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (71.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2434972436214212e-17,7.420242525777548e-18,-1.6835592650330972e-18)
sum a = (-7.127267265777127e-17,4.0297578706806446e-17,1.2989168991429733e-16)
sum e = 4.144510101103703
sum de = 1.6805133673525319e-18
Info: CFL hydro = 0.009602895697214762 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009602895697214762 cfl multiplier : 0.8414236794092952 [sph::Model][rank=0]
Info: Timestep 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.1133e+04 | 800 | 1 | 3.785e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 827.2269403501424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.33615267321239, dt = 0.009602895697214762 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (1.1%)
patch tree reduce : 1262.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1403.00 ns (0.3%)
LB compute : 392.09 us (95.9%)
LB move op cnt : 0
LB apply : 3.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0940139565659914e-17,8.555596549705562e-18,-1.5474440975865823e-19)
sum a = (1.5604976732046993e-16,-7.309403214734444e-17,-1.0142096526149562e-16)
sum e = 4.144510133723826
sum de = 2.019326546254252e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010037271402134222
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.188077588099869e-17,7.886067197864108e-18,-9.752501964690029e-19)
sum a = (-1.5850620610574954e-16,4.3125478966933216e-17,-4.05252486430031e-17)
sum e = 4.144509945648478
sum de = 1.2197274440461925e-19
Info: CFL hydro = 0.005103917550052994 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005103917550052994 cfl multiplier : 0.4471412264697651 [sph::Model][rank=0]
Info: Timestep 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.5489e+04 | 800 | 1 | 5.165e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 669.3086676203468 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.345755568909605, dt = 0.005103917550052994 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.84 us (0.7%)
patch tree reduce : 1794.00 ns (0.2%)
gen split merge : 751.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.2%)
LB compute : 702.58 us (97.4%)
LB move op cnt : 0
LB apply : 3.54 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.744872400627518e-18,8.504670379766838e-18,-1.2096837646106363e-18)
sum a = (3.949474261600775e-17,-3.3419550108023547e-17,-9.149934909461018e-17)
sum e = 4.144509998227754
sum de = -1.938011383317839e-18
Info: CFL hydro = 0.007208151139566002 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007208151139566002 cfl multiplier : 0.6314274843131767 [sph::Model][rank=0]
Info: Timestep 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.1974e+04 | 800 | 1 | 3.641e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 504.679511911973 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.350859486459658, dt = 0.007208151139566002 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (1.2%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 374.15 us (95.5%)
LB move op cnt : 0
LB apply : 3.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0565682433757534e-17,7.950473824551316e-18,-1.8158362468776127e-18)
sum a = (-2.906985606384551e-17,-5.767238962707685e-17,3.820061876815313e-17)
sum e = 4.14451005074607
sum de = -4.0657581468206416e-19
Info: CFL hydro = 0.008612505238331179 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008612505238331179 cfl multiplier : 0.7542849895421178 [sph::Model][rank=0]
Info: Timestep 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.1549e+04 | 800 | 1 | 3.712e-02 | 0.1% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 698.9805912409458 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.358067637599224, dt = 0.008612505238331179 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.36 us (1.0%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 402.17 us (95.9%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.981529307989822e-18,7.778223543876222e-18,-1.3298845039513e-18)
sum a = (-1.8275904562480284e-16,7.665287272894465e-17,3.2796453440537985e-17)
sum e = 4.144510096407362
sum de = 2.4801124695605914e-18
Info: CFL hydro = 0.009551292588666029 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009551292588666029 cfl multiplier : 0.8361899930280785 [sph::Model][rank=0]
Info: Timestep 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.1090e+04 | 800 | 1 | 3.793e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 817.3680106474803 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.366680142837556, dt = 0.009551292588666029 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (1.1%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 405.94 us (95.9%)
LB move op cnt : 0
LB apply : 3.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.54006880798631e-18,9.139749675473274e-18,-7.245745502311039e-19)
sum a = (5.0279108014796274e-17,-7.345351099397072e-17,-7.243498759519625e-17)
sum e = 4.144510133199096
sum de = -1.3823577699190182e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010772417120360188
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.6874054601352e-18,8.386341926085686e-18,-1.3113488759221323e-18)
sum a = (2.8935650627771694e-16,-1.9049982345548884e-16,1.2654853664067288e-16)
sum e = 4.144509947524303
sum de = 1.1519648082658485e-18
Info: CFL hydro = 0.005090736905297349 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005090736905297349 cfl multiplier : 0.4453966643426928 [sph::Model][rank=0]
Info: Timestep 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.5967e+04 | 800 | 1 | 5.010e-02 | 0.0% | 1.8% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 686.2812896916777 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.376231435426222, dt = 0.005090736905297349 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.4%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 389.91 us (95.2%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1224726985905722e-17,6.8345915714822266e-18,4.051626167183744e-19)
sum a = (1.082151154627324e-16,-2.276699361966466e-18,-1.4866846833641022e-16)
sum e = 4.144509999661711
sum de = 9.486769009248164e-20
Info: CFL hydro = 0.007206212471020953 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007206212471020953 cfl multiplier : 0.6302644428951285 [sph::Model][rank=0]
Info: Timestep 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.1167e+04 | 800 | 1 | 3.779e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 484.9080936382344 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.38132217233152, dt = 0.007206212471020953 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 21.68 us (5.1%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 392.90 us (92.0%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1644118973636387e-17,7.348346756452292e-18,-1.516551384204636e-18)
sum a = (-5.068651737430606e-17,3.653742997109552e-16,3.2269217798819436e-17)
sum e = 4.144510054431777
sum de = 7.589415207398531e-19
Info: CFL hydro = 0.008617196455645636 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008617196455645636 cfl multiplier : 0.7535096285967523 [sph::Model][rank=0]
Info: Timestep 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.1008e+04 | 800 | 1 | 3.808e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 681.2623016687312 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.388528384802541, dt = 0.008617196455645636 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.4%)
patch tree reduce : 1472.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 389.32 us (95.3%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0465327922407696e-17,1.1545262290814158e-17,-5.152530134976739e-19)
sum a = (7.867793689827272e-17,-1.0000701513143224e-16,1.2629690144803448e-17)
sum e = 4.144510103956593
sum de = 1.0570971181733668e-18
Info: CFL hydro = 0.009559999806651768 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009559999806651768 cfl multiplier : 0.8356730857311682 [sph::Model][rank=0]
Info: Timestep 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.1188e+04 | 800 | 1 | 3.776e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 821.6290546489913 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.3971455812581866, dt = 0.009559999806651768 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.2%)
patch tree reduce : 1392.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 404.27 us (95.6%)
LB move op cnt : 0
LB apply : 3.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (71.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1994610849097013e-17,8.800491513969718e-18,-6.478108381911162e-19)
sum a = (-1.0376956039278735e-17,5.1285648785349865e-18,4.826602647368908e-17)
sum e = 4.144510145635033
sum de = -1.883801274693564e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010496295086254818
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1389488123942768e-17,9.305259727774125e-18,-1.9921119417206579e-19)
sum a = (-1.2414002836827678e-17,-8.073894895226342e-17,-7.213542188967434e-17)
sum e = 4.1445099496897955
sum de = -7.860465750519907e-19
Info: CFL hydro = 0.005093941417646156 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005093941417646156 cfl multiplier : 0.44522436191038944 [sph::Model][rank=0]
Info: Timestep 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.5754e+04 | 800 | 1 | 5.078e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 677.757968558819 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.406705581064839, dt = 0.005093941417646156 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.0%)
patch tree reduce : 1753.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 417.92 us (96.1%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1185783444187874e-17,8.444008324398652e-18,-1.2079987075170757e-18)
sum a = (7.654502907495677e-17,3.075461359170069e-16,8.236858639030256e-17)
sum e = 4.1445100046544825
sum de = -7.724940478959219e-19
Info: CFL hydro = 0.007208484996612692 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007208484996612692 cfl multiplier : 0.6301495746069263 [sph::Model][rank=0]
Info: Timestep 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.1083e+04 | 800 | 1 | 3.795e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 483.27746509289653 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.411799522482485, dt = 0.007208484996612692 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.2%)
patch tree reduce : 1773.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 396.89 us (95.5%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2100956674557289e-17,1.2070251189741294e-17,-1.0035451134983765e-19)
sum a = (-3.966249941110001e-17,-2.4180943749728045e-17,6.020072418168171e-17)
sum e = 4.144510063656174
sum de = 2.574980159653073e-19
Info: CFL hydro = 0.00861755774922733 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00861755774922733 cfl multiplier : 0.7534330497379509 [sph::Model][rank=0]
Info: Timestep 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.8684e+04 | 800 | 1 | 4.282e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 606.0727206056697 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.419008007479098, dt = 0.00861755774922733 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.3%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 422.41 us (95.6%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.126067487056835e-17,1.0528236720567295e-17,9.960559708603289e-20)
sum a = (2.3186385607395325e-16,-8.155376767128299e-17,1.1387091598298594e-16)
sum e = 4.144510117576826
sum de = -5.55653613398821e-19
Info: CFL hydro = 0.009557461387095243 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009557461387095243 cfl multiplier : 0.8356220331586339 [sph::Model][rank=0]
Info: Timestep 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.9217e+04 | 800 | 1 | 4.163e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 745.2212439795051 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.427625565228325, dt = 0.009557461387095243 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.2%)
patch tree reduce : 1493.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 418.64 us (95.7%)
LB move op cnt : 0
LB apply : 3.48 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4895904707076647e-17,9.159970360596002e-18,1.4281795010756747e-18)
sum a = (-9.06365998627071e-17,1.518917953278259e-16,7.339359785286633e-17)
sum e = 4.144510162818897
sum de = -3.3881317890172014e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010440929959545514
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3158423615049608e-17,9.991265193419283e-18,1.302361904756475e-18)
sum a = (9.001350319522154e-17,1.0619005129340433e-16,-8.112239305533145e-17)
sum e = 4.144509951602967
sum de = 1.6263032587282567e-19
Info: CFL hydro = 0.005092424143701854 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005092424143701854 cfl multiplier : 0.4452073443862113 [sph::Model][rank=0]
Info: Timestep 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.5745e+04 | 800 | 1 | 5.081e-02 | 0.1% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 677.1797206368549 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.437183026615421, dt = 0.005092424143701854 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.69 us (1.1%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 400.43 us (95.8%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4558893288364507e-17,1.050052689280652e-17,7.638925490808538e-20)
sum a = (1.3013134247871484e-16,1.1781320066765418e-16,-1.0025865032407064e-16)
sum e = 4.144510010893161
sum de = 1.3688052427629493e-18
Info: CFL hydro = 0.007206160145569193 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007206160145569193 cfl multiplier : 0.6301382295908075 [sph::Model][rank=0]
Info: Timestep 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.0810e+04 | 800 | 1 | 3.844e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 476.8754843598528 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.442275450759123, dt = 0.007206160145569193 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.77 us (1.1%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 403.15 us (95.8%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5671779884378377e-17,1.1614162403084196e-17,-6.380749527616543e-19)
sum a = (3.067552824544291e-17,-4.699586788227621e-17,-3.014829260372436e-17)
sum e = 4.144510074021227
sum de = 6.2341624917916505e-19
Info: CFL hydro = 0.008614022195151788 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008614022195151788 cfl multiplier : 0.7534254863938715 [sph::Model][rank=0]
Info: Timestep 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.1031e+04 | 800 | 1 | 3.804e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 681.9915912825309 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.449481610904692, dt = 0.008614022195151788 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.1%)
patch tree reduce : 1173.00 ns (0.3%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 380.91 us (96.0%)
LB move op cnt : 0
LB apply : 3.12 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.550701874634133e-17,1.040934658118829e-17,-7.84862148467387e-19)
sum a = (1.0714866155107442e-16,-7.1104915862679e-17,-9.184684531301559e-17)
sum e = 4.144510130653912
sum de = -3.1170812458958252e-19
Info: CFL hydro = 0.009552046844509601 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009552046844509601 cfl multiplier : 0.8356169909292476 [sph::Model][rank=0]
Info: Timestep 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.0966e+04 | 800 | 1 | 3.816e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 812.6961431847922 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.458095633099844, dt = 0.009552046844509601 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (1.1%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.2%)
LB compute : 400.90 us (95.9%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6994362474257583e-17,9.687206002314552e-18,-1.8932552588984296e-18)
sum a = (1.4628392532045588e-16,1.1194171283942487e-16,-1.1497331777930652e-16)
sum e = 4.144510176283242
sum de = -4.87890977618477e-19
Info: CFL hydro = 0.010177784252733826 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010177784252733826 cfl multiplier : 0.890411327286165 [sph::Model][rank=0]
Info: Timestep 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.1128e+04 | 800 | 1 | 3.786e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 908.1694292703343 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.467647679944354, dt = 0.010177784252733826 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (0.9%)
patch tree reduce : 601.00 ns (0.2%)
gen split merge : 1172.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 762.00 ns (0.2%)
LB compute : 383.44 us (96.4%)
LB move op cnt : 0
LB apply : 3.00 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8654705397112733e-17,1.1736984342348176e-17,-3.2967205892685473e-18)
sum a = (-1.212641975952665e-16,1.4930354763211666e-17,7.668882061360728e-18)
sum e = 4.144510210677292
sum de = -2.168404344971009e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010618596672801111
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7011961959456995e-17,1.1078688704463793e-17,-2.5672780963227124e-18)
sum a = (4.90089494233834e-17,-2.887813401231149e-17,-7.386092035348051e-17)
sum e = 4.144509954512435
sum de = -2.5682038960750386e-18
Info: CFL hydro = 0.0052935141963651455 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0052935141963651455 cfl multiplier : 0.4634704424287217 [sph::Model][rank=0]
Info: Timestep 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.5834e+04 | 800 | 1 | 5.052e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 725.1919839625353 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.477825464197087, dt = 0.0052935141963651455 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.2%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 394.53 us (95.6%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.83978278046277e-17,1.0902693852469675e-17,-3.292227103685719e-18)
sum a = (9.799393359032505e-17,-5.274752942829676e-17,7.031406240010117e-17)
sum e = 4.144510023008069
sum de = 7.928228386300251e-19
Info: CFL hydro = 0.00733203371061169 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00733203371061169 cfl multiplier : 0.6423136282858145 [sph::Model][rank=0]
Info: Timestep 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.0991e+04 | 800 | 1 | 3.811e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 500.02487724841546 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.483118978393453, dt = 0.00733203371061169 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.2%)
patch tree reduce : 1572.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 422.34 us (95.8%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8918135989406056e-17,1.0385943010444392e-17,-2.4579366138072176e-18)
sum a = (8.526838241975459e-17,5.715713661357917e-17,-1.4546910660143631e-16)
sum e = 4.144510087049144
sum de = -3.3881317890172014e-20
Info: CFL hydro = 0.008687223273388315 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008687223273388315 cfl multiplier : 0.7615424188572097 [sph::Model][rank=0]
Info: Timestep 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.1055e+04 | 800 | 1 | 3.800e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 694.6929332284674 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.490451012104065, dt = 0.008687223273388315 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.3%)
patch tree reduce : 1342.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 369.75 us (95.1%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9826662605684204e-17,1.1344553268114483e-17,-4.62229883620297e-18)
sum a = (-6.118329969579355e-17,5.5335777124006e-17,-5.115983118903067e-17)
sum e = 4.144510140668063
sum de = 2.1141942363467336e-18
Info: CFL hydro = 0.009587905829911132 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009587905829911132 cfl multiplier : 0.8410282792381398 [sph::Model][rank=0]
Info: Timestep 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.0641e+04 | 800 | 1 | 3.876e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 806.9079762820049 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.499138235377453, dt = 0.0008617646225470565 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.1%)
patch tree reduce : 1363.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.2%)
LB compute : 427.27 us (95.9%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9129985111779826e-17,1.1265168356151178e-17,-4.193919877306648e-18)
sum a = (-2.1882675656964002e-16,-3.0292084142374874e-17,8.540019133018423e-17)
sum e = 4.144509956043598
sum de = 8.470329472543003e-20
Info: CFL hydro = 0.0101923525469739 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0101923525469739 cfl multiplier : 0.8940188528254266 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 6.5404e+03 | 800 | 1 | 1.223e-01 | 0.0% | 0.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.363091566470025 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 1001 [SPH][rank=0]
Info: time since start : 898.0665719130001 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15099399771849728 max=0.15138474585437203 delta=0.0003907481358747522
Number of particle pairs: 319600
Distance min=0.163001 max=2.295695 mean=0.934864
---------------- t = 7.5, dt = 0.0101923525469739 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.42 us (1.6%)
patch tree reduce : 1353.00 ns (0.2%)
gen split merge : 561.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.1%)
LB compute : 628.16 us (96.1%)
LB move op cnt : 0
LB apply : 4.89 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (77.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.667607391214056e-17,1.1086926761365646e-17,-3.1109898518449672e-18)
sum a = (5.571922122707404e-17,1.9830051442727919e-16,1.8875035973524092e-16)
sum e = 4.144510208864849
sum de = -1.0486267887008238e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011911607872404808
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8210973695808413e-17,1.2115934959833385e-17,-2.5612867822122745e-18)
sum a = (2.4336717916599435e-17,4.066904018165361e-17,6.591044652892919e-17)
sum e = 4.144509954797615
sum de = 5.675120746603812e-19
Info: CFL hydro = 0.005295061318841829 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005295061318841829 cfl multiplier : 0.4646729509418089 [sph::Model][rank=0]
Info: Timestep 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.4702e+04 | 800 | 1 | 5.441e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 674.3304801787662 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.510192352546974, dt = 0.005295061318841829 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (1.0%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 387.17 us (95.9%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8258529751560013e-17,1.1645616802163996e-17,-2.97768311288772e-18)
sum a = (8.421391113631749e-17,4.501873422583165e-17,5.5078150617257164e-17)
sum e = 4.144510022764071
sum de = -1.1858461261560205e-20
Info: CFL hydro = 0.0073271110985555395 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0073271110985555395 cfl multiplier : 0.6431153006278726 [sph::Model][rank=0]
Info: Timestep 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.1276e+04 | 800 | 1 | 3.760e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 506.9504017414559 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.515487413865816, dt = 0.0073271110985555395 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.98 us (1.0%)
patch tree reduce : 1052.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 371.08 us (95.9%)
LB move op cnt : 0
LB apply : 3.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.910143275547227e-17,1.1841832339280843e-17,-2.655649979451674e-18)
sum a = (-1.781577163879864e-16,3.942284684668249e-18,4.313746159515409e-18)
sum e = 4.144510083132499
sum de = 4.62479989200848e-19
Info: CFL hydro = 0.008681319976719034 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008681319976719034 cfl multiplier : 0.7620768670852485 [sph::Model][rank=0]
Info: Timestep 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.1571e+04 | 800 | 1 | 3.709e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 711.2410156140759 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.522814524964371, dt = 0.008681319976719034 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (0.8%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 622.00 ns (0.1%)
LB compute : 402.80 us (96.9%)
LB move op cnt : 0
LB apply : 3.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6463382261220008e-17,1.181786708283909e-17,-2.829398088654378e-18)
sum a = (7.786311817925313e-17,-1.0867045533512569e-16,-1.7716315824565368e-17)
sum e = 4.144510131532172
sum de = -4.523155938337964e-19
Info: CFL hydro = 0.009584925905946666 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009584925905946666 cfl multiplier : 0.8413845780568323 [sph::Model][rank=0]
Info: Timestep 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.1545e+04 | 800 | 1 | 3.713e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 841.691702420517 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.53149584494109, dt = 0.009584925905946666 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (0.8%)
patch tree reduce : 822.00 ns (0.2%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 405.57 us (96.8%)
LB move op cnt : 0
LB apply : 3.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8345403806161366e-17,1.0351492954309373e-17,-3.0795354527651673e-18)
sum a = (6.567678527862211e-17,1.4270111948241392e-16,-8.886616654307265e-17)
sum e = 4.144510164813044
sum de = 1.5924219408380846e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011207253953599061
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.818888072502617e-17,1.166658640155053e-17,-3.522892696937584e-18)
sum a = (-1.0133708686394949e-16,-8.959411120749088e-17,9.403067930627027e-17)
sum e = 4.14450995478773
sum de = -9.0801931945661e-19
Info: CFL hydro = 0.0050953361034895665 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0050953361034895665 cfl multiplier : 0.44712819268561077 [sph::Model][rank=0]
Info: Timestep 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.5925e+04 | 800 | 1 | 5.023e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 686.8984418677093 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.541080770847037, dt = 0.0050953361034895665 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.18 us (1.0%)
patch tree reduce : 1282.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 393.32 us (95.8%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7072998471957083e-17,9.954568394492851e-18,-2.0250641693280673e-18)
sum a = (-2.6717666144087524e-16,-8.119428882465671e-17,1.576344699026808e-16)
sum e = 4.144510013713655
sum de = -8.199278929421627e-19
Info: CFL hydro = 0.007193787091501381 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007193787091501381 cfl multiplier : 0.6314187951237406 [sph::Model][rank=0]
Info: Timestep 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.0928e+04 | 800 | 1 | 3.823e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 479.8558835434634 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.546176106950527, dt = 0.007193787091501381 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (0.8%)
patch tree reduce : 802.00 ns (0.2%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 405.66 us (96.7%)
LB move op cnt : 0
LB apply : 2.91 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.44944866616773e-17,9.322484755841634e-18,-6.575467236205781e-19)
sum a = (6.686306547248884e-18,1.5217937840512695e-16,-3.31918801718269e-17)
sum e = 4.144510069029887
sum de = 2.032879073410321e-18
Info: CFL hydro = 0.008591661842909147 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008591661842909147 cfl multiplier : 0.7542791967491604 [sph::Model][rank=0]
Info: Timestep 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.1270e+04 | 800 | 1 | 3.761e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 688.5578279350244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.553369894042028, dt = 0.008591661842909147 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (0.7%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 421.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.1%)
LB compute : 395.37 us (97.6%)
LB move op cnt : 0
LB apply : 2.18 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.560138194358073e-17,1.1563236233145472e-17,-1.783913776382935e-18)
sum a = (7.860604112894746e-18,-9.918021378419179e-17,-1.5489044804010016e-17)
sum e = 4.144510113071597
sum de = -5.082197683525802e-19
Info: CFL hydro = 0.009524121805137281 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009524121805137281 cfl multiplier : 0.836186131166107 [sph::Model][rank=0]
Info: Timestep 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.1506e+04 | 800 | 1 | 3.720e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 831.4904183639247 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.561961555884937, dt = 0.009524121805137281 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (0.9%)
patch tree reduce : 1072.00 ns (0.3%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 711.00 ns (0.2%)
LB compute : 367.78 us (96.5%)
LB move op cnt : 0
LB apply : 2.50 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5838038850943034e-17,9.515704635903263e-18,-1.8288486322112204e-18)
sum a = (-8.517252139398758e-17,1.9939692490948936e-16,-5.811499795698546e-17)
sum e = 4.144510143170136
sum de = 8.74138001566438e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01051898776771475
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.55175035460346e-17,1.091617430921816e-17,-2.0699990251563527e-18)
sum a = (-4.201109454239174e-17,-1.826571932849254e-16,-2.693095692641912e-17)
sum e = 4.144509955136693
sum de = 1.0842021724855044e-19
Info: CFL hydro = 0.005074718827580353 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005074718827580353 cfl multiplier : 0.44539537705536897 [sph::Model][rank=0]
Info: Timestep 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.5835e+04 | 800 | 1 | 5.052e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 678.6661679391502 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.571485677690075, dt = 0.005074718827580353 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (1.1%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 400.97 us (95.9%)
LB move op cnt : 0
LB apply : 3.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5493538289592846e-17,8.037347879152668e-18,-2.0340511404937243e-18)
sum a = (5.7037310331370416e-18,-8.244048215962783e-18,-7.026538297295386e-17)
sum e = 4.144510008103601
sum de = -2.3445871979999033e-18
Info: CFL hydro = 0.007182420506956147 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007182420506956147 cfl multiplier : 0.6302635847035792 [sph::Model][rank=0]
Info: Timestep 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.1022e+04 | 800 | 1 | 3.806e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 480.0549699778027 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.576560396517655, dt = 0.007182420506956147 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.86 us (1.1%)
patch tree reduce : 1173.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 425.91 us (96.0%)
LB move op cnt : 0
LB apply : 3.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5536975316893522e-17,8.413302839582657e-18,-2.7649914619671686e-18)
sum a = (-7.873785003937709e-17,5.07404392013e-17,-1.786909433438154e-17)
sum e = 4.14451005842934
sum de = -1.8973538018496328e-19
Info: CFL hydro = 0.008585298850243348 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008585298850243348 cfl multiplier : 0.7535090564690528 [sph::Model][rank=0]
Info: Timestep 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.0957e+04 | 800 | 1 | 3.817e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 677.3526956403024 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.583742817024611, dt = 0.008585298850243348 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (1.0%)
patch tree reduce : 1153.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 742.00 ns (0.2%)
LB compute : 382.47 us (96.1%)
LB move op cnt : 0
LB apply : 3.11 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.457237374511299e-17,9.240104186823112e-18,-2.7065761493903976e-18)
sum a = (1.3044888212656807e-16,5.710621044364046e-17,-1.210440168017079e-16)
sum e = 4.144510099190887
sum de = 9.893344823930228e-19
Info: CFL hydro = 0.009515203384241782 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009515203384241782 cfl multiplier : 0.8356727043127018 [sph::Model][rank=0]
Info: Timestep 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.1178e+04 | 800 | 1 | 3.777e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 818.2001409702423 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.592328115874854, dt = 0.009515203384241782 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.45 us (1.1%)
patch tree reduce : 1052.00 ns (0.3%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 393.27 us (96.1%)
LB move op cnt : 0
LB apply : 2.90 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6648364084379783e-17,9.749365886210347e-18,-4.1924220487790386e-18)
sum a = (-7.425634708476942e-17,2.1314848862147234e-17,-1.5939891190820482e-17)
sum e = 4.144510128381071
sum de = 6.640738306473715e-19
Info: CFL hydro = 0.010133595259666617 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010133595259666617 cfl multiplier : 0.8904484695418011 [sph::Model][rank=0]
Info: Timestep 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.0883e+04 | 800 | 1 | 3.831e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 894.1603260733738 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.601843319259095, dt = 0.010133595259666617 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (1.1%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1392.00 ns (0.3%)
LB compute : 396.96 us (95.7%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.498128093315039e-17,9.762846342958832e-18,-3.829947545097535e-18)
sum a = (-3.628938956692338e-17,4.383544968902013e-17,-1.142753296854405e-16)
sum e = 4.144510148744026
sum de = -2.168404344971009e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01121775719266222
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5238907439899228e-17,9.816768169952776e-18,-4.375157129147399e-18)
sum a = (4.117231056693041e-17,1.339957400799474e-17,-1.6895505791435353e-17)
sum e = 4.1445099567009445
sum de = 1.4907779871675686e-18
Info: CFL hydro = 0.005273509702219331 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005273509702219331 cfl multiplier : 0.46348282318060036 [sph::Model][rank=0]
Info: Timestep 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.5481e+04 | 800 | 1 | 5.168e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 705.9512637004041 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.6119769145187615, dt = 0.005273509702219331 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.2%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 434.65 us (95.8%)
LB move op cnt : 0
LB apply : 3.71 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5999804331924863e-17,9.803287713204289e-18,-4.014180453993506e-18)
sum a = (-4.6801150173686975e-17,-1.0158572639953267e-16,-6.752211002463704e-17)
sum e = 4.144510008084504
sum de = 1.395910297075087e-18
Info: CFL hydro = 0.007307649991963023 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007307649991963023 cfl multiplier : 0.6423218821204002 [sph::Model][rank=0]
Info: Timestep 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.1208e+04 | 800 | 1 | 3.772e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 503.2801968089962 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.61725042422098, dt = 0.007307649991963023 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (0.9%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 392.97 us (96.1%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5113089843580027e-17,8.643968432834523e-18,-4.752609918104998e-18)
sum a = (5.713317135713742e-17,1.7926311384136223e-16,-3.5558449245449935e-17)
sum e = 4.144510055452575
sum de = -1.8566962203814263e-18
Info: CFL hydro = 0.008663999069963771 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008663999069963771 cfl multiplier : 0.7615479214136002 [sph::Model][rank=0]
Info: Timestep 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.0744e+04 | 800 | 1 | 3.856e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 682.1696759247611 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.624558074212944, dt = 0.008663999069963771 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.72 us (1.1%)
patch tree reduce : 991.00 ns (0.2%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 419.47 us (96.0%)
LB move op cnt : 0
LB apply : 3.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.594588250493092e-17,1.1396977266580816e-17,-4.909881913503997e-18)
sum a = (1.1576117558482915e-16,-2.297968527058521e-17,-7.259076176206764e-17)
sum e = 4.144510096189877
sum de = -2.4123498337802474e-18
Info: CFL hydro = 0.009569811633154892 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009569811633154892 cfl multiplier : 0.8410319476090669 [sph::Model][rank=0]
Info: Timestep 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.0969e+04 | 800 | 1 | 3.815e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 817.5473428167159 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.633222073282908, dt = 0.009569811633154892 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (1.0%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 391.47 us (96.1%)
LB move op cnt : 0
LB apply : 3.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7514108973338084e-17,1.0279597184984115e-17,-5.736683260744451e-18)
sum a = (1.0008190655781272e-16,-7.934297276453135e-17,8.066106186882771e-17)
sum e = 4.144510129108845
sum de = -2.371692252312041e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010319624404297066
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7389789205546495e-17,1.0153779588664917e-17,-4.77807300307436e-18)
sum a = (-4.032304179177581e-17,1.4197617047505092e-16,-8.136204561974897e-17)
sum e = 4.1445099586285625
sum de = -1.328147661294743e-18
Info: CFL hydro = 0.005088849137232279 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005088849137232279 cfl multiplier : 0.4470106492030223 [sph::Model][rank=0]
Info: Timestep 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.5733e+04 | 800 | 1 | 5.085e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 677.5290674257272 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.642791884916063, dt = 0.005088849137232279 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.2%)
patch tree reduce : 1282.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 402.17 us (95.6%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6651359741435e-17,1.178940834081451e-17,-6.019772852462649e-18)
sum a = (-8.360878841116324e-18,7.905538968723031e-17,3.3209854114158214e-17)
sum e = 4.144510006231311
sum de = 7.995991022080595e-19
Info: CFL hydro = 0.00718923494463333 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00718923494463333 cfl multiplier : 0.6313404328020149 [sph::Model][rank=0]
Info: Timestep 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.0717e+04 | 800 | 1 | 3.862e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 474.4100125231808 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.647880734053295, dt = 0.00718923494463333 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (1.1%)
patch tree reduce : 1002.00 ns (0.2%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 395.28 us (96.0%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (72.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.644465940462489e-17,1.206500878989466e-17,-5.4610828116643e-18)
sum a = (-1.7910546738883132e-16,2.0275805212544512e-16,-5.4419106065108974e-17)
sum e = 4.144510056150177
sum de = -1.8566962203814263e-18
Info: CFL hydro = 0.008592795892851935 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008592795892851935 cfl multiplier : 0.7542269552013433 [sph::Model][rank=0]
Info: Timestep 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.0134e+04 | 800 | 1 | 3.973e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 651.361018535639 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.655069968997928, dt = 0.008592795892851935 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.2%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 408.85 us (95.7%)
LB move op cnt : 0
LB apply : 3.58 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (72.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4167960042658422e-17,1.4370166893885707e-17,-6.226473189272763e-18)
sum a = (-2.460670150870105e-17,-6.160269168352422e-17,-4.8337922243014334e-17)
sum e = 4.144510101588493
sum de = -4.743384504624082e-19
Info: CFL hydro = 0.00953321927299528 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00953321927299528 cfl multiplier : 0.8361513034675623 [sph::Model][rank=0]
Info: Timestep 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.0677e+04 | 800 | 1 | 3.869e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 799.5431033121279 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.6636627648907805, dt = 0.00953321927299528 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.54 us (1.1%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 399.83 us (95.8%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4618806429468888e-17,1.2568279175171458e-17,-6.686306547248884e-18)
sum a = (6.429279171911091e-17,2.208398381107472e-17,-7.771333532649219e-17)
sum e = 4.144510140197503
sum de = -1.2468324983583301e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010091111190492084
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5059168016586085e-17,1.3047584304006504e-17,-6.878028598782903e-18)
sum a = (-1.868750784186738e-16,-5.722903238290443e-17,1.3360630466276893e-18)
sum e = 4.144509960701661
sum de = 1.7753810574450135e-18
Info: CFL hydro = 0.005083510955179078 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005083510955179078 cfl multiplier : 0.44538376782252076 [sph::Model][rank=0]
Info: Timestep 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.5751e+04 | 800 | 1 | 5.079e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 675.7069818078683 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.673195984163776, dt = 0.005083510955179078 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (1.1%)
patch tree reduce : 1402.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 395.42 us (95.8%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3105999616583275e-17,1.256079003253341e-17,-6.4840996960216e-18)
sum a = (5.709722347247479e-18,-2.708073977918007e-18,-1.0889812527132233e-16)
sum e = 4.144510011096036
sum de = -9.486769009248164e-19
Info: CFL hydro = 0.007197863601906503 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007197863601906503 cfl multiplier : 0.6302558452150139 [sph::Model][rank=0]
Info: Timestep 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.0768e+04 | 800 | 1 | 3.852e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 475.0772028941699 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.6782794951189555, dt = 0.007197863601906503 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.97 us (1.0%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 373.91 us (95.8%)
LB move op cnt : 0
LB apply : 3.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3441513206767807e-17,1.2354089695723297e-17,-7.435220811053644e-18)
sum a = (-1.6518053002477755e-17,-7.650908119029414e-17,1.6774481246404504e-16)
sum e = 4.144510065582931
sum de = -6.776263578034403e-19
Info: CFL hydro = 0.00861344593261642 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00861344593261642 cfl multiplier : 0.7535038968100093 [sph::Model][rank=0]
Info: Timestep 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.1216e+04 | 800 | 1 | 3.771e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 687.1785178671553 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.685477358720862, dt = 0.00861344593261642 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (1.1%)
patch tree reduce : 942.00 ns (0.2%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 372.45 us (95.8%)
LB move op cnt : 0
LB apply : 3.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3251288983761399e-17,1.1453894750629977e-17,-5.2783477312959385e-18)
sum a = (2.8704385903108785e-17,-7.737183042219721e-17,1.5628941988488745e-16)
sum e = 4.144510115801524
sum de = -8.402566836762659e-19
Info: CFL hydro = 0.009558682837456032 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009558682837456032 cfl multiplier : 0.8356692645400061 [sph::Model][rank=0]
Info: Timestep 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.1118e+04 | 800 | 1 | 3.788e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 818.5406039830771 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.694090804653478, dt = 0.009558682837456032 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.2%)
patch tree reduce : 1513.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.2%)
LB compute : 415.77 us (95.7%)
LB move op cnt : 0
LB apply : 3.59 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.398522496229006e-17,1.0549206319953829e-17,-3.6337320079806885e-18)
sum a = (1.3453495834988682e-16,1.6184935937937399e-16,-4.66483716638708e-17)
sum e = 4.144510158124078
sum de = 1.6940658945086007e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010161731491926571
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.442708437793487e-17,1.19451825076859e-17,-4.535424781601618e-18)
sum a = (7.155426442096185e-17,1.591293027732351e-16,-1.5841034507998255e-17)
sum e = 4.144509962509419
sum de = -1.0977546996415732e-18
Info: CFL hydro = 0.005093895651015295 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005093895651015295 cfl multiplier : 0.44522308818000206 [sph::Model][rank=0]
Info: Timestep 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.5977e+04 | 800 | 1 | 5.007e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 687.2157405841199 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.703649487490934, dt = 0.005093895651015295 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (1.0%)
patch tree reduce : 1132.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 397.10 us (95.9%)
LB move op cnt : 0
LB apply : 3.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4404616950020726e-17,1.2712070713821972e-17,-4.6118140365097034e-18)
sum a = (-2.4863953558317985e-19,-3.353937639023231e-17,-5.653403994609361e-17)
sum e = 4.144510017409617
sum de = 6.098637220230962e-19
Info: CFL hydro = 0.007209663001446482 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007209663001446482 cfl multiplier : 0.6301487254533348 [sph::Model][rank=0]
Info: Timestep 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.1366e+04 | 800 | 1 | 3.744e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 489.76078279936826 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.708743383141949, dt = 0.007209663001446482 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.76 us (1.2%)
patch tree reduce : 1352.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 384.13 us (95.5%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4151483928854717e-17,1.2366072323944174e-17,-5.143543163811082e-18)
sum a = (1.3777925494068905e-16,1.1487745675353952e-16,2.726047920249321e-17)
sum e = 4.144510076020315
sum de = -2.439454888092385e-19
Info: CFL hydro = 0.008621172971177668 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008621172971177668 cfl multiplier : 0.7534324836355566 [sph::Model][rank=0]
Info: Timestep 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.1798e+04 | 800 | 1 | 3.670e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 707.2111416630711 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.715953046143396, dt = 0.008621172971177668 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (1.0%)
patch tree reduce : 811.00 ns (0.2%)
gen split merge : 712.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 397.55 us (96.3%)
LB move op cnt : 0
LB apply : 2.92 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.600279998898008e-17,1.3269262926092713e-17,-4.626792321785799e-18)
sum a = (-1.5859907147446132e-16,-4.3796506147302283e-17,-4.220281659392575e-17)
sum e = 4.144510128738069
sum de = -1.1519648082658485e-18
Info: CFL hydro = 0.009564575554016519 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009564575554016519 cfl multiplier : 0.8356216557570377 [sph::Model][rank=0]
Info: Timestep 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.0870e+04 | 800 | 1 | 3.833e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 809.654201306869 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.724574219114573, dt = 0.009564575554016519 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.22 us (1.0%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 400.71 us (96.1%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3468474120264778e-17,1.2291929811827502e-17,-5.497030696326928e-18)
sum a = (-2.2308058958805103e-16,-2.1000754219907519e-16,-1.827350803683611e-17)
sum e = 4.14451017138852
sum de = 0
Info: CFL hydro = 0.010196745264843382 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010196745264843382 cfl multiplier : 0.8904144371713585 [sph::Model][rank=0]
Info: Timestep 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.1025e+04 | 800 | 1 | 3.805e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 904.933626043131 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.734138794668589, dt = 0.010196745264843382 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (1.1%)
patch tree reduce : 1382.00 ns (0.4%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 369.58 us (95.7%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0781369741733304e-17,9.479007836976829e-18,-5.254382474854186e-18)
sum a = (-2.6083185979792133e-17,1.235289143290121e-16,1.8441264831928375e-17)
sum e = 4.144510203763869
sum de = -8.131516293641283e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010353111401764044
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1486846978237387e-17,1.130635864066044e-17,-5.152530134976739e-18)
sum a = (-1.0177145713695625e-16,5.2783477312959385e-17,-2.2215792721504358e-17)
sum e = 4.144509965308578
sum de = 1.9922214919421144e-18
Info: CFL hydro = 0.005308625222715191 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005308625222715191 cfl multiplier : 0.4634714790571195 [sph::Model][rank=0]
Info: Timestep 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.5720e+04 | 800 | 1 | 5.089e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 721.3042559931314 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.744335539933433, dt = 0.005308625222715191 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (1.2%)
patch tree reduce : 1322.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 386.42 us (95.7%)
LB move op cnt : 0
LB apply : 3.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0346999468726545e-17,1.1132610531457737e-17,-5.6565494345173415e-18)
sum a = (-8.377055389214507e-17,-1.6743326413030227e-16,-5.512008981603023e-19)
sum e = 4.144510029167605
sum de = -7.995991022080595e-19
Info: CFL hydro = 0.007357932057679194 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007357932057679194 cfl multiplier : 0.642314319371413 [sph::Model][rank=0]
Info: Timestep 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.1406e+04 | 800 | 1 | 3.737e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 511.3584994514821 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.749644165156147, dt = 0.007357932057679194 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (1.0%)
patch tree reduce : 1362.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 394.37 us (96.1%)
LB move op cnt : 0
LB apply : 3.48 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.980031479462213e-18,8.963754823479155e-18,-5.484299153842247e-18)
sum a = (-1.1234313088482423e-16,3.219732202949418e-17,1.3913029627259283e-16)
sum e = 4.144510089223025
sum de = 1.4026865606531214e-18
Info: CFL hydro = 0.00872574534434285 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00872574534434285 cfl multiplier : 0.7615428795809421 [sph::Model][rank=0]
Info: Timestep 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.0977e+04 | 800 | 1 | 3.814e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 694.5643665965673 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.757002097213826, dt = 0.00872574534434285 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.1%)
patch tree reduce : 1052.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 397.44 us (96.1%)
LB move op cnt : 0
LB apply : 3.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.96300590921535e-18,1.0359731011211226e-17,-3.7925018319072976e-18)
sum a = (-2.067722325794386e-16,-8.00439565154526e-18,8.543613921484686e-17)
sum e = 4.144510140004775
sum de = -1.1519648082658485e-19
Info: CFL hydro = 0.009634344797860407 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009634344797860407 cfl multiplier : 0.8410285863872948 [sph::Model][rank=0]
Info: Timestep 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.1245e+04 | 800 | 1 | 3.766e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 834.1864555156021 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.765727842558169, dt = 0.009634344797860407 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (1.0%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 404.69 us (96.0%)
LB move op cnt : 0
LB apply : 3.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.678817404610837e-18,1.0106597990045217e-17,-3.2398031052193857e-18)
sum a = (1.8896005572910625e-16,5.2963216736272525e-17,-6.639574297187467e-17)
sum e = 4.144510177616264
sum de = -7.792703114739563e-20
Info: CFL hydro = 0.010240107497550955 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010240107497550955 cfl multiplier : 0.8940190575915299 [sph::Model][rank=0]
Info: Timestep 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.1210e+04 | 800 | 1 | 3.772e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 919.5308412094131 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.77536218735603, dt = 0.010240107497550955 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (1.0%)
patch tree reduce : 982.00 ns (0.2%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 403.33 us (96.2%)
LB move op cnt : 0
LB apply : 3.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0460834436824868e-17,1.1335566296948826e-17,-4.677718491724522e-18)
sum a = (1.5462982587629612e-16,5.4772593597624825e-17,1.176574265007828e-16)
sum e = 4.144510203026627
sum de = 3.218725199566341e-20
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011277090310152784
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0030957649400937e-17,1.0692248944340538e-17,-3.661816292873367e-18)
sum a = (-6.362176453874185e-17,-5.204055436326506e-17,6.371163425039843e-17)
sum e = 4.144509966168462
sum de = -1.7533582008164017e-18
Info: CFL hydro = 0.005323366834729906 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005323366834729906 cfl multiplier : 0.46467301919717663 [sph::Model][rank=0]
Info: Timestep 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.5666e+04 | 800 | 1 | 5.107e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 721.8770366574028 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.785602294853581, dt = 0.005323366834729906 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.45 us (1.1%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 375.76 us (95.6%)
LB move op cnt : 0
LB apply : 3.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.749565344030994e-18,1.033539129763757e-17,-3.3641228730109753e-18)
sum a = (5.4796558854066575e-17,-2.0410010648618324e-16,3.538470113624723e-17)
sum e = 4.1445100295924435
sum de = -4.785736151986797e-19
Info: CFL hydro = 0.007368402116642364 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007368402116642364 cfl multiplier : 0.643115346131451 [sph::Model][rank=0]
Info: Timestep 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.1451e+04 | 800 | 1 | 3.729e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 513.8693330275358 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.790925661688311, dt = 0.007368402116642364 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.11 us (1.0%)
patch tree reduce : 992.00 ns (0.2%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 407.24 us (96.4%)
LB move op cnt : 0
LB apply : 3.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.314995613203588e-18,8.12721759080924e-18,-3.252160190572164e-18)
sum a = (1.3724902364191527e-16,-6.489192313015472e-17,2.911778657672901e-18)
sum e = 4.1445100862206745
sum de = 1.6512907306722585e-18
Info: CFL hydro = 0.008731839539108303 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008731839539108303 cfl multiplier : 0.7620768974209673 [sph::Model][rank=0]
Info: Timestep 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.9174e+04 | 800 | 1 | 4.172e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 635.756317063295 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.798294063804954, dt = 0.008731839539108303 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (0.8%)
patch tree reduce : 1292.00 ns (0.2%)
gen split merge : 852.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1453.00 ns (0.2%)
LB compute : 758.82 us (97.4%)
LB move op cnt : 0
LB apply : 3.64 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0752910999708724e-17,7.80930348582412e-18,-3.6048988088242054e-18)
sum a = (6.090170793260297e-17,-1.941784903192978e-17,-1.166508857302292e-17)
sum e = 4.144510132209125
sum de = 1.6686549060909717e-18
Info: CFL hydro = 0.009641305472149957 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009641305472149957 cfl multiplier : 0.8413845982806448 [sph::Model][rank=0]
Info: Timestep 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.0939e+04 | 800 | 1 | 3.821e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 822.7626584750581 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.807025903344062, dt = 0.009641305472149957 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.62 us (1.1%)
patch tree reduce : 1243.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 400.99 us (95.8%)
LB move op cnt : 0
LB apply : 3.48 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0910182995107723e-17,8.055696278615886e-18,-3.6101412086708384e-18)
sum a = (-1.1213942620506933e-16,-1.4548708054376762e-16,-4.60971707657105e-17)
sum e = 4.144510164923947
sum de = 1.3145951341386741e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010182978806818033
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.061211511811343e-17,7.787959429305684e-18,-3.902779457252548e-18)
sum a = (3.5133065943608834e-17,2.420011595488145e-16,2.261121945279327e-17)
sum e = 4.14450996664249
sum de = 7.453889935837843e-19
Info: CFL hydro = 0.005122256787652826 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005122256787652826 cfl multiplier : 0.4471281994268816 [sph::Model][rank=0]
Info: Timestep 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.6303e+04 | 800 | 1 | 4.907e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 707.3157508905633 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.816667208816212, dt = 0.005122256787652826 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.86 us (1.2%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 397.63 us (95.7%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1100407218114131e-17,1.0870490539126071e-17,-3.2178973630030965e-18)
sum a = (6.854662473752194e-17,-1.1605774563329583e-16,-1.0777774953267041e-16)
sum e = 4.144510022160201
sum de = -7.182839392716467e-19
Info: CFL hydro = 0.007231140658107714 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007231140658107714 cfl multiplier : 0.6314187996179211 [sph::Model][rank=0]
Info: Timestep 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.0908e+04 | 800 | 1 | 3.826e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 481.9352579639113 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.821789465603865, dt = 0.007231140658107714 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (1.1%)
patch tree reduce : 871.00 ns (0.2%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 398.97 us (96.3%)
LB move op cnt : 0
LB apply : 3.12 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2092718617655436e-17,9.138813532643517e-18,-4.433853284573097e-18)
sum a = (-4.948226323810801e-17,-3.128065097059716e-17,-6.75940057939623e-17)
sum e = 4.144510075493992
sum de = 7.453889935837843e-20
Info: CFL hydro = 0.008634810602919532 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008634810602919532 cfl multiplier : 0.7542791997452808 [sph::Model][rank=0]
Info: Timestep 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.0960e+04 | 800 | 1 | 3.817e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 682.0332516886496 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.829020606261972, dt = 0.008634810602919532 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (1.0%)
patch tree reduce : 1022.00 ns (0.2%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 410.45 us (96.1%)
LB move op cnt : 0
LB apply : 3.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0901196023942066e-17,8.777743243206649e-18,-5.021329717386443e-18)
sum a = (7.830647542342556e-18,-1.1052177139525106e-16,7.860004981483702e-17)
sum e = 4.1445101193731695
sum de = 1.6940658945086007e-18
Info: CFL hydro = 0.009569449750153797 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009569449750153797 cfl multiplier : 0.8361861331635204 [sph::Model][rank=0]
Info: Timestep 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.0905e+04 | 800 | 1 | 3.827e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 812.3142647617318 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.837655416864892, dt = 0.009569449750153797 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (1.1%)
patch tree reduce : 931.00 ns (0.2%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 371.82 us (96.0%)
LB move op cnt : 0
LB apply : 3.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.155499817624362e-17,7.325692099972196e-18,-3.555844924544993e-18)
sum a = (-4.726547701724592e-17,-1.0832295911672028e-17,-1.9943287279415198e-16)
sum e = 4.144510151379164
sum de = -4.607859233063394e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010024045343536951
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1133359445721541e-17,7.956745981510682e-18,-5.00672588924225e-18)
sum a = (7.360329384673167e-17,1.5032207103089114e-17,-6.323832043567381e-17)
sum e = 4.144509967518014
sum de = -1.0706496453294356e-18
Info: CFL hydro = 0.0050947294133162745 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0050947294133162745 cfl multiplier : 0.44539537772117344 [sph::Model][rank=0]
Info: Timestep 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.5073e+04 | 800 | 1 | 5.308e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 649.0738992467105 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.847224866615045, dt = 0.0050947294133162745 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.3%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 391.60 us (95.5%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1975887992501895e-17,8.340564541710621e-18,-4.595665572696413e-18)
sum a = (3.387488998041684e-17,2.569075490555844e-17,3.5947884662628414e-17)
sum e = 4.144510019169543
sum de = -1.1722935989999517e-18
Info: CFL hydro = 0.007206976155078779 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007206976155078779 cfl multiplier : 0.630263585147449 [sph::Model][rank=0]
Info: Timestep 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.0846e+04 | 800 | 1 | 3.838e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 477.9229755794912 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.852319596028361, dt = 0.007206976155078779 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (1.1%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 415.32 us (95.9%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2196817700324298e-17,8.722978887665925e-18,-4.164618606735287e-18)
sum a = (8.115234962588363e-17,-7.022119703138939e-17,1.3014332510693571e-16)
sum e = 4.144510070068608
sum de = -5.488773498207866e-19
Info: CFL hydro = 0.008612906113859644 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008612906113859644 cfl multiplier : 0.7535090567649659 [sph::Model][rank=0]
Info: Timestep 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.0924e+04 | 800 | 1 | 3.823e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 678.5794163479931 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.85952657218344, dt = 0.008612906113859644 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.23 us (1.0%)
patch tree reduce : 1243.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 387.58 us (96.0%)
LB move op cnt : 0
LB apply : 3.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2944983049865251e-17,7.049904422326094e-18,-2.6980572496396184e-18)
sum a = (1.0330822920628361e-16,-1.1491340463820216e-17,-9.270959454491867e-17)
sum e = 4.144510113120731
sum de = 7.521652571618187e-19
Info: CFL hydro = 0.009548752838388169 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009548752838388169 cfl multiplier : 0.8356727045099772 [sph::Model][rank=0]
Info: Timestep 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.1100e+04 | 800 | 1 | 3.791e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 817.8110292249992 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.8681394782973, dt = 0.009548752838388169 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (1.0%)
patch tree reduce : 1223.00 ns (0.3%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 412.39 us (96.1%)
LB move op cnt : 0
LB apply : 3.56 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4356686437137223e-17,7.399916524586472e-18,-4.216948990918644e-18)
sum a = (2.1077443040521126e-17,-1.3296972753853488e-17,-2.6563389805743744e-16)
sum e = 4.1445101461549445
sum de = 4.404571325722362e-19
Info: CFL hydro = 0.010172270362808848 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010172270362808848 cfl multiplier : 0.8904484696733181 [sph::Model][rank=0]
Info: Timestep 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.0856e+04 | 800 | 1 | 3.836e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 896.185443426951 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.8776882311356875, dt = 0.010172270362808848 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (1.1%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 404.87 us (95.8%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3756057197565805e-17,7.365244134529387e-18,-7.81885214268763e-18)
sum a = (-2.4258231701752697e-16,1.2563448678169917e-16,-3.130461622703891e-17)
sum e = 4.144510171013993
sum de = 6.098637220230962e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011684498910448458
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2665638029466076e-17,7.957804993086844e-18,-6.720007689120099e-18)
sum a = (-1.0034252872161677e-16,7.517769885781523e-17,3.273654029943361e-17)
sum e = 4.144509970019656
sum de = 2.303929616531697e-19
Info: CFL hydro = 0.005292557283419663 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005292557283419663 cfl multiplier : 0.4634828232244394 [sph::Model][rank=0]
Info: Timestep 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.5979e+04 | 800 | 1 | 5.007e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 731.426003040294 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.887860501498496, dt = 0.005292557283419663 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.28 us (1.0%)
patch tree reduce : 1132.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 398.31 us (95.9%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2781719740355814e-17,8.236102703695229e-18,-6.225724275008958e-18)
sum a = (2.1172105803466046e-16,-1.8265457208500208e-16,-2.7113692006787478e-17)
sum e = 4.144510023723263
sum de = -1.2197274440461925e-19
Info: CFL hydro = 0.007332916751601169 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007332916751601169 cfl multiplier : 0.6423218821496263 [sph::Model][rank=0]
Info: Timestep 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.0732e+04 | 800 | 1 | 3.859e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 493.76621319027464 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.893153058781915, dt = 0.007332916751601169 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (1.1%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 712.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 379.66 us (95.6%)
LB move op cnt : 0
LB apply : 3.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5200712812445184e-17,6.1648983946455655e-18,-6.691548947095518e-18)
sum a = (6.441860931543012e-17,-1.7611392936206322e-16,-1.2214791642655612e-17)
sum e = 4.144510074534474
sum de = 1.2739375526704677e-18
Info: CFL hydro = 0.008692025967755848 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008692025967755848 cfl multiplier : 0.7615479214330841 [sph::Model][rank=0]
Info: Timestep 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.0955e+04 | 800 | 1 | 3.818e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 691.4842493273482 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.900485975533516, dt = 0.008692025967755848 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.23 us (1.0%)
patch tree reduce : 1173.00 ns (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 392.14 us (96.0%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5032207103089114e-17,4.675705784640547e-18,-6.729181888851707e-18)
sum a = (5.476660228351438e-17,-4.137002393257486e-18,1.4973791790512344e-16)
sum e = 4.14451011877193
sum de = -7.995991022080595e-19
Info: CFL hydro = 0.009598108221681547 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009598108221681547 cfl multiplier : 0.8410319476220561 [sph::Model][rank=0]
Info: Timestep 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.1351e+04 | 800 | 1 | 3.747e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 835.1405318453906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.909178001501272, dt = 0.009598108221681547 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.05 us (1.2%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 403.62 us (95.7%)
LB move op cnt : 0
LB apply : 3.58 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.548305348989958e-17,5.648311377615489e-18,-4.49011546864143e-18)
sum a = (1.678167082333703e-17,-1.2164464604127933e-16,-7.023917097372069e-17)
sum e = 4.144510154370067
sum de = 1.0977546996415732e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010846239259909825
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5471819775942506e-17,5.029755002854246e-18,-5.56031395161843e-18)
sum a = (4.6145101278594004e-17,-1.0534377817530494e-16,-1.1585404095354093e-16)
sum e = 4.144509971554078
sum de = -1.2468324983583301e-18
Info: CFL hydro = 0.00510222742306729 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00510222742306729 cfl multiplier : 0.447010649207352 [sph::Model][rank=0]
Info: Timestep 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.6025e+04 | 800 | 1 | 4.992e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 692.1553486320781 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.918776109722954, dt = 0.00510222742306729 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.2%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 404.17 us (95.6%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5833170908228304e-17,4.3970160642222006e-18,-6.428680040500047e-18)
sum a = (7.267464015961377e-17,2.1796400733773693e-17,-1.678386139755866e-16)
sum e = 4.144510022623936
sum de = -1.328147661294743e-18
Info: CFL hydro = 0.007206357910895624 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007206357910895624 cfl multiplier : 0.6313404328049014 [sph::Model][rank=0]
Info: Timestep 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.0841e+04 | 800 | 1 | 3.839e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 478.5037894461013 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.923878337146021, dt = 0.007206357910895624 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.65 us (1.2%)
patch tree reduce : 1412.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 380.79 us (95.4%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6433425690667816e-17,4.939323605499822e-18,-7.792265686322561e-18)
sum a = (-4.568976140620071e-17,1.7522496813092697e-16,-1.1999778357517265e-16)
sum e = 4.144510075574545
sum de = 1.1655173354219173e-18
Info: CFL hydro = 0.008608452215479753 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008608452215479753 cfl multiplier : 0.7542269552032677 [sph::Model][rank=0]
Info: Timestep 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.1221e+04 | 800 | 1 | 3.770e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 688.169374567833 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.931084695056916, dt = 0.008608452215479753 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (1.1%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 371.50 us (95.5%)
LB move op cnt : 0
LB apply : 3.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5389813664055886e-17,6.881492327253e-18,-8.47340320925299e-18)
sum a = (8.088274049091393e-18,-5.512008981603023e-18,2.5567932966294456e-18)
sum e = 4.144510122561289
sum de = 1.7618285302889447e-19
Info: CFL hydro = 0.00953918468406514 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00953918468406514 cfl multiplier : 0.8361513034688451 [sph::Model][rank=0]
Info: Timestep 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.1237e+04 | 800 | 1 | 3.767e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 822.6748454759005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.939693147272396, dt = 0.00953918468406514 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.73 us (1.1%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 407.85 us (96.0%)
LB move op cnt : 0
LB apply : 3.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.597939641823618e-17,6.144092620254239e-18,-7.831770913738262e-18)
sum a = (-1.5805086623335626e-16,-4.826003515957864e-17,5.5256392212042695e-17)
sum e = 4.1445101602595305
sum de = -1.328147661294743e-18
Info: CFL hydro = 0.010158776869799813 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010158776869799813 cfl multiplier : 0.8907675356458968 [sph::Model][rank=0]
Info: Timestep 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.1224e+04 | 800 | 1 | 3.769e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 911.0624211121611 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.949232331956462, dt = 0.010158776869799813 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (1.1%)
patch tree reduce : 882.00 ns (0.2%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 361.87 us (96.1%)
LB move op cnt : 0
LB apply : 2.94 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3452559692158928e-17,5.486171439501759e-18,-7.135467876965789e-18)
sum a = (8.043938324674151e-17,-2.6355790771817064e-17,-3.8753317494841036e-17)
sum e = 4.144510189197445
sum de = 1.3010426069826053e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010772364143435926
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.49233336919885e-17,5.507702724586146e-18,-7.671690489849996e-18)
sum a = (-8.743124681362273e-17,6.029958086450394e-17,-1.6530185413551391e-16)
sum e = 4.144509974494071
sum de = 3.720168704340887e-18
Info: CFL hydro = 0.005286487170856877 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005286487170856877 cfl multiplier : 0.4635891785486323 [sph::Model][rank=0]
Info: Timestep 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.5974e+04 | 800 | 1 | 5.008e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 730.2304426644441 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.959391108826262, dt = 0.005286487170856877 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (1.2%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 380.12 us (95.5%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3514251504639844e-17,6.348546214272939e-18,-9.251899586478036e-18)
sum a = (1.5268264879040374e-16,-1.6626795353582206e-16,-9.742475874983343e-17)
sum e = 4.14451003187187
sum de = -1.6195269951502222e-18
Info: CFL hydro = 0.007325149507284264 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007325149507284264 cfl multiplier : 0.6423927856990882 [sph::Model][rank=0]
Info: Timestep 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.1610e+04 | 800 | 1 | 3.702e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 514.0884331573543 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.964677595997118, dt = 0.007325149507284264 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.76 us (1.2%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 373.08 us (95.5%)
LB move op cnt : 0
LB apply : 3.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (71.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5299171634564766e-17,4.437878698741048e-18,-9.65219426048168e-18)
sum a = (-1.3623649155725125e-16,-2.3926312900034428e-17,-1.3446306258056157e-16)
sum e = 4.144510086364553
sum de = 1.599198204416119e-18
Info: CFL hydro = 0.008684699725989588 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008684699725989588 cfl multiplier : 0.7615951904660587 [sph::Model][rank=0]
Info: Timestep 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.1454e+04 | 800 | 1 | 3.729e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 707.18659149626 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.972002745504403, dt = 0.008684699725989588 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (1.1%)
patch tree reduce : 1153.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 404.19 us (95.8%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.292654103611906e-17,4.807467887928696e-18,-1.0949313765391522e-17)
sum a = (2.186829650309895e-17,-4.0890718803739815e-17,3.725698679575913e-17)
sum e = 4.144510133136084
sum de = -1.8092623753351855e-18
Info: CFL hydro = 0.00959251097152034 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00959251097152034 cfl multiplier : 0.8410634603107058 [sph::Model][rank=0]
Info: Timestep 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.9410e+04 | 800 | 1 | 4.122e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 758.5627621888666 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.980687445230393, dt = 0.00959251097152034 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.36 us (1.0%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 402.99 us (96.2%)
LB move op cnt : 0
LB apply : 3.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3882810936714762e-17,4.3236692735108225e-18,-1.0134495046371944e-17)
sum a = (1.350801679339367e-16,2.117570059193231e-16,-1.892656127487386e-17)
sum e = 4.144510169069022
sum de = 2.053207864144424e-18
Info: CFL hydro = 0.01020021407235144 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01020021407235144 cfl multiplier : 0.8940423068738038 [sph::Model][rank=0]
Info: Timestep 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.1304e+04 | 800 | 1 | 3.755e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 919.6246498077232 (tsim/hr) [sph::Model][rank=0]
---------------- t = 7.990279956201913, dt = 0.009720043798086664 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.56 us (1.1%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 399.17 us (95.9%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5666537484531746e-17,7.503746466191778e-18,-1.0362539439700492e-17)
sum a = (-4.9440324039334945e-17,7.00983750921254e-17,-4.678317623135566e-17)
sum e = 4.144510174635002
sum de = 1.2874900798265365e-19
Info: CFL hydro = 0.010608574831615003 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010608574831615003 cfl multiplier : 0.9293615379158693 [sph::Model][rank=0]
Info: Timestep 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.1342e+04 | 800 | 1 | 3.748e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 933.5028831725549 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 1064 [SPH][rank=0]
Info: time since start : 901.4488768110001 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.1509566833591326 max=0.15132730413448656 delta=0.00037062077535396365
Number of particle pairs: 319600
Distance min=0.161699 max=2.296730 mean=0.934861
---------------- t = 8, dt = 0.010608574831615003 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.44 us (1.5%)
patch tree reduce : 1242.00 ns (0.2%)
gen split merge : 862.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.1%)
LB compute : 622.77 us (96.4%)
LB move op cnt : 0
LB apply : 4.35 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.21 us (80.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4406489235680237e-17,7.544562293569139e-18,-1.1092730846910133e-17)
sum a = (2.540317182825741e-18,-4.6825115430128725e-17,-6.51735148933453e-17)
sum e = 4.144510211883744
sum de = -9.317362419797304e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011512506256853797
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.465887334258244e-17,6.935694997095869e-18,-1.11632458055615e-17)
sum a = (-7.626942862587662e-17,2.5906442213534208e-17,-5.164512763197615e-17)
sum e = 4.144509976894362
sum de = 1.917682592583736e-18
Info: CFL hydro = 0.005440767652189034 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005440767652189034 cfl multiplier : 0.47645384597195645 [sph::Model][rank=0]
Info: Timestep 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.2896e+04 | 800 | 1 | 6.203e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 615.6499588780339 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.010608574831615, dt = 0.005440767652189034 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.93 us (1.1%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 421.26 us (95.9%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3901721021875832e-17,7.56066395024094e-18,-1.1224937618042416e-17)
sum a = (9.825755141118433e-18,1.907649391048757e-16,9.659795740259298e-17)
sum e = 4.144510038000211
sum de = 6.810144895924575e-19
Info: CFL hydro = 0.0074324797164565136 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0074324797164565136 cfl multiplier : 0.650969230647971 [sph::Model][rank=0]
Info: Timestep 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.0769e+04 | 800 | 1 | 3.852e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 508.4991160643453 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.016049342483804, dt = 0.0074324797164565136 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (0.9%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 396.16 us (96.2%)
LB move op cnt : 0
LB apply : 3.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4151483928854717e-17,9.343079898096265e-18,-9.987099357826871e-18)
sum a = (8.52084692786502e-17,1.3135956187135465e-17,7.486146980992366e-17)
sum e = 4.144510090374959
sum de = 6.403569081242511e-19
Info: CFL hydro = 0.008759783344473991 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008759783344473991 cfl multiplier : 0.7673128204319806 [sph::Model][rank=0]
Info: Timestep 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.1171e+04 | 800 | 1 | 3.779e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 708.0940335999421 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.02348182220026, dt = 0.008759783344473991 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.69 us (1.1%)
patch tree reduce : 1523.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.3%)
LB compute : 422.14 us (95.8%)
LB move op cnt : 0
LB apply : 4.01 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5162892642123044e-17,8.823707856147665e-18,-9.51958962864675e-18)
sum a = (1.1334368034126738e-16,-1.265515322977281e-16,5.767238962707685e-17)
sum e = 4.144510133141464
sum de = -3.8285889215894375e-19
Info: CFL hydro = 0.009645030362243647 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009645030362243647 cfl multiplier : 0.8448752136213203 [sph::Model][rank=0]
Info: Timestep 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.0815e+04 | 800 | 1 | 3.843e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 820.5060833748145 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.032241605544733, dt = 0.009645030362243647 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (1.1%)
patch tree reduce : 1392.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 406.63 us (95.6%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6315097236986666e-17,6.813247514963791e-18,-9.199288359445752e-18)
sum a = (-2.9609074333784935e-17,1.1359531553390579e-17,-8.900696242466795e-17)
sum e = 4.144510164146454
sum de = 2.219226321806267e-19
Info: CFL hydro = 0.010236566432663482 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010236566432663482 cfl multiplier : 0.8965834757475468 [sph::Model][rank=0]
Info: Timestep 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.1125e+04 | 800 | 1 | 3.787e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 916.8642955354993 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.041886635906977, dt = 0.010236566432663482 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (1.0%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 1082.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 444.38 us (96.1%)
LB move op cnt : 0
LB apply : 3.46 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5552702516433422e-17,7.587624863737911e-18,-1.0452034694225162e-17)
sum a = (6.03085678356696e-17,1.4498792918694175e-17,-7.030807108599073e-17)
sum e = 4.144510185083399
sum de = 3.3542504711270293e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011171380856791042
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.582156273713933e-17,7.607471091728738e-18,-1.0585154204616457e-17)
sum a = (-3.307205388961814e-17,1.5538585482560702e-16,-3.4527943218454587e-17)
sum e = 4.144509977885065
sum de = 6.462861387550312e-19
Info: CFL hydro = 0.0053170342720836984 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0053170342720836984 cfl multiplier : 0.4655278252491823 [sph::Model][rank=0]
Info: Timestep 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.5346e+04 | 800 | 1 | 5.213e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 706.8870070871915 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.05212320233964, dt = 0.0053170342720836984 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.28 us (1.1%)
patch tree reduce : 1492.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 388.87 us (95.8%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.530705863790546e-17,9.425086009982887e-18,-1.0697865801319074e-17)
sum a = (-1.175016523339114e-16,-1.0735685971641214e-17,-8.721555950564697e-17)
sum e = 4.1445100332204765
sum de = -2.236166980751353e-19
Info: CFL hydro = 0.0073533126648083705 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0073533126648083705 cfl multiplier : 0.6436852168327882 [sph::Model][rank=0]
Info: Timestep 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.1043e+04 | 800 | 1 | 3.802e-02 | 0.1% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 503.49896750394845 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.057440236611724, dt = 0.0073533126648083705 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.59 us (0.8%)
patch tree reduce : 912.00 ns (0.2%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 417.15 us (96.7%)
LB move op cnt : 0
LB apply : 2.96 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3938792277934167e-17,8.784015400166013e-18,-1.1651233659142531e-17)
sum a = (-3.068751087366379e-17,-8.052026598723242e-17,-9.052875620871922e-18)
sum e = 4.1445100827789085
sum de = 7.030373462210693e-19
Info: CFL hydro = 0.008713202724798145 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008713202724798145 cfl multiplier : 0.7624568112218588 [sph::Model][rank=0]
Info: Timestep 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.1181e+04 | 800 | 1 | 3.777e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 700.884376372 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.064793549276532, dt = 0.008713202724798145 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (1.0%)
patch tree reduce : 1332.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 742.00 ns (0.2%)
LB compute : 375.44 us (95.9%)
LB move op cnt : 0
LB apply : 3.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4102055587443605e-17,7.847872570410065e-18,-1.1159196987822805e-17)
sum a = (-4.151980678533581e-17,1.2934947598730268e-16,2.1263173777944705e-17)
sum e = 4.1445101238712265
sum de = -5.996993266560446e-19
Info: CFL hydro = 0.009622280173349061 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009622280173349061 cfl multiplier : 0.8416378741479059 [sph::Model][rank=0]
Info: Timestep 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.0921e+04 | 800 | 1 | 3.824e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 820.3165659036176 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.07350675200133, dt = 0.009622280173349061 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (0.9%)
patch tree reduce : 531.00 ns (0.1%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 681.00 ns (0.2%)
LB compute : 368.62 us (96.5%)
LB move op cnt : 0
LB apply : 3.29 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3553850346338521e-17,9.683086973863626e-18,-1.0950249908221278e-17)
sum a = (1.5469573033151093e-17,-4.618853830589468e-17,6.075791639395245e-17)
sum e = 4.144510154715432
sum de = 7.318364664277155e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010564075647320465
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3905091136062952e-17,9.056245735059042e-18,-1.0437618094646921e-17)
sum a = (3.97703430650879e-17,-8.548406972773036e-17,4.556993512399195e-17)
sum e = 4.1445099789689515
sum de = -6.979551485375435e-19
Info: CFL hydro = 0.005111368519100337 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005111368519100337 cfl multiplier : 0.4472126247159687 [sph::Model][rank=0]
Info: Timestep 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.5777e+04 | 800 | 1 | 5.071e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 683.1619967327663 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.08312903217468, dt = 0.005111368519100337 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.19 us (1.0%)
patch tree reduce : 1062.00 ns (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 394.12 us (96.1%)
LB move op cnt : 0
LB apply : 3.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.443831809189194e-17,8.539120435901857e-18,-1.0519998663665443e-17)
sum a = (2.592022223598822e-16,1.1451498224985803e-16,-4.40361587117198e-17)
sum e = 4.144510028073684
sum de = -1.5212711732687234e-18
Info: CFL hydro = 0.0072151271141360895 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0072151271141360895 cfl multiplier : 0.6314750831439792 [sph::Model][rank=0]
Info: Timestep 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.1369e+04 | 800 | 1 | 3.744e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 491.51489465579823 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.088240400693781, dt = 0.0072151271141360895 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (1.1%)
patch tree reduce : 1193.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 397.14 us (96.0%)
LB move op cnt : 0
LB apply : 3.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6483602946342736e-17,9.62542057555066e-18,-1.1058468019341066e-17)
sum a = (-4.580359637429904e-17,2.297968527058521e-17,1.1346650228053136e-16)
sum e = 4.144510076927559
sum de = 1.6398557858843255e-18
Info: CFL hydro = 0.00861333369732074 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00861333369732074 cfl multiplier : 0.7543167220959862 [sph::Model][rank=0]
Info: Timestep 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.1329e+04 | 800 | 1 | 3.751e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 692.5173929045792 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.095455527807918, dt = 0.00861333369732074 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (1.0%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 384.81 us (95.9%)
LB move op cnt : 0
LB apply : 3.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5201461726708988e-17,9.682525288165773e-18,-9.512334521716141e-18)
sum a = (1.2070700538299576e-16,-1.1490142200998127e-16,2.51335626932877e-18)
sum e = 4.144510118910635
sum de = -1.2536087619363645e-18
Info: CFL hydro = 0.009542188840614177 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009542188840614177 cfl multiplier : 0.8362111480639909 [sph::Model][rank=0]
Info: Timestep 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.1192e+04 | 800 | 1 | 3.775e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 821.41223322328 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.104068861505239, dt = 0.009542188840614177 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.48 us (1.1%)
patch tree reduce : 982.00 ns (0.2%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1323.00 ns (0.3%)
LB compute : 382.64 us (95.6%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7007842931006067e-17,8.326428784981305e-18,-1.00725223910421e-17)
sum a = (-6.577264630438911e-17,8.149984584428904e-17,8.843479192712111e-17)
sum e = 4.144510151915031
sum de = 8.131516293641283e-20
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01046190993390265
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6339811407692224e-17,8.714553602198121e-18,-9.356185897712849e-18)
sum a = (-1.8027265026897103e-16,-2.4177948092672825e-16,-1.377702679695234e-16)
sum e = 4.144509980417489
sum de = -1.4230153513872246e-18
Info: CFL hydro = 0.005080590819424313 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005080590819424313 cfl multiplier : 0.4454037160213303 [sph::Model][rank=0]
Info: Timestep 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.5757e+04 | 800 | 1 | 5.077e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 676.5845146219056 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.113611050345853, dt = 0.005080590819424313 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.3%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 379.46 us (95.4%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4900398192659477e-17,6.211682132562619e-18,-1.1382373438436623e-17)
sum a = (7.187180406881507e-17,-2.5858511700650704e-17,-1.3138951844190684e-16)
sum e = 4.144510028515744
sum de = 2.303929616531697e-19
Info: CFL hydro = 0.00718787122076679 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00718787122076679 cfl multiplier : 0.6302691440142202 [sph::Model][rank=0]
Info: Timestep 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.0919e+04 | 800 | 1 | 3.824e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 478.26077844121875 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.118691641165277, dt = 0.00718787122076679 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.2%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 387.98 us (95.6%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6020773931311395e-17,6.508064952463352e-18,-1.228855969764038e-17)
sum a = (-6.120127363812487e-17,-6.76119797362936e-17,7.719808231299452e-18)
sum e = 4.144510078206102
sum de = -4.87890977618477e-19
Info: CFL hydro = 0.008592047518992521 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008592047518992521 cfl multiplier : 0.7535127626761469 [sph::Model][rank=0]
Info: Timestep 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.0811e+04 | 800 | 1 | 3.844e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 673.1450808255374 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.125879512386044, dt = 0.008592047518992521 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.3%)
patch tree reduce : 1452.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 386.53 us (95.5%)
LB move op cnt : 0
LB apply : 3.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4964804819346685e-17,5.667970377040364e-18,-1.1856436167425035e-17)
sum a = (1.8044639837817375e-16,3.822458402459488e-17,-5.2705590229523687e-17)
sum e = 4.144510122287255
sum de = 7.928228386300251e-19
Info: CFL hydro = 0.009528867345467052 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009528867345467052 cfl multiplier : 0.8356751751174313 [sph::Model][rank=0]
Info: Timestep 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.0749e+04 | 800 | 1 | 3.856e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 802.2316838984448 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.134471559905037, dt = 0.009528867345467052 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.18 us (1.0%)
patch tree reduce : 1282.00 ns (0.3%)
gen split merge : 1072.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 388.08 us (95.7%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7583009085608122e-17,6.3914215558757606e-18,-1.2352591867195688e-17)
sum a = (-5.903241793014629e-17,3.480354366753474e-17,1.2800143031245412e-16)
sum e = 4.144510158271719
sum de = 6.776263578034403e-20
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010429664774502509
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.671876202517743e-17,6.856497313698516e-18,-1.17407289136672e-17)
sum a = (-1.8502975367265886e-16,2.5660199203595203e-16,1.300624423664448e-16)
sum e = 4.144509982032145
sum de = 5.149960319306146e-19
Info: CFL hydro = 0.0050782915220484 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0050782915220484 cfl multiplier : 0.4452250583724771 [sph::Model][rank=0]
Info: Timestep 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.5504e+04 | 800 | 1 | 5.160e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 664.8220663532331 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.144000427250505, dt = 0.0050782915220484 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.56 us (1.1%)
patch tree reduce : 1572.00 ns (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.2%)
LB compute : 389.62 us (95.7%)
LB move op cnt : 0
LB apply : 3.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5144544242659828e-17,8.941942695545841e-18,-1.0940139565659914e-17)
sum a = (8.901894505288882e-17,4.134605867613311e-17,1.1455991710568632e-16)
sum e = 4.144510031533603
sum de = -6.369687763352339e-19
Info: CFL hydro = 0.0071881722741270375 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0071881722741270375 cfl multiplier : 0.6301500389149847 [sph::Model][rank=0]
Info: Timestep 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.0232e+04 | 800 | 1 | 3.954e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 462.352518129169 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.149078718772554, dt = 0.0071881722741270375 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.3%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 388.90 us (95.5%)
LB move op cnt : 0
LB apply : 3.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6392235406158557e-17,8.464509852370308e-18,-9.985648336440748e-18)
sum a = (-1.0184634856333672e-16,1.150931440615153e-16,8.469022060809732e-17)
sum e = 4.144510083633906
sum de = -2.981555974335137e-19
Info: CFL hydro = 0.008596344388047909 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008596344388047909 cfl multiplier : 0.7534333592766563 [sph::Model][rank=0]
Info: Timestep 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.1019e+04 | 800 | 1 | 3.806e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 679.888296638493 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.15626689104668, dt = 0.008596344388047909 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.2%)
patch tree reduce : 1743.00 ns (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 395.98 us (95.5%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5030709274561505e-17,1.0009894435731428e-17,-9.492488293725314e-18)
sum a = (-1.1597985854986013e-16,3.476579838863898e-16,-1.1119878988973054e-16)
sum e = 4.1445101303552825
sum de = -9.486769009248164e-19
Info: CFL hydro = 0.009537922769609788 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009537922769609788 cfl multiplier : 0.8356222395177708 [sph::Model][rank=0]
Info: Timestep 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.0498e+04 | 800 | 1 | 3.903e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 792.9486876492272 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.164863235434728, dt = 0.009537922769609788 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.93 us (1.2%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 405.60 us (95.8%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.37395810837621e-17,1.4701280612770386e-17,-1.1247194413819864e-17)
sum a = (-1.0000851295995985e-16,-1.2186332900631032e-17,4.769086031908702e-17)
sum e = 4.144510168549479
sum de = 1.4704491964334654e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010194282867299091
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3732091941124054e-17,1.2280134412172577e-17,-1.0692248944340538e-17)
sum a = (-1.6672179557968775e-16,6.85705899939637e-17,-1.8369069496897596e-16)
sum e = 4.144509983463924
sum de = -5.421010862427522e-19
Info: CFL hydro = 0.005085240480948147 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005085240480948147 cfl multiplier : 0.44520741317259027 [sph::Model][rank=0]
Info: Timestep 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.5738e+04 | 800 | 1 | 5.083e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 675.499835831311 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.174401158204338, dt = 0.005085240480948147 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.80 us (1.2%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 385.22 us (95.5%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2584755288975163e-17,1.3133896672910003e-17,-1.2284440669189454e-17)
sum a = (-1.1624609757064272e-16,1.220490597437339e-16,-1.639912541738556e-16)
sum e = 4.144510035515084
sum de = 9.0801931945661e-19
Info: CFL hydro = 0.0072003204806199836 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0072003204806199836 cfl multiplier : 0.6301382754483935 [sph::Model][rank=0]
Info: Timestep 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.0857e+04 | 800 | 1 | 3.836e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 477.29165960439974 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.179486398685286, dt = 0.0072003204806199836 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (1.2%)
patch tree reduce : 1332.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 387.31 us (95.7%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1907736794495661e-17,1.4358184265664832e-17,-1.3708126684682301e-17)
sum a = (-1.4050268166101505e-16,3.549254479023512e-17,-7.874833483907037e-17)
sum e = 4.144510090024014
sum de = 1.1926223897340549e-18
Info: CFL hydro = 0.008614535248307246 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008614535248307246 cfl multiplier : 0.7534255169655957 [sph::Model][rank=0]
Info: Timestep 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.0244e+04 | 800 | 1 | 3.952e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 655.9356556327091 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.186686719165907, dt = 0.008614535248307246 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.77 us (0.6%)
patch tree reduce : 1383.00 ns (0.2%)
gen split merge : 781.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.1%)
LB compute : 805.40 us (97.8%)
LB move op cnt : 0
LB apply : 3.49 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0528236720567295e-17,1.4748743054239014e-17,-1.4060865302934343e-17)
sum a = (8.590196388693341e-17,4.543213489945187e-17,1.6862104215269662e-16)
sum e = 4.144510138298182
sum de = -1.0842021724855044e-18
Info: CFL hydro = 0.0095616961627643 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0095616961627643 cfl multiplier : 0.8356170113103971 [sph::Model][rank=0]
Info: Timestep 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.9679e+04 | 800 | 1 | 4.065e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 762.8597318852816 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.195301254414215, dt = 0.0095616961627643 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (1.1%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 394.44 us (95.7%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2388539751858316e-17,1.4705306026938338e-17,-1.1232965042807574e-17)
sum a = (3.785312254974772e-17,9.087026111301418e-17,-1.6325731819532693e-16)
sum e = 4.14451017656438
sum de = 4.607859233063394e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010340585371166468
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1844827996336062e-17,1.4591471058840015e-17,-1.2915775393576867e-17)
sum a = (4.666634560620212e-17,1.420540575584866e-17,-7.724601282587802e-17)
sum e = 4.1445099844359765
sum de = 3.3881317890172014e-20
Info: CFL hydro = 0.005099568676577989 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005099568676577989 cfl multiplier : 0.44520567043679904 [sph::Model][rank=0]
Info: Timestep 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.6346e+04 | 800 | 1 | 4.894e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 703.3323015417395 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.20486295057698, dt = 0.005099568676577989 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.88 us (1.1%)
patch tree reduce : 1463.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 424.54 us (95.9%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.219382204326908e-17,1.4311751581308938e-17,-1.3001151619650608e-17)
sum a = (-3.3972548400416982e-16,2.2229572743958367e-16,-1.9118283326407876e-16)
sum e = 4.144510038557129
sum de = 7.386127300057499e-19
Info: CFL hydro = 0.007215766282330665 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007215766282330665 cfl multiplier : 0.6301371136245327 [sph::Model][rank=0]
Info: Timestep 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.1431e+04 | 800 | 1 | 3.733e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 491.8007321614401 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.209962519253557, dt = 0.007215766282330665 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (1.1%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 397.08 us (95.9%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.073845220258456e-18,1.6588825400407304e-17,-1.4838987223027487e-17)
sum a = (1.3461883674743295e-16,-2.5409163142367848e-17,2.813820671967239e-17)
sum e = 4.1445100936659065
sum de = -4.811147140404426e-19
Info: CFL hydro = 0.008624618889243178 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008624618889243178 cfl multiplier : 0.7534247424163553 [sph::Model][rank=0]
Info: Timestep 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.1561e+04 | 800 | 1 | 3.710e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 700.1056142294734 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.217178285535887, dt = 0.008624618889243178 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.11 us (1.0%)
patch tree reduce : 1052.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 383.52 us (95.9%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1798395311980166e-17,1.569761742647964e-17,-1.374557239787254e-17)
sum a = (-9.424337095719082e-18,-7.843229301974476e-17,-3.889036880511731e-17)
sum e = 4.144510140759169
sum de = 3.9979955110402976e-19
Info: CFL hydro = 0.009562601681642722 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009562601681642722 cfl multiplier : 0.835616494944237 [sph::Model][rank=0]
Info: Timestep 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.1361e+04 | 800 | 1 | 3.745e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 829.0523238515847 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.22580290442513, dt = 0.009562601681642722 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (1.1%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 367.25 us (95.7%)
LB move op cnt : 0
LB apply : 3.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1064459333451503e-17,1.4412106092658774e-17,-1.419866552747442e-17)
sum a = (-2.0686809360520564e-16,6.1914240017267e-17,-2.2015533047362966e-16)
sum e = 4.1445101759919725
sum de = -1.5246593050577406e-18
Info: CFL hydro = 0.010187606532214887 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010187606532214887 cfl multiplier : 0.8904109966294914 [sph::Model][rank=0]
Info: Timestep 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.1127e+04 | 800 | 1 | 3.787e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 909.1128197386113 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.235365506106772, dt = 0.010187606532214887 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.48 us (1.1%)
patch tree reduce : 1352.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 373.64 us (95.5%)
LB move op cnt : 0
LB apply : 3.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.97294125246546e-18,1.5998306503397254e-17,-1.7486399145577308e-17)
sum a = (6.603626412524839e-17,-8.546609578539905e-18,6.04201560609765e-17)
sum e = 4.144510199911082
sum de = -1.145188544687814e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010560702708378512
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.286536871179006e-18,1.5602130857844535e-17,-1.594438467640331e-17)
sum a = (-4.438964624423565e-17,-1.2464329875355358e-16,4.250088447092005e-17)
sum e = 4.144509985400079
sum de = -3.672734859294646e-18
Info: CFL hydro = 0.005302861072737593 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005302861072737593 cfl multiplier : 0.4634703322098305 [sph::Model][rank=0]
Info: Timestep 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.5863e+04 | 800 | 1 | 5.043e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 727.241712093571 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.245553112638987, dt = 0.005302861072737593 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (1.1%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 396.82 us (95.8%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.771283857681332e-18,1.4414352835450187e-17,-1.5656801599102284e-17)
sum a = (7.024216663077591e-17,-1.6613015331128198e-16,-1.403690004649259e-17)
sum e = 4.144510042971942
sum de = -6.098637220230962e-19
Info: CFL hydro = 0.007347639159538944 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007347639159538944 cfl multiplier : 0.6423135548065537 [sph::Model][rank=0]
Info: Timestep 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.0718e+04 | 800 | 1 | 3.861e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 494.38338183830587 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.250855973711724, dt = 0.007347639159538944 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.2%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 392.03 us (95.5%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.264069443264863e-18,1.2969697220570809e-17,-1.6306859180084813e-17)
sum a = (1.9052378871193058e-17,1.588604425525292e-16,2.6513062767216064e-17)
sum e = 4.144510094524804
sum de = 6.539094352803199e-19
Info: CFL hydro = 0.008706339138841846 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008706339138841846 cfl multiplier : 0.7615423698710359 [sph::Model][rank=0]
Info: Timestep 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.1466e+04 | 800 | 1 | 3.727e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 709.7466478204125 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.258203612871263, dt = 0.008706339138841846 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.73 us (1.2%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 372.94 us (95.4%)
LB move op cnt : 0
LB apply : 3.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.30451081351032e-18,1.5443361033917926e-17,-1.583579210815162e-17)
sum a = (1.0361378622591596e-16,2.848439233811614e-17,6.133607820560973e-17)
sum e = 4.144510136081803
sum de = -2.371692252312041e-20
Info: CFL hydro = 0.009609653082559615 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009609653082559615 cfl multiplier : 0.8410282465806906 [sph::Model][rank=0]
Info: Timestep 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.1007e+04 | 800 | 1 | 3.808e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 823.0198818306181 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.266909952010105, dt = 0.009609653082559615 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (0.9%)
patch tree reduce : 1443.00 ns (0.3%)
gen split merge : 771.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 548.18 us (96.5%)
LB move op cnt : 0
LB apply : 4.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (77.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0598634661364943e-17,1.55021508036266e-17,-1.5061414759377498e-17)
sum a = (-1.2928057587503264e-16,4.5854522544237755e-17,1.1745821530661072e-16)
sum e = 4.144510165188682
sum de = -1.102836897325099e-18
Info: CFL hydro = 0.010210671585829775 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010210671585829775 cfl multiplier : 0.8940188310537938 [sph::Model][rank=0]
Info: Timestep 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.0929e+04 | 800 | 1 | 3.823e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 905.0291282356263 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.276519605092664, dt = 0.010210671585829775 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.77 us (1.1%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 397.35 us (95.6%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.308454842649991e-18,1.5879603592584198e-17,-1.3376357665816793e-17)
sum a = (1.1291230572531584e-16,1.216401525556965e-16,-3.8730850066926895e-17)
sum e = 4.1445101835978955
sum de = 8.343274530454858e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010822017226713799
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.58610257670091e-18,1.621174706858161e-17,-1.438289843637039e-17)
sum a = (9.175098428724859e-17,1.5707577986188246e-16,6.7679382020036035e-18)
sum e = 4.144509985742643
sum de = -2.1455344553951428e-18
Info: CFL hydro = 0.0053063173834559905 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0053063173834559905 cfl multiplier : 0.46467294368459794 [sph::Model][rank=0]
Info: Timestep 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.5881e+04 | 800 | 1 | 5.038e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 729.678950249856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.286730276678494, dt = 0.0053063173834559905 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (1.1%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 399.04 us (95.8%)
LB move op cnt : 0
LB apply : 3.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.955317308756655e-18,1.720817749657384e-17,-1.4213643812750512e-17)
sum a = (-1.3825556441246886e-16,5.059964331970471e-17,-9.168732657482518e-17)
sum e = 4.144510038705323
sum de = 1.4314856808597676e-19
Info: CFL hydro = 0.007343550979674647 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007343550979674647 cfl multiplier : 0.643115295789732 [sph::Model][rank=0]
Info: Timestep 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.0807e+04 | 800 | 1 | 3.845e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 496.84719199113994 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.29203659406195, dt = 0.007343550979674647 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.2%)
patch tree reduce : 1423.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 395.23 us (95.5%)
LB move op cnt : 0
LB apply : 3.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.247043873018001e-18,1.732163800754026e-17,-1.4916874306463182e-17)
sum a = (-3.219732202949418e-17,-1.6401521943029735e-16,6.388762910239254e-17)
sum e = 4.14451008518915
sum de = -3.8450001849424896e-19
Info: CFL hydro = 0.008702110171593813 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008702110171593813 cfl multiplier : 0.7620768638598214 [sph::Model][rank=0]
Info: Timestep 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.1231e+04 | 800 | 1 | 3.768e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 701.6026864681246 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.299380145041624, dt = 0.008702110171593813 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.74 us (1.2%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 1072.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 380.77 us (95.6%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.339160327465986e-18,1.5137429557153682e-17,-1.3804736624713114e-17)
sum a = (1.4965104385052207e-16,2.0121828439906253e-16,-4.617805350620142e-18)
sum e = 4.144510122818558
sum de = -1.1087661279558791e-18
Info: CFL hydro = 0.009609425888865701 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009609425888865701 cfl multiplier : 0.8413845759065476 [sph::Model][rank=0]
Info: Timestep 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.1459e+04 | 800 | 1 | 3.728e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 840.3431668377809 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.308082255213218, dt = 0.009609425888865701 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 20.44 us (4.8%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 393.40 us (92.2%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0548831862821927e-17,1.8617634141054395e-17,-1.4294526553241428e-17)
sum a = (-1.2122824971060388e-16,1.209646318897446e-16,6.055421171419756e-17)
sum e = 4.144510150158686
sum de = -1.1045309632196076e-18
Info: CFL hydro = 0.010215704702761508 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010215704702761508 cfl multiplier : 0.8942563839376984 [sph::Model][rank=0]
Info: Timestep 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.1095e+04 | 800 | 1 | 3.792e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 912.1812797784235 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.317691681102083, dt = 0.010215704702761508 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (1.0%)
patch tree reduce : 882.00 ns (0.2%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 364.15 us (95.9%)
LB move op cnt : 0
LB apply : 3.02 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.107745819950316e-18,1.9670794824529838e-17,-1.3225076984528232e-17)
sum a = (-3.5288840110480224e-17,7.380699852648656e-17,-1.1288534481181888e-16)
sum e = 4.144510169423724
sum de = -6.776263578034403e-20
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011095696340891583
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.489692094490743e-18,1.914393363994319e-17,-1.4335716837750688e-17)
sum a = (-1.3913029627259283e-16,3.9848230148523595e-17,-4.111689091140885e-17)
sum e = 4.144509987305702
sum de = -1.2231155758352097e-18
Info: CFL hydro = 0.005303592775845532 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005303592775845532 cfl multiplier : 0.4647521279792328 [sph::Model][rank=0]
Info: Timestep 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.5935e+04 | 800 | 1 | 5.020e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 732.5304258301051 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.327907385804844, dt = 0.005303592775845532 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 20.16 us (4.8%)
patch tree reduce : 1403.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 389.79 us (92.1%)
LB move op cnt : 0
LB apply : 3.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.127042591497985e-18,1.9222382409076737e-17,-1.410804690155404e-17)
sum a = (2.0646068424569583e-17,1.2276202612287602e-17,-2.917021057519535e-17)
sum e = 4.144510035812292
sum de = 1.6601845766184287e-19
Info: CFL hydro = 0.007335694853634722 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007335694853634722 cfl multiplier : 0.6431680853194885 [sph::Model][rank=0]
Info: Timestep 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.0634e+04 | 800 | 1 | 3.877e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 492.4646685245538 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.33321097858069, dt = 0.007335694853634722 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.3%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 381.39 us (95.4%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.731041945256522e-18,1.9319366806239456e-17,-1.4312500495572742e-17)
sum a = (-1.0252336705781623e-16,3.362325478777844e-17,-3.952320135803233e-17)
sum e = 4.144510080276819
sum de = 4.980553729855286e-19
Info: CFL hydro = 0.008687034681402948 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008687034681402948 cfl multiplier : 0.762112056879659 [sph::Model][rank=0]
Info: Timestep 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.0744e+04 | 800 | 1 | 3.857e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 684.7565393703937 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.340546673434325, dt = 0.008687034681402948 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.28 us (1.0%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 397.87 us (95.9%)
LB move op cnt : 0
LB apply : 3.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.382153741861177e-18,1.967645848864986e-17,-1.472440334066536e-17)
sum a = (-4.839783538411872e-17,5.686955353627815e-17,-1.2346900118790772e-16)
sum e = 4.144510118344997
sum de = 1.060485249962384e-18
Info: CFL hydro = 0.009585810795483833 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009585810795483833 cfl multiplier : 0.8414080379197726 [sph::Model][rank=0]
Info: Timestep 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.1690e+04 | 800 | 1 | 3.688e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 847.9040520041677 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.349233708115728, dt = 0.009585810795483833 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.33 us (1.1%)
patch tree reduce : 872.00 ns (0.2%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 368.39 us (95.7%)
LB move op cnt : 0
LB apply : 3.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (66.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.116289178210487e-18,2.0469277851170174e-17,-1.6061964215820657e-17)
sum a = (1.6679818483459584e-16,-1.2953221106767105e-16,7.249490073630063e-18)
sum e = 4.144510148859384
sum de = -1.3484764520288461e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01060719004898441
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.190606689638415e-18,1.957240621312249e-17,-1.5501776346494698e-17)
sum a = (-1.378361724247382e-16,-1.2358882747011649e-16,5.665536405682999e-17)
sum e = 4.144509988988329
sum de = 7.792703114739563e-19
Info: CFL hydro = 0.005092906290587152 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005092906290587152 cfl multiplier : 0.4471360126399242 [sph::Model][rank=0]
Info: Timestep 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.5939e+04 | 800 | 1 | 5.019e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 687.526998159135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.358819518911211, dt = 0.005092906290587152 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.22 us (1.0%)
patch tree reduce : 992.00 ns (0.2%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 382.66 us (93.3%)
LB move op cnt : 0
LB apply : 10.49 us (2.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.9908582682778865e-18,1.9038617571595644e-17,-1.4838987223027487e-17)
sum a = (-4.63488059583489e-17,5.4616819430753435e-17,-1.0124571932376531e-16)
sum e = 4.144510033578681
sum de = 1.2807138162485021e-18
Info: CFL hydro = 0.007191201684701645 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007191201684701645 cfl multiplier : 0.6314240084266162 [sph::Model][rank=0]
Info: Timestep 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.1340e+04 | 800 | 1 | 3.749e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 489.06998958355086 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.363912425201798, dt = 0.007191201684701645 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (1.1%)
patch tree reduce : 1392.00 ns (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 370.97 us (95.8%)
LB move op cnt : 0
LB apply : 3.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.991513568258716e-18,1.9787438221117428e-17,-1.6080687072415776e-17)
sum a = (1.3539171626767946e-16,-4.410805448104506e-17,-3.424335579820878e-17)
sum e = 4.14451008012739
sum de = 7.792703114739563e-19
Info: CFL hydro = 0.008590301604105188 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008590301604105188 cfl multiplier : 0.7542826722844108 [sph::Model][rank=0]
Info: Timestep 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.1297e+04 | 800 | 1 | 3.756e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 689.1647423447565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.3711036268865, dt = 0.008590301604105188 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.34 us (1.1%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 365.12 us (95.6%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.561986779457294e-18,1.9108734669544365e-17,-1.6234214496495753e-17)
sum a = (-6.483800130316078e-17,1.0317042898174354e-16,-5.1186792102527636e-17)
sum e = 4.1445101223135685
sum de = 2.168404344971009e-19
Info: CFL hydro = 0.00952481381352136 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00952481381352136 cfl multiplier : 0.8361884481896071 [sph::Model][rank=0]
Info: Timestep 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.1717e+04 | 800 | 1 | 3.684e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 839.5044756059318 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.379693928490605, dt = 0.00952481381352136 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (0.9%)
patch tree reduce : 501.00 ns (0.1%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 531.00 ns (0.1%)
LB compute : 360.82 us (96.8%)
LB move op cnt : 0
LB apply : 2.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.19521824801361e-18,2.0737061507621863e-17,-1.6676822826404363e-17)
sum a = (3.127465965648672e-18,6.795348464058858e-17,-8.797346074061739e-17)
sum e = 4.144510158000106
sum de = 1.6263032587282567e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010851657383705585
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.441236583673473e-18,2.0512761685612337e-17,-1.698762224588334e-17)
sum a = (-3.3084036517839016e-17,-1.822797404959678e-16,8.36477319528811e-17)
sum e = 4.144509990870156
sum de = 3.198396408832238e-18
Info: CFL hydro = 0.00507628045032721 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00507628045032721 cfl multiplier : 0.4453961493965357 [sph::Model][rank=0]
Info: Timestep 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.6264e+04 | 800 | 1 | 4.919e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 697.0895106180842 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.389218742304127, dt = 0.00507628045032721 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.32 us (1.0%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 410.71 us (95.9%)
LB move op cnt : 0
LB apply : 3.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.18735464824366e-18,1.8558844371345723e-17,-1.5563936230390493e-17)
sum a = (-3.034001465525838e-17,-5.610266533014208e-17,-6.561986779457294e-17)
sum e = 4.14451003776654
sum de = -7.860465750519907e-19
Info: CFL hydro = 0.0071854535080836295 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0071854535080836295 cfl multiplier : 0.6302640995976905 [sph::Model][rank=0]
Info: Timestep 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.1603e+04 | 800 | 1 | 3.703e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 493.4919676202392 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.394295022754454, dt = 0.0071854535080836295 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (1.0%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 385.99 us (96.1%)
LB move op cnt : 0
LB apply : 3.09 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.152530134976739e-18,1.8358884262909853e-17,-1.6522546488060585e-17)
sum a = (-1.2742326850079685e-16,-4.071697069453711e-17,-3.2188335058328526e-17)
sum e = 4.144510088367922
sum de = 7.386127300057499e-19
Info: CFL hydro = 0.008595380836237888 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008595380836237888 cfl multiplier : 0.7535093997317936 [sph::Model][rank=0]
Info: Timestep 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.1331e+04 | 800 | 1 | 3.750e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 689.7332207732812 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.401480476262538, dt = 0.008595380836237888 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (1.1%)
patch tree reduce : 1262.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 394.35 us (95.9%)
LB move op cnt : 0
LB apply : 3.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.740826747704769e-18,1.806081638591556e-17,-1.6628143399257056e-17)
sum a = (-4.361676672398914e-18,-4.7451207754669505e-17,-5.1764953914184915e-17)
sum e = 4.144510134932135
sum de = -7.657177843178875e-19
Info: CFL hydro = 0.009540884372605926 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009540884372605926 cfl multiplier : 0.8356729331545291 [sph::Model][rank=0]
Info: Timestep 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.1054e+04 | 800 | 1 | 3.800e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 814.3525343476135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.410075857098777, dt = 0.009540884372605926 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (0.9%)
patch tree reduce : 871.00 ns (0.2%)
gen split merge : 601.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 399.81 us (96.5%)
LB move op cnt : 0
LB apply : 3.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.223127533595034e-18,1.7512611144810475e-17,-1.7243750924104566e-17)
sum a = (8.57896267473627e-17,-8.614311427987855e-17,-1.0504571029831066e-16)
sum e = 4.144510174342535
sum de = 1.0503208545953324e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010128540917035569
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.426832213349928e-18,1.7517104630393302e-17,-1.7436970804166193e-17)
sum a = (-1.8830700249106849e-16,7.251886599274238e-17,-3.378502026876027e-17)
sum e = 4.1445099925221776
sum de = -6.776263578034403e-21
Info: CFL hydro = 0.005080615739306929 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005080615739306929 cfl multiplier : 0.44522431105150967 [sph::Model][rank=0]
Info: Timestep 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.6056e+04 | 800 | 1 | 4.983e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 689.3527697390892 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.419616741471383, dt = 0.005080615739306929 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (1.1%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 371.11 us (95.8%)
LB move op cnt : 0
LB apply : 3.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2250242777639378e-18,1.8600034655854983e-17,-1.7305161893736556e-17)
sum a = (2.271546831831489e-16,2.180838336199457e-18,1.0309553755536306e-16)
sum e = 4.144510043494566
sum de = 1.6127507315721878e-18
Info: CFL hydro = 0.007185908542299843 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007185908542299843 cfl multiplier : 0.6301495407010065 [sph::Model][rank=0]
Info: Timestep 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.1061e+04 | 800 | 1 | 3.799e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 481.51067410182327 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.42469735721069, dt = 0.007185908542299843 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.11 us (1.0%)
patch tree reduce : 1332.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 382.82 us (95.9%)
LB move op cnt : 0
LB apply : 3.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.76084797500685e-18,1.8381351690823994e-17,-1.6143595870575375e-17)
sum a = (1.4651159525665254e-16,1.0765193193635121e-16,2.079015952892562e-16)
sum e = 4.144510097755053
sum de = 1.4907779871675686e-19
Info: CFL hydro = 0.00858440343520019 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00858440343520019 cfl multiplier : 0.7534330271340043 [sph::Model][rank=0]
Info: Timestep 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.0784e+04 | 800 | 1 | 3.849e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 672.0854532363277 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.43188326575299, dt = 0.00858440343520019 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.46 us (1.1%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 388.55 us (96.0%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.077439250775616e-18,1.9525692685917665e-17,-1.4036151132228785e-17)
sum a = (2.090968624542886e-18,-1.3519999421614546e-16,-3.85900541853316e-17)
sum e = 4.144510146287546
sum de = 7.182839392716467e-19
Info: CFL hydro = 0.009512816947972237 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009512816947972237 cfl multiplier : 0.8356220180893361 [sph::Model][rank=0]
Info: Timestep 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.1172e+04 | 800 | 1 | 3.779e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 817.8599718993119 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.440467669188191, dt = 0.009512816947972237 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 us (1.0%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.2%)
LB compute : 386.27 us (95.9%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.252135732062772e-18,1.723925743852174e-17,-1.551001440339655e-17)
sum a = (-2.65696806855597e-16,3.186180843930965e-17,-2.463328796506612e-17)
sum e = 4.144510185142951
sum de = 4.743384504624082e-20
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010240610460174097
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.180439420558162e-18,1.8027115244044344e-17,-1.528683795278273e-17)
sum a = (1.2566182215232804e-16,2.069399893745309e-17,-6.931351294365802e-17)
sum e = 4.1445099935028695
sum de = -1.1587410718438829e-18
Info: CFL hydro = 0.005065348082391511 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005065348082391511 cfl multiplier : 0.445207339363112 [sph::Model][rank=0]
Info: Timestep 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.5862e+04 | 800 | 1 | 5.043e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 679.0260359332701 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.449980486136162, dt = 0.005065348082391511 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 us (0.9%)
patch tree reduce : 490.00 ns (0.1%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 591.00 ns (0.2%)
LB compute : 371.08 us (96.4%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.663839119334742e-18,1.8033855472418585e-17,-1.6189279640667465e-17)
sum a = (9.808380330198162e-17,3.700235594606551e-17,-8.185333337680489e-17)
sum e = 4.144510047312955
sum de = -6.911788849595091e-19
Info: CFL hydro = 0.007167285289171331 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007167285289171331 cfl multiplier : 0.6301382262420746 [sph::Model][rank=0]
Info: Timestep 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.1466e+04 | 800 | 1 | 3.727e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 489.29618334711773 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.455045834218554, dt = 0.007167285289171331 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (0.9%)
patch tree reduce : 952.00 ns (0.2%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 641.00 ns (0.2%)
LB compute : 380.71 us (96.6%)
LB move op cnt : 0
LB apply : 3.04 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.24724333083865e-18,1.845324746014925e-17,-1.6500827974410245e-17)
sum a = (1.217195374676598e-16,-2.0202711180397168e-17,8.732040750257963e-17)
sum e = 4.144510102647125
sum de = -3.8624702394796095e-19
Info: CFL hydro = 0.008567136350829589 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008567136350829589 cfl multiplier : 0.753425484161383 [sph::Model][rank=0]
Info: Timestep 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.1201e+04 | 800 | 1 | 3.773e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 683.7860712666406 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.462213119507725, dt = 0.008567136350829589 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.34 us (1.1%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 384.43 us (96.0%)
LB move op cnt : 0
LB apply : 3.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.307705928386187e-18,1.8113240384381892e-17,-1.525987703928576e-17)
sum a = (1.0591594867285179e-16,-1.1563236233145473e-16,-1.0831996345966507e-16)
sum e = 4.144510150220188
sum de = 6.098637220230962e-19
Info: CFL hydro = 0.009500370203833715 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009500370203833715 cfl multiplier : 0.835616989440922 [sph::Model][rank=0]
Info: Timestep 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.1646e+04 | 800 | 1 | 3.696e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 834.5145286584425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.470780255858555, dt = 0.009500370203833715 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (0.8%)
patch tree reduce : 552.00 ns (0.1%)
gen split merge : 530.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 701.00 ns (0.2%)
LB compute : 399.81 us (96.9%)
LB move op cnt : 0
LB apply : 2.71 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.257329214890621e-18,1.6518053002477755e-17,-1.7113439842202538e-17)
sum a = (-1.9290982955641254e-16,-8.812024793632312e-17,-5.567428637124576e-17)
sum e = 4.144510185874931
sum de = 1.1926223897340549e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01009623109622799
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.922015082526736e-18,1.6793653451557907e-17,-1.7032557101711624e-17)
sum a = (-9.309977887636095e-17,1.3812974681614968e-16,1.3149736209589473e-16)
sum e = 4.1445099937827825
sum de = 5.421010862427522e-20
Info: CFL hydro = 0.005062750764449243 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005062750764449243 cfl multiplier : 0.445205663146974 [sph::Model][rank=0]
Info: Timestep 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.6118e+04 | 800 | 1 | 4.963e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 689.0880754993779 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.480280626062388, dt = 0.005062750764449243 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (1.0%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.2%)
LB compute : 409.45 us (95.9%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.707076688814771e-18,1.8357386434382244e-17,-1.5280097724408488e-17)
sum a = (8.633146621722545e-17,6.825904166022092e-17,-2.2167862208620855e-17)
sum e = 4.144510047899477
sum de = -7.521652571618187e-19
Info: CFL hydro = 0.007166646662025424 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007166646662025424 cfl multiplier : 0.6301371087646493 [sph::Model][rank=0]
Info: Timestep 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.1196e+04 | 800 | 1 | 3.774e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 482.8934046206059 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.485343376826837, dt = 0.007166646662025424 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (1.0%)
patch tree reduce : 802.00 ns (0.2%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 379.01 us (96.1%)
LB move op cnt : 0
LB apply : 3.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.869391626239756e-18,1.876629362241964e-17,-1.5843281250789668e-17)
sum a = (1.2614711859527353e-16,8.895903191178445e-17,1.3176697123086445e-16)
sum e = 4.144510101155136
sum de = -3.049318610115481e-20
Info: CFL hydro = 0.008571511017857135 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008571511017857135 cfl multiplier : 0.7534247391764328 [sph::Model][rank=0]
Info: Timestep 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.6100e+04 | 800 | 1 | 4.969e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 519.2218682550832 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.492510023488862, dt = 0.007489976511138252 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.94 us (1.1%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 414.03 us (95.7%)
LB move op cnt : 0
LB apply : 4.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.840733426394528e-18,1.932348583469038e-17,-1.4196418784683002e-17)
sum a = (-7.088922855470323e-17,-1.3041892555601587e-16,5.949524694517763e-17)
sum e = 4.144510109160678
sum de = -7.894347068410079e-19
Info: CFL hydro = 0.009511412102514718 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009511412102514718 cfl multiplier : 0.8356164927842885 [sph::Model][rank=0]
Info: Timestep 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.1250e+04 | 800 | 1 | 3.765e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 716.2356592736355 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 1128 [SPH][rank=0]
Info: time since start : 905.051500852 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15099544708177334 max=0.15134424894122744 delta=0.0003488018594541009
Number of particle pairs: 319600
Distance min=0.160145 max=2.295096 mean=0.934666
---------------- t = 8.5, dt = 0.009511412102514718 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.71 us (1.4%)
patch tree reduce : 1493.00 ns (0.2%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.2%)
LB compute : 668.15 us (96.4%)
LB move op cnt : 0
LB apply : 4.81 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (78.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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.494934494337376e-18,1.7410758804933027e-17,-1.3805485538976919e-17)
sum a = (-1.007259728246848e-16,-1.1119878988973056e-17,-1.9918573108709642e-16)
sum e = 4.144510176206442
sum de = -1.145188544687814e-18
Info: CFL hydro = 0.0101434468869106 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0101434468869106 cfl multiplier : 0.8904109951895256 [sph::Model][rank=0]
Info: Timestep 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.9552e+04 | 800 | 1 | 4.092e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 836.8625804670328 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.509511412102515, dt = 0.0101434468869106 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.62 us (1.1%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 397.72 us (95.7%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.365571784519801e-18,1.7812176850332377e-17,-1.734635217824582e-17)
sum a = (-1.88984020985548e-16,3.164312547427866e-17,1.3203358470877894e-17)
sum e = 4.144510194901461
sum de = 1.9651164376299768e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010436650450115466
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.8578079136601744e-18,1.8030859815363367e-17,-1.6179543755238003e-17)
sum a = (-5.182486705528929e-18,-1.4952223059714767e-16,5.158671231939938e-17)
sum e = 4.144509993377019
sum de = 1.5585406229479126e-19
Info: CFL hydro = 0.005286616436516037 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005286616436516037 cfl multiplier : 0.46347033172984187 [sph::Model][rank=0]
Info: Timestep 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.6033e+04 | 800 | 1 | 4.990e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 731.8559251012118 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.519654858989426, dt = 0.005286616436516037 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.87 us (0.9%)
patch tree reduce : 692.00 ns (0.2%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 682.00 ns (0.2%)
LB compute : 415.45 us (96.6%)
LB move op cnt : 0
LB apply : 3.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.934746625011417e-18,1.6480607289287518e-17,-1.5793103995114748e-17)
sum a = (-4.6199023105587946e-17,-2.113495965598133e-16,-1.6452148547262938e-17)
sum e = 4.144510047742508
sum de = 2.0328790734103208e-20
Info: CFL hydro = 0.007331584421109474 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007331584421109474 cfl multiplier : 0.6423135544865612 [sph::Model][rank=0]
Info: Timestep 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.1320e+04 | 800 | 1 | 3.752e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 507.2019570276503 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.524941475425942, dt = 0.007331584421109474 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.04 us (1.0%)
patch tree reduce : 812.00 ns (0.2%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 403.71 us (96.2%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.387290298170139e-18,1.4539421517505584e-17,-1.6052228330391196e-17)
sum a = (-4.262819989576686e-17,-6.311549849640983e-17,2.1384647671533838e-16)
sum e = 4.144510094534195
sum de = 1.8295911660692887e-19
Info: CFL hydro = 0.00870017077336209 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00870017077336209 cfl multiplier : 0.7615423696577075 [sph::Model][rank=0]
Info: Timestep 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.1096e+04 | 800 | 1 | 3.792e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 695.9960610936581 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.532273059847052, dt = 0.00870017077336209 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.11 us (0.9%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 421.30 us (96.2%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.987370081298397e-18,1.4696693512904583e-17,-1.330970429633817e-17)
sum a = (6.13630391191067e-17,-6.904165706589689e-17,9.645566369247007e-17)
sum e = 4.144510131068279
sum de = 1.1180834903756764e-18
Info: CFL hydro = 0.009602840823594855 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009602840823594855 cfl multiplier : 0.8410282464384716 [sph::Model][rank=0]
Info: Timestep 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.1509e+04 | 800 | 1 | 3.719e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 842.0956646019109 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.540973230620414, dt = 0.009602840823594855 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (1.0%)
patch tree reduce : 1432.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 395.61 us (95.9%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.052326164428765e-18,1.396425536290353e-17,-1.280942956811659e-17)
sum a = (1.9555649256469856e-16,-2.0795851277330537e-17,-5.014505236157522e-17)
sum e = 4.144510155049489
sum de = -1.5839516113655416e-19
Info: CFL hydro = 0.010203469336929916 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010203469336929916 cfl multiplier : 0.894018830958981 [sph::Model][rank=0]
Info: Timestep 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.1504e+04 | 800 | 1 | 3.720e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 929.2524954631427 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.55057607144401, dt = 0.010203469336929916 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 us (1.0%)
patch tree reduce : 881.00 ns (0.2%)
gen split merge : 622.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 381.63 us (96.3%)
LB move op cnt : 0
LB apply : 2.97 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.07491664283897e-17,1.41799426708793e-17,-1.4036151132228785e-17)
sum a = (2.4823212622367005e-16,-7.497530477802199e-17,-8.800865971101621e-17)
sum e = 4.144510169298879
sum de = 1.6093625997831706e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010788527958495544
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0956615679463617e-17,1.3967251019958747e-17,-1.426531889695304e-17)
sum a = (1.3385194854129688e-16,-1.2927758021797742e-16,1.383544210952911e-17)
sum e = 4.1445099934452445
sum de = -1.6927953450877192e-18
Info: CFL hydro = 0.00530266115304746 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00530266115304746 cfl multiplier : 0.4646729436529937 [sph::Model][rank=0]
Info: Timestep 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.6214e+04 | 800 | 1 | 4.934e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 744.4565481459423 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.560779540780938, dt = 0.00530266115304746 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.18 us (1.0%)
patch tree reduce : 962.00 ns (0.2%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.3%)
LB compute : 404.26 us (96.1%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1121376817500665e-17,1.306106476075499e-17,-1.3610767830387683e-17)
sum a = (-1.2463131612533271e-16,-4.099556680067248e-17,-1.9566508513295025e-17)
sum e = 4.14451004054099
sum de = -1.0020399766018373e-18
Info: CFL hydro = 0.007338556800395788 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007338556800395788 cfl multiplier : 0.6431152957686624 [sph::Model][rank=0]
Info: Timestep 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.1802e+04 | 800 | 1 | 3.669e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 520.2277996820806 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.566082201933986, dt = 0.007338556800395788 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (0.9%)
patch tree reduce : 972.00 ns (0.2%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 393.05 us (96.4%)
LB move op cnt : 0
LB apply : 2.96 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.656500517498557e-18,1.2860355738055314e-17,-1.3759052854621025e-17)
sum a = (2.613291388690877e-16,5.975137562339885e-17,4.384518557444959e-18)
sum e = 4.144510081417662
sum de = 6.689442700940837e-19
Info: CFL hydro = 0.00869634598915267 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00869634598915267 cfl multiplier : 0.7620768638457749 [sph::Model][rank=0]
Info: Timestep 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.1430e+04 | 800 | 1 | 3.733e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 707.6841253729294 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.57342075873438, dt = 0.00869634598915267 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (0.9%)
patch tree reduce : 671.00 ns (0.2%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 398.25 us (96.5%)
LB move op cnt : 0
LB apply : 2.86 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3273756411675541e-17,1.3744074569344929e-17,-1.355834383192135e-17)
sum a = (1.5692449918059388e-16,-1.7810379456099245e-16,-1.5317805557591058e-16)
sum e = 4.144510114648928
sum de = 6.34427677493471e-19
Info: CFL hydro = 0.009603351288239904 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009603351288239904 cfl multiplier : 0.8413845758971833 [sph::Model][rank=0]
Info: Timestep 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.1542e+04 | 800 | 1 | 3.714e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 843.0055067983252 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.582117104723533, dt = 0.009603351288239904 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (1.0%)
patch tree reduce : 501.00 ns (0.1%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 381.12 us (96.4%)
LB move op cnt : 0
LB apply : 3.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.431362386696845e-17,1.1121376817500665e-17,-1.5978834732538328e-17)
sum a = (-3.6558998701893097e-17,8.791055194245778e-17,5.363836294509252e-17)
sum e = 4.144510139582143
sum de = -4.895850435129856e-19
Info: CFL hydro = 0.01021122398400499 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01021122398400499 cfl multiplier : 0.8942563839314556 [sph::Model][rank=0]
Info: Timestep 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.1462e+04 | 800 | 1 | 3.727e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 927.4905003002334 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.591720456011773, dt = 0.01021122398400499 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 us (0.9%)
patch tree reduce : 671.00 ns (0.2%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 386.59 us (96.4%)
LB move op cnt : 0
LB apply : 3.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3203732928009797e-17,1.3341158695417969e-17,-1.4151483928854717e-17)
sum a = (-2.3151635985554786e-16,1.1867594989955725e-16,9.502505022003704e-17)
sum e = 4.144510158696933
sum de = 2.1514636860259229e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01110290629712453
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1914102565738002e-17,1.3269262926092713e-17,-1.38968530791611e-17)
sum a = (4.166359832398633e-17,-1.3023918613270274e-16,2.7395995238528683e-16)
sum e = 4.144509995879092
sum de = 2.913793338554793e-19
Info: CFL hydro = 0.005307702032087762 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005307702032087762 cfl multiplier : 0.4647521279771518 [sph::Model][rank=0]
Info: Timestep 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.6137e+04 | 800 | 1 | 4.958e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 741.5101025684722 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.601931679995777, dt = 0.005307702032087762 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (0.9%)
patch tree reduce : 601.00 ns (0.1%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 388.36 us (96.7%)
LB move op cnt : 0
LB apply : 2.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3555160946300179e-17,1.1317592354617512e-17,-1.1615660231611805e-17)
sum a = (1.262849188198136e-16,-8.279996100625411e-18,1.6564111229701747e-17)
sum e = 4.144510039230015
sum de = -2.710505431213761e-19
Info: CFL hydro = 0.007344020163221325 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007344020163221325 cfl multiplier : 0.6431680853181012 [sph::Model][rank=0]
Info: Timestep 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.9011e+04 | 800 | 1 | 4.208e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 454.0618732414521 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.607239382027865, dt = 0.007344020163221325 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.0%)
patch tree reduce : 1042.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 391.59 us (96.2%)
LB move op cnt : 0
LB apply : 3.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4834493737444657e-17,1.188377153805391e-17,-1.215937198713406e-17)
sum a = (1.0777175821855998e-16,3.9974047744842794e-17,1.4552153059990263e-17)
sum e = 4.144510080585109
sum de = -5.793705359219414e-19
Info: CFL hydro = 0.0087010730579405 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0087010730579405 cfl multiplier : 0.7621120568787342 [sph::Model][rank=0]
Info: Timestep 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.1629e+04 | 800 | 1 | 3.699e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 714.7837633272837 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.614583402191087, dt = 0.0087010730579405 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (0.9%)
patch tree reduce : 901.00 ns (0.2%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 382.36 us (96.2%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5586403658304634e-17,1.2238756899097365e-17,-1.2165363301244498e-17)
sum a = (-1.2259426932778375e-16,9.407561416209855e-17,7.101953963660525e-18)
sum e = 4.1445101176353925
sum de = 2.1446874224478885e-18
Info: CFL hydro = 0.009606491436666554 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009606491436666554 cfl multiplier : 0.8414080379191562 [sph::Model][rank=0]
Info: Timestep 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.1207e+04 | 800 | 1 | 3.772e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 830.3758951508211 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.623284475249028, dt = 0.009606491436666554 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.36 us (1.0%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 402.36 us (95.9%)
LB move op cnt : 0
LB apply : 3.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3206166899367161e-17,1.3403318579313764e-17,-1.1844827996336062e-17)
sum a = (-9.849720397560185e-18,-5.751661546020546e-19,4.393168517191904e-17)
sum e = 4.144510149339805
sum de = 7.284483346386983e-19
Info: CFL hydro = 0.010212189092100737 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010212189092100737 cfl multiplier : 0.8942720252794375 [sph::Model][rank=0]
Info: Timestep 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.0912e+04 | 800 | 1 | 3.825e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 904.0275620508737 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.632890966685695, dt = 0.010212189092100737 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (0.9%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 412.62 us (96.2%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3892921279276126e-17,1.2619954259373987e-17,-1.1549755776396986e-17)
sum a = (3.738580004913355e-18,-1.0260724545536236e-16,3.072701610107949e-17)
sum e = 4.144510176903354
sum de = 1.3145951341386741e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010886459238313785
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4215328869844075e-17,1.232787769649013e-17,-1.1608171088973757e-17)
sum a = (8.796447376945172e-17,7.066155861850658e-17,6.93845661844365e-17)
sum e = 4.144510000279734
sum de = -2.710505431213761e-19
Info: CFL hydro = 0.005310284033682651 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005310284033682651 cfl multiplier : 0.46475734175981254 [sph::Model][rank=0]
Info: Timestep 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.6459e+04 | 800 | 1 | 4.861e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 756.3600777677177 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.643103155777796, dt = 0.005310284033682651 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 us (0.9%)
patch tree reduce : 692.00 ns (0.2%)
gen split merge : 641.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 722.00 ns (0.2%)
LB compute : 415.04 us (96.5%)
LB move op cnt : 0
LB apply : 3.62 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.499101681857985e-17,1.354111880385384e-17,-1.0935646080077085e-17)
sum a = (-1.3889064370817532e-16,-2.3929308557089646e-17,2.4456731427374146e-17)
sum e = 4.144510047164622
sum de = -1.9956096237311316e-18
Info: CFL hydro = 0.007350995106440496 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007350995106440496 cfl multiplier : 0.6431715611732084 [sph::Model][rank=0]
Info: Timestep 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.1043e+04 | 800 | 1 | 3.802e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 502.8397384083712 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.64841343981148, dt = 0.007350995106440496 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (1.2%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 379.61 us (95.5%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3425786007227906e-17,1.308952350277957e-17,-1.098058093590537e-17)
sum a = (1.2477510766398322e-16,-3.839234081968714e-17,-1.0197347675961759e-16)
sum e = 4.144510094935765
sum de = 1.5585406229479126e-18
Info: CFL hydro = 0.008714939527355546 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008714939527355546 cfl multiplier : 0.7621143741154723 [sph::Model][rank=0]
Info: Timestep 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.0230e+04 | 800 | 1 | 3.955e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 669.1880053537348 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.65576443491792, dt = 0.008714939527355546 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.18 us (1.0%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 392.06 us (95.9%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5257630296494347e-17,1.2746895227088893e-17,-1.2416998493882898e-17)
sum a = (-1.7960162308860199e-16,1.436717123683049e-17,-2.003345655677729e-17)
sum e = 4.144510139369588
sum de = 7.657177843178875e-19
Info: CFL hydro = 0.009621305715472712 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009621305715472712 cfl multiplier : 0.8414095827436482 [sph::Model][rank=0]
Info: Timestep 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.1149e+04 | 800 | 1 | 3.783e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 829.3934131917073 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.664479374445275, dt = 0.009621305715472712 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.11 us (1.0%)
patch tree reduce : 812.00 ns (0.2%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 388.27 us (96.1%)
LB move op cnt : 0
LB apply : 3.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (75.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2319639639588278e-17,1.3070051731920647e-17,-1.216386547271689e-17)
sum a = (3.1017033149737884e-17,-9.673575762713305e-17,3.2741033785016434e-17)
sum e = 4.1445101776620445
sum de = 4.980553729855286e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010241160511475588
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3105999616583275e-17,1.273378922747231e-17,-1.1868793252777814e-17)
sum a = (-1.0646565174248447e-17,7.112888111912075e-17,1.6977886360453878e-17)
sum e = 4.1445100019024865
sum de = -1.0570971181733668e-18
Info: CFL hydro = 0.0051117054891268755 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0051117054891268755 cfl multiplier : 0.447136527581216 [sph::Model][rank=0]
Info: Timestep 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.5665e+04 | 800 | 1 | 5.107e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 678.2265423061441 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.674100680160748, dt = 0.0051117054891268755 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.28 us (1.1%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 382.36 us (95.6%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.303447830438992e-17,1.378039691113946e-17,-1.1766940912900367e-17)
sum a = (7.993012154735427e-17,8.635880158785432e-17,2.48819275006493e-17)
sum e = 4.144510050878874
sum de = -7.792703114739563e-20
Info: CFL hydro = 0.007217697933480928 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007217697933480928 cfl multiplier : 0.6314243517208107 [sph::Model][rank=0]
Info: Timestep 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.1506e+04 | 800 | 1 | 3.720e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 494.69895627315293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.679212385649874, dt = 0.007217697933480928 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.2%)
patch tree reduce : 1462.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 407.17 us (95.6%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (74.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3884870450940225e-17,1.4476887176477884e-17,-1.1461383893268025e-17)
sum a = (-1.390464178750467e-16,1.3655403120510446e-16,1.2177345929465375e-16)
sum e = 4.144510103790361
sum de = -1.0672615135404184e-18
Info: CFL hydro = 0.008621813505411224 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008621813505411224 cfl multiplier : 0.7542829011472071 [sph::Model][rank=0]
Info: Timestep 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.0726e+04 | 800 | 1 | 3.860e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 673.1717484052692 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.686430083583355, dt = 0.008621813505411224 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.2%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 408.00 us (95.5%)
LB move op cnt : 0
LB apply : 3.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (73.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.182722851113665e-17,1.559819905795956e-17,-1.0029459820873326e-17)
sum a = (-2.693784693764612e-16,7.567029721483281e-17,-1.6765194709533326e-16)
sum e = 4.14451015211063
sum de = 1.2874900798265365e-19
Info: CFL hydro = 0.009559435523627945 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009559435523627945 cfl multiplier : 0.8361886007648046 [sph::Model][rank=0]
Info: Timestep 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.1193e+04 | 800 | 1 | 3.775e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 822.2429981916262 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.695051897088765, dt = 0.009559435523627945 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.72 us (1.2%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 373.74 us (95.5%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.614760776546137e-18,1.6431740633574256e-17,-1.3011636419343876e-17)
sum a = (-1.6948229355607208e-16,-1.311618485057102e-16,-2.0894857743005526e-16)
sum e = 4.144510191864131
sum de = -2.642742795433417e-18
Info: CFL hydro = 0.010187590195227626 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010187590195227626 cfl multiplier : 0.8907924005098696 [sph::Model][rank=0]
Info: Timestep 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.0699e+04 | 800 | 1 | 3.865e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 890.4152016909935 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.704611332612393, dt = 0.010187590195227626 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (1.1%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 395.19 us (95.5%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (72.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.851617141729089e-18,1.3867645422872715e-17,-1.5297322752475997e-17)
sum a = (1.0583356810383326e-16,-1.0549505885659351e-16,-4.2658156466319045e-18)
sum e = 4.144510222402992
sum de = 7.115076756936123e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010552200710502748
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.10305287654684e-18,1.3953770563210263e-17,-1.436567340830288e-17)
sum a = (1.6201561834593863e-16,-1.4610418589714275e-16,-1.17974966148636e-16)
sum e = 4.144510004593901
sum de = -3.1848438816761693e-19
Info: CFL hydro = 0.0053012237111786644 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0053012237111786644 cfl multiplier : 0.4635974668366232 [sph::Model][rank=0]
Info: Timestep 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.6200e+04 | 800 | 1 | 4.938e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 742.6810108265721 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.71479892280762, dt = 0.0053012237111786644 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.94 us (1.2%)
patch tree reduce : 1372.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 385.32 us (95.4%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0484050779002815e-17,1.3110867559298005e-17,-1.5644818970881406e-17)
sum a = (2.6607875313013746e-16,-7.934896407864178e-17,-1.0268363471027044e-16)
sum e = 4.14451006286402
sum de = 3.6930636500287495e-19
Info: CFL hydro = 0.007345112879142916 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007345112879142916 cfl multiplier : 0.6423983112244155 [sph::Model][rank=0]
Info: Timestep 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.1585e+04 | 800 | 1 | 3.706e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 514.932755949674 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.7201001465188, dt = 0.007345112879142916 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (1.2%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 371.54 us (95.6%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2328626610753935e-17,1.2560415575401508e-17,-1.6387741920575727e-17)
sum a = (-1.9861805407513242e-16,5.2783477312959385e-17,3.2577770475507e-17)
sum e = 4.1445101177671635
sum de = -2.574980159653073e-19
Info: CFL hydro = 0.008707666864137683 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008707666864137683 cfl multiplier : 0.7615988741496104 [sph::Model][rank=0]
Info: Timestep 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.1702e+04 | 800 | 1 | 3.686e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 717.3320617739911 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.727445259397943, dt = 0.008707666864137683 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (0.9%)
patch tree reduce : 1012.00 ns (0.2%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 416.11 us (96.2%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.90459059663858e-18,1.3281994468577394e-17,-1.547256869020631e-17)
sum a = (-2.9209154116913193e-17,-1.650966516272314e-16,7.73538564798659e-17)
sum e = 4.144510163911404
sum de = 3.3711911300721153e-19
Info: CFL hydro = 0.009610154988780066 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009610154988780066 cfl multiplier : 0.8410659160997401 [sph::Model][rank=0]
Info: Timestep 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.1393e+04 | 800 | 1 | 3.740e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 838.2818220998179 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.736152926262081, dt = 0.009610154988780066 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (1.0%)
patch tree reduce : 1062.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 400.51 us (96.2%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.532180749706966e-18,1.0962606993574056e-17,-1.4476512719345982e-17)
sum a = (-2.162864393868143e-18,2.4420596314145567e-17,-5.618953938474342e-17)
sum e = 4.1445101972610665
sum de = -1.824508968385763e-18
Info: CFL hydro = 0.010208373398062617 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010208373398062617 cfl multiplier : 0.8940439440664933 [sph::Model][rank=0]
Info: Timestep 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.1263e+04 | 800 | 1 | 3.762e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 919.551027324632 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.74576308125086, dt = 0.010208373398062617 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.10 us (0.9%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.2%)
LB compute : 416.71 us (96.4%)
LB move op cnt : 0
LB apply : 3.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.510087778924726e-18,1.1940689022103071e-17,-1.5779623538366264e-17)
sum a = (-2.366569073623037e-16,-1.0472817065045744e-17,-2.9051882121514194e-17)
sum e = 4.144510218308742
sum de = -9.283481101907132e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010053673085234867
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.244048215962783e-18,1.192496182256317e-17,-1.582006490861172e-17)
sum a = (-3.8050835915392174e-17,-1.0883821213021795e-16,5.329573466940184e-17)
sum e = 4.144510004509323
sum de = -3.049318610115481e-20
Info: CFL hydro = 0.005303739041153442 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005303739041153442 cfl multiplier : 0.4646813146888311 [sph::Model][rank=0]
Info: Timestep 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.6091e+04 | 800 | 1 | 4.972e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 739.1829345882878 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.755971454648924, dt = 0.005303739041153442 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.65 us (1.1%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 418.25 us (96.1%)
LB move op cnt : 0
LB apply : 3.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.331846184139195e-18,1.0907936252316308e-17,-1.49513243625982e-17)
sum a = (-1.4939940865788368e-16,1.38339442810015e-16,-1.0256830191364451e-16)
sum e = 4.144510061795377
sum de = 1.9312351197398048e-18
Info: CFL hydro = 0.007338975740303803 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007338975740303803 cfl multiplier : 0.6431208764592208 [sph::Model][rank=0]
Info: Timestep 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.1253e+04 | 800 | 1 | 3.764e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 507.2379903391038 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.761275193690077, dt = 0.007338975740303803 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.10 us (1.0%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 621.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 404.70 us (96.1%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.254732473476696e-18,1.2706079399711534e-17,-1.6019276102783786e-17)
sum a = (-1.1934697707992633e-16,2.4720162019667472e-17,-1.5521697465911904e-16)
sum e = 4.144510111453452
sum de = 4.54009659728305e-19
Info: CFL hydro = 0.008695210244755636 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008695210244755636 cfl multiplier : 0.7620805843061472 [sph::Model][rank=0]
Info: Timestep 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.1474e+04 | 800 | 1 | 3.725e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 709.1826188616049 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.76861416943038, dt = 0.008695210244755636 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.59 us (0.9%)
patch tree reduce : 981.00 ns (0.3%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 365.43 us (96.2%)
LB move op cnt : 0
LB apply : 3.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.5103116952547665e-18,1.2416998493882898e-17,-1.7934998789596358e-17)
sum a = (-8.54421305289573e-17,-4.866145320497799e-17,8.770085594859245e-17)
sum e = 4.144510150206978
sum de = -1.24090326772755e-18
Info: CFL hydro = 0.009600056510222658 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009600056510222658 cfl multiplier : 0.841387056204098 [sph::Model][rank=0]
Info: Timestep 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.1537e+04 | 800 | 1 | 3.715e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 842.6923226323963 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.777309379675136, dt = 0.009600056510222658 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (0.9%)
patch tree reduce : 572.00 ns (0.1%)
gen split merge : 612.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 561.00 ns (0.1%)
LB compute : 380.26 us (96.6%)
LB move op cnt : 0
LB apply : 3.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.853326657332042e-18,1.1879278052471081e-17,-1.600429781750769e-17)
sum a = (-5.3837948596396483e-17,-4.0824814348525e-17,-2.0897703617207983e-17)
sum e = 4.144510175623316
sum de = -6.818615225397118e-19
Info: CFL hydro = 0.010205427136315597 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010205427136315597 cfl multiplier : 0.8942580374693986 [sph::Model][rank=0]
Info: Timestep 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.0961e+04 | 800 | 1 | 3.817e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 905.4996290591663 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.78690943618536, dt = 0.010205427136315597 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.2%)
patch tree reduce : 1554.00 ns (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 414.08 us (95.9%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.809327944333512e-18,1.1410457723329301e-17,-1.6681316311987193e-17)
sum a = (-5.2807442569401135e-17,3.978831700741921e-17,9.193072371056173e-17)
sum e = 4.144510189692334
sum de = 1.129730193400423e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010076543238884161
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.5288595525386305e-18,1.1672577715660967e-17,-1.5742177825176024e-17)
sum a = (-4.503071685405252e-17,-8.486097306024481e-17,-1.0676521744800638e-17)
sum e = 4.144510003698339
sum de = -6.607915779767611e-19
Info: CFL hydro = 0.005306878787263913 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005306878787263913 cfl multiplier : 0.4647526791564662 [sph::Model][rank=0]
Info: Timestep 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.5725e+04 | 800 | 1 | 5.087e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 722.175375493878 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.797114863321674, dt = 0.005306878787263913 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (1.0%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 381.17 us (95.9%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (64.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.338073643834368e-18,1.092066779480099e-17,-1.6398226720268993e-17)
sum a = (-8.553200024061387e-17,4.293974822950964e-17,3.8386349505576704e-17)
sum e = 4.144510053686916
sum de = -1.2978662334304017e-18
Info: CFL hydro = 0.007346397686395669 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007346397686395669 cfl multiplier : 0.6431684527709775 [sph::Model][rank=0]
Info: Timestep 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.1318e+04 | 800 | 1 | 3.753e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 509.08395368976346 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.802421742108939, dt = 0.007346397686395669 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (0.8%)
patch tree reduce : 691.00 ns (0.2%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 681.00 ns (0.2%)
LB compute : 414.43 us (96.8%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.232863419024495e-18,1.122772264296094e-17,-1.6369767978244413e-17)
sum a = (2.659903812470085e-16,-4.88981101123403e-17,-2.6451651797584074e-17)
sum e = 4.144510095790301
sum de = -7.729175643695491e-19
Info: CFL hydro = 0.008709692137829052 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008709692137829052 cfl multiplier : 0.7621123018473183 [sph::Model][rank=0]
Info: Timestep 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.9596e+04 | 800 | 1 | 4.082e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 647.8196455566944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.809768139795334, dt = 0.008709692137829052 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.28 us (1.1%)
patch tree reduce : 1282.00 ns (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 387.41 us (95.9%)
LB move op cnt : 0
LB apply : 3.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.289731986054873e-18,1.0433873523327897e-17,-1.6592944428858232e-17)
sum a = (1.6812825656711309e-16,-8.850069638233593e-17,5.588098670805587e-17)
sum e = 4.144510128546183
sum de = 2.56650983018053e-19
Info: CFL hydro = 0.009620586792851386 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009620586792851386 cfl multiplier : 0.8414082012315456 [sph::Model][rank=0]
Info: Timestep 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.1213e+04 | 800 | 1 | 3.771e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 831.413073962969 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.818477831933164, dt = 0.009620586792851386 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (1.1%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 396.05 us (95.9%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.725026172636693e-18,9.941087937744365e-18,-1.5631338514132922e-17)
sum a = (1.1825655791182659e-16,-3.51914812561856e-17,3.1250694400044966e-17)
sum e = 4.1445101509415725
sum de = 8.300922883092143e-20
Info: CFL hydro = 0.010226012105182519 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010226012105182519 cfl multiplier : 0.8942721341543637 [sph::Model][rank=0]
Info: Timestep 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.2018e+04 | 800 | 1 | 3.633e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 953.2323042004201 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.828098418726015, dt = 0.010226012105182519 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.08 us (1.1%)
patch tree reduce : 1293.00 ns (0.3%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.2%)
LB compute : 371.54 us (95.9%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0430877866272677e-17,9.264069443264863e-18,-1.5682264684071643e-17)
sum a = (-6.555695899641334e-17,5.550952523320871e-18,-4.619303179147751e-17)
sum e = 4.14451016557069
sum de = -6.454391058077769e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01095344979607023
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.14723881811132e-18,9.4273327527743e-18,-1.6082184900943385e-17)
sum a = (1.2077290983821058e-16,6.460134439579847e-17,-4.074093595097887e-18)
sum e = 4.14451000465901
sum de = -2.577521258494836e-18
Info: CFL hydro = 0.005316470115508752 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005316470115508752 cfl multiplier : 0.4647573780514545 [sph::Model][rank=0]
Info: Timestep 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.5812e+04 | 800 | 1 | 5.060e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 727.6017217107567 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.838324430831197, dt = 0.005316470115508752 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (1.1%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 382.13 us (95.5%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0840908425705783e-17,1.0318540726701963e-17,-1.5481555661371968e-17)
sum a = (4.872136634608237e-17,-1.472635051775125e-16,-8.279996100625411e-17)
sum e = 4.144510047687992
sum de = -3.2670060775598364e-18
Info: CFL hydro = 0.007357517108392556 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007357517108392556 cfl multiplier : 0.6431715853676363 [sph::Model][rank=0]
Info: Timestep 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.0826e+04 | 800 | 1 | 3.841e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 498.250550460472 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.843640900946705, dt = 0.007357517108392556 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.2%)
patch tree reduce : 1572.00 ns (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 406.42 us (95.5%)
LB move op cnt : 0
LB apply : 4.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1670705430001455e-17,8.643968432834523e-18,-1.6419196319655528e-17)
sum a = (1.5432426885666376e-16,-1.246792466382162e-16,1.3828552098302106e-16)
sum e = 4.144510086423344
sum de = 1.094366567852556e-18
Info: CFL hydro = 0.008717764248809804 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008717764248809804 cfl multiplier : 0.7621143902450909 [sph::Model][rank=0]
Info: Timestep 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.0848e+04 | 800 | 1 | 3.837e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 690.2460151842097 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.850998418055097, dt = 0.008717764248809804 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (1.0%)
patch tree reduce : 1472.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 407.05 us (95.9%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2972692877626028e-17,7.709323431606184e-18,-1.4445058320266184e-17)
sum a = (-1.515562817376414e-16,6.8720372846724644e-18,4.317340947981672e-17)
sum e = 4.1445101194241545
sum de = -1.122318655111948e-18
Info: CFL hydro = 0.009624090540474733 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009624090540474733 cfl multiplier : 0.8414095934967273 [sph::Model][rank=0]
Info: Timestep 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.1060e+04 | 800 | 1 | 3.799e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 826.184098019411 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.859716182303906, dt = 0.009624090540474733 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.3%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 372.39 us (95.4%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.039193432455483e-17,8.422289810748314e-18,-1.4596339001554744e-17)
sum a = (1.4526540192168142e-16,-3.6990373317844634e-17,7.51969834001082e-17)
sum e = 4.144510146139075
sum de = -2.2209203877007755e-18
Info: CFL hydro = 0.01022944455094335 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01022944455094335 cfl multiplier : 0.8942730623311516 [sph::Model][rank=0]
Info: Timestep 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.0567e+04 | 800 | 1 | 3.890e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 890.7199076409455 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.869340272844381, dt = 0.01022944455094335 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.62 us (1.1%)
patch tree reduce : 1532.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1473.00 ns (0.4%)
LB compute : 396.88 us (95.7%)
LB move op cnt : 0
LB apply : 3.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.318688235707419e-17,8.037347879152668e-18,-1.3744074569344929e-17)
sum a = (-8.445356370073502e-17,-1.8777976684934995e-16,-1.7061465192294487e-16)
sum e = 4.144510168578709
sum de = -3.1086109164232822e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010934744241279746
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1888265023636738e-17,6.895253626850412e-18,-1.5062163673641303e-17)
sum a = (7.132060317065477e-17,-2.6757208817216415e-17,-1.147935783559934e-16)
sum e = 4.144510008241785
sum de = -1.2027867851011065e-19
Info: CFL hydro = 0.005318020156533245 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005318020156533245 cfl multiplier : 0.46475768744371715 [sph::Model][rank=0]
Info: Timestep 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.5776e+04 | 800 | 1 | 5.071e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 726.2304693612143 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.879569717395324, dt = 0.005318020156533245 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (1.2%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 416.06 us (95.8%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2964454820724176e-17,7.336364128231415e-18,-1.5333270637138625e-17)
sum a = (-3.7984931460177354e-17,-1.6749317727140665e-16,5.00634207068205e-17)
sum e = 4.144510050822826
sum de = 6.488272375967941e-19
Info: CFL hydro = 0.007360806435794042 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007360806435794042 cfl multiplier : 0.6431717916291447 [sph::Model][rank=0]
Info: Timestep 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.0897e+04 | 800 | 1 | 3.828e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 500.09269378439234 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.884887737551857, dt = 0.007360806435794042 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (1.0%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 401.81 us (96.0%)
LB move op cnt : 0
LB apply : 3.56 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2490392091735763e-17,6.0602142227081066e-18,-1.4472019233763155e-17)
sum a = (-1.7892460459412248e-16,1.5876982392660883e-17,-1.1569826678666955e-16)
sum e = 4.144510093413095
sum de = -1.56785798536771e-18
Info: CFL hydro = 0.008720677897515492 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008720677897515492 cfl multiplier : 0.7621145277527631 [sph::Model][rank=0]
Info: Timestep 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.1180e+04 | 800 | 1 | 3.777e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 701.5689098613047 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.892248543987652, dt = 0.008720677897515492 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (0.9%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 401.53 us (96.1%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0510262778235981e-17,7.083980021329211e-18,-1.6110643642967965e-17)
sum a = (7.821061439765854e-17,-4.7954478139946304e-17,-1.246792466382162e-17)
sum e = 4.144510132791058
sum de = 1.794015782284608e-18
Info: CFL hydro = 0.009623699700650632 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009623699700650632 cfl multiplier : 0.8414096851685088 [sph::Model][rank=0]
Info: Timestep 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.1325e+04 | 800 | 1 | 3.751e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 836.8764158226273 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.900969221885168, dt = 0.009623699700650632 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.42 us (1.0%)
patch tree reduce : 1463.00 ns (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 428.41 us (96.2%)
LB move op cnt : 0
LB apply : 3.62 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2545811747257315e-17,6.019023938198845e-18,-1.5876982392660883e-17)
sum a = (1.5301816238058827e-17,-1.6778076034870768e-16,6.57067418491743e-17)
sum e = 4.144510167222827
sum de = -5.522654816098038e-19
Info: CFL hydro = 0.010225334989509591 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010225334989509591 cfl multiplier : 0.8942731234456724 [sph::Model][rank=0]
Info: Timestep 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.0835e+04 | 800 | 1 | 3.840e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 902.3029837121102 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.910592921585819, dt = 0.010225334989509591 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.3%)
patch tree reduce : 1703.00 ns (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 416.58 us (95.5%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.191223028007849e-17,4.01642719678492e-18,-1.485845899388641e-17)
sum a = (4.270608697920255e-17,-9.297321236577795e-17,-2.245544528592188e-17)
sum e = 4.144510197154028
sum de = -1.8859188570616997e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01128598382014755
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2403518037134412e-17,4.139249136048901e-18,-1.5187981269960504e-17)
sum a = (-4.265815646631905e-17,5.122573564424549e-17,-8.788658668601603e-17)
sum e = 4.144510012809873
sum de = -3.2991933295555e-19
Info: CFL hydro = 0.005314366548224525 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005314366548224525 cfl multiplier : 0.46475770781522413 [sph::Model][rank=0]
Info: Timestep 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.5697e+04 | 800 | 1 | 5.096e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 722.2937028654935 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.920818256575329, dt = 0.005314366548224525 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (1.1%)
patch tree reduce : 1753.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 410.51 us (95.7%)
LB move op cnt : 0
LB apply : 3.65 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1742975656458614e-17,5.125569221479768e-18,-1.6206504668734974e-17)
sum a = (4.594139659883911e-17,-1.1790906169342118e-17,-1.517000732762919e-17)
sum e = 4.144510061704327
sum de = -6.085931726022148e-19
Info: CFL hydro = 0.007354678065104168 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007354678065104168 cfl multiplier : 0.6431718052101494 [sph::Model][rank=0]
Info: Timestep 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.1115e+04 | 800 | 1 | 3.789e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 504.94739500672995 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.926132623123554, dt = 0.007354678065104168 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (1.2%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 375.54 us (95.5%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2472418149404449e-17,5.008551367760274e-18,-1.5754160453396902e-17)
sum a = (-5.64381789203266e-17,-7.333368471176196e-17,-7.671877718415947e-18)
sum e = 4.1445101114731004
sum de = -5.377600423880739e-19
Info: CFL hydro = 0.008716155081340108 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008716155081340108 cfl multiplier : 0.7621145368067662 [sph::Model][rank=0]
Info: Timestep 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.1490e+04 | 800 | 1 | 3.723e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 711.2286405322978 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.933487301188658, dt = 0.008716155081340108 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (1.2%)
patch tree reduce : 1423.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 382.35 us (95.4%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1001550535291904e-17,4.128389879223732e-18,-1.6032756559532273e-17)
sum a = (6.682112627371577e-17,-2.918968234605427e-17,1.5172703418978886e-16)
sum e = 4.144510157149145
sum de = -9.774760211314626e-19
Info: CFL hydro = 0.009626405948216916 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009626405948216916 cfl multiplier : 0.8414096912045107 [sph::Model][rank=0]
Info: Timestep 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.0956e+04 | 800 | 1 | 3.818e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 821.9396234673288 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.942203456269997, dt = 0.009626405948216916 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.48 us (1.0%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 408.15 us (95.7%)
LB move op cnt : 0
LB apply : 4.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2455942035600745e-17,4.054434595673012e-18,-1.383693993805672e-17)
sum a = (-6.307056364058155e-17,1.2557794375478192e-17,-1.368416142824055e-17)
sum e = 4.1445101955373564
sum de = -1.4221683184399703e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010056687212787508
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1596188460752882e-17,4.496106782751868e-18,-1.4780571910450714e-17)
sum a = (8.46093378676064e-17,1.1206153912163364e-16,-5.883470456450183e-17)
sum e = 4.144510013855137
sum de = -1.0935195349053017e-18
Info: CFL hydro = 0.005113617133586431 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005113617133586431 cfl multiplier : 0.44713656373483684 [sph::Model][rank=0]
Info: Timestep 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.6243e+04 | 800 | 1 | 4.925e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 703.6288528043918 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.951829862218213, dt = 0.005113617133586431 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.2%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 415.77 us (95.7%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3243799841123351e-17,5.2350979325612135e-18,-1.5161020356463533e-17)
sum a = (1.1143844245414807e-18,2.79195237546414e-17,-1.467871957057327e-17)
sum e = 4.1445100645376005
sum de = -3.8963515573697816e-19
Info: CFL hydro = 0.007218479030788017 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007218479030788017 cfl multiplier : 0.6314243758232245 [sph::Model][rank=0]
Info: Timestep 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.1423e+04 | 800 | 1 | 3.734e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 492.97548072915487 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.9569434793518, dt = 0.007218479030788017 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (1.2%)
patch tree reduce : 1803.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 382.57 us (95.4%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.265215757271759e-17,5.277598817032134e-18,-1.5214942183457475e-17)
sum a = (9.442311038050396e-18,-1.4393533018916417e-16,4.152879375650147e-17)
sum e = 4.144510117817673
sum de = 4.514685608865421e-19
Info: CFL hydro = 0.008618944119792247 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008618944119792247 cfl multiplier : 0.754282917215483 [sph::Model][rank=0]
Info: Timestep 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.1310e+04 | 800 | 1 | 3.754e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 692.2291483919798 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.964161958382588, dt = 0.008618944119792247 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.76 us (1.2%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 388.13 us (95.6%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2918771050632085e-17,3.6284896081340555e-18,-1.4382149522106585e-17)
sum a = (8.25153735860083e-17,2.5978337982859467e-17,1.4672709533606234e-16)
sum e = 4.144510164846357
sum de = 2.388632911257127e-19
Info: CFL hydro = 0.009550322990233388 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009550322990233388 cfl multiplier : 0.8361886114769886 [sph::Model][rank=0]
Info: Timestep 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.1429e+04 | 800 | 1 | 3.733e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 831.1102276648884 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.97278090250238, dt = 0.009550322990233388 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (1.0%)
patch tree reduce : 682.00 ns (0.2%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 376.69 us (96.5%)
LB move op cnt : 0
LB apply : 3.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4126020843885355e-17,4.360927758135109e-18,-1.280942956811659e-17)
sum a = (2.7044791894517443e-17,9.80178988467668e-17,4.3775536547915745e-17)
sum e = 4.144510201373518
sum de = -1.068955579434927e-18
Info: CFL hydro = 0.010169732341296357 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010169732341296357 cfl multiplier : 0.8907924076513257 [sph::Model][rank=0]
Info: Timestep 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.1574e+04 | 800 | 1 | 3.708e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 927.1621899121584 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.982331225492613, dt = 0.010169732341296357 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.62 us (1.1%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 394.47 us (95.7%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4127518672412967e-17,5.798094230376441e-18,-1.287233836627619e-17)
sum a = (-5.578512568228886e-17,4.304160056938708e-17,3.948575564484209e-17)
sum e = 4.144510227000899
sum de = -4.980553729855286e-19
Info: CFL hydro = 0.010581931734755466 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010581931734755466 cfl multiplier : 0.9271949384342172 [sph::Model][rank=0]
Info: Timestep 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.1011e+04 | 800 | 1 | 3.807e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 961.5657837005972 (tsim/hr) [sph::Model][rank=0]
---------------- t = 8.99250095783391, dt = 0.0074990421660903195 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (1.1%)
patch tree reduce : 1853.00 ns (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 381.44 us (95.4%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3179393214436141e-17,5.778622459517517e-18,-1.2357085352778517e-17)
sum a = (-1.38086309788849e-16,-8.725749870442003e-17,1.579010833805953e-17)
sum e = 4.144510129428859
sum de = -1.353558649712372e-18
Info: CFL hydro = 0.01085751968059124 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01085751968059124 cfl multiplier : 0.951463292289478 [sph::Model][rank=0]
Info: Timestep 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.0900e+04 | 800 | 1 | 3.828e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 705.2925985612322 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 1189 [SPH][rank=0]
Info: time since start : 908.311089579 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15099129791422325 max=0.15131909924620987 delta=0.0003278013319866213
Number of particle pairs: 319600
Distance min=0.157803 max=2.294459 mean=0.934609
---------------- t = 9, dt = 0.01085751968059124 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.12 us (1.4%)
patch tree reduce : 1603.00 ns (0.2%)
gen split merge : 571.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.1%)
LB compute : 720.04 us (96.8%)
LB move op cnt : 0
LB apply : 4.13 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.141644903743974e-17,4.412602842337638e-18,-1.2503872548484248e-17)
sum a = (1.519037779560468e-16,-1.3636230915357045e-17,1.2421791545171248e-16)
sum e = 4.144510251534544
sum de = 7.826584432629735e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011489105771317898
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3086527845724352e-17,4.833492658595912e-18,-1.1748966970569053e-17)
sum a = (-6.777074956022022e-17,-4.491089057184376e-17,-3.5318796681032416e-17)
sum e = 4.144510015479003
sum de = 1.1909283238395463e-18
Info: CFL hydro = 0.005520636149766705 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005520636149766705 cfl multiplier : 0.483821097429826 [sph::Model][rank=0]
Info: Timestep 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.3416e+04 | 800 | 1 | 5.963e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 655.5062077874685 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.010857519680592, dt = 0.005520636149766705 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (0.6%)
patch tree reduce : 1193.00 ns (0.2%)
gen split merge : 791.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.1%)
LB compute : 670.63 us (97.7%)
LB move op cnt : 0
LB apply : 3.06 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1248692242347473e-17,4.199911191417086e-18,-1.2821412196337467e-17)
sum a = (-7.764743087127737e-18,-4.181937249085772e-17,9.47765979130198e-17)
sum e = 4.14451007599976
sum de = 1.4772254600114998e-18
Info: CFL hydro = 0.007483755983514149 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007483755983514149 cfl multiplier : 0.655880731619884 [sph::Model][rank=0]
Info: Timestep 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.1224e+04 | 800 | 1 | 3.769e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 527.2763535942069 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.016378155830358, dt = 0.007483755983514149 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (0.9%)
patch tree reduce : 992.00 ns (0.2%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 391.84 us (96.6%)
LB move op cnt : 0
LB apply : 2.88 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1542266633758938e-17,3.948275998778687e-18,-1.1790906169342118e-17)
sum a = (8.740129024307054e-17,8.64187147289587e-17,8.243449084551738e-17)
sum e = 4.144510124017628
sum de = -7.182839392716467e-19
Info: CFL hydro = 0.008792826716614337 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008792826716614337 cfl multiplier : 0.770587154413256 [sph::Model][rank=0]
Info: Timestep 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.1490e+04 | 800 | 1 | 3.723e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 723.7129681327993 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.023861911813873, dt = 0.008792826716614337 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.19 us (1.1%)
patch tree reduce : 981.00 ns (0.3%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 671.00 ns (0.2%)
LB compute : 368.17 us (96.1%)
LB move op cnt : 0
LB apply : 3.26 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2656651058300419e-17,5.426632755529281e-18,-1.1047983219647798e-17)
sum a = (1.7990718010823432e-16,3.182586055464702e-17,-1.7698341882234054e-16)
sum e = 4.14451016097604
sum de = 7.758821796849391e-19
Info: CFL hydro = 0.009665875546175831 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009665875546175831 cfl multiplier : 0.8470581029421705 [sph::Model][rank=0]
Info: Timestep 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.1213e+04 | 800 | 1 | 3.771e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 839.3425116160446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.032654738530487, dt = 0.009665875546175831 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (1.1%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 372.61 us (95.9%)
LB move op cnt : 0
LB apply : 3.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4663741285297173e-17,5.308304301848129e-18,-1.3809979024559747e-17)
sum a = (8.51904953363189e-17,3.79130356908521e-17,-8.970195486147876e-17)
sum e = 4.144510184977474
sum de = 9.147955830346444e-20
Info: CFL hydro = 0.01024919782926211 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01024919782926211 cfl multiplier : 0.8980387352947803 [sph::Model][rank=0]
Info: Timestep 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.1377e+04 | 800 | 1 | 3.742e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 929.8033958513317 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.042320614076663, dt = 0.01024919782926211 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (1.0%)
patch tree reduce : 1372.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 394.85 us (95.7%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.519696824112616e-17,5.745670231910108e-18,-1.4436071349100527e-17)
sum a = (-3.2772488184096235e-17,9.19906368516661e-17,1.3681764902596374e-16)
sum e = 4.144510198074479
sum de = 6.810144895924575e-19
Info: CFL hydro = 0.010639985450936078 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010639985450936078 cfl multiplier : 0.9320258235298535 [sph::Model][rank=0]
Info: Timestep 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.0776e+04 | 800 | 1 | 3.851e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 958.2106979208627 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.052569811905926, dt = 0.010639985450936078 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.1%)
patch tree reduce : 1523.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 468.65 us (96.0%)
LB move op cnt : 0
LB apply : 3.42 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4057120731615317e-17,7.216537846022653e-18,-1.184932148191889e-17)
sum a = (-3.149034696446249e-17,-1.112826682872767e-16,6.407111309702471e-17)
sum e = 4.144510203426768
sum de = -8.876905287225068e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01058390778763771
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4199414441738223e-17,6.024266338045478e-18,-1.2250739527318241e-17)
sum a = (-7.417246868722329e-17,2.7500131766910736e-17,-8.930652813018985e-17)
sum e = 4.144510014017218
sum de = -1.5687050183149642e-18
Info: CFL hydro = 0.005451766709156976 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005451766709156976 cfl multiplier : 0.4773419411766178 [sph::Model][rank=0]
Info: Timestep 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.6169e+04 | 800 | 1 | 4.948e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 774.1637613934829 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.063209797356862, dt = 0.005451766709156976 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.3%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 397.95 us (95.5%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3618256973025729e-17,6.878028598782903e-18,-1.3517902461675893e-17)
sum a = (-2.2786165824818065e-16,1.444625658308827e-16,9.454293666271273e-18)
sum e = 4.144510063431644
sum de = 4.438452643612534e-19
Info: CFL hydro = 0.007443268214895852 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007443268214895852 cfl multiplier : 0.6515612941177452 [sph::Model][rank=0]
Info: Timestep 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.1296e+04 | 800 | 1 | 3.757e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 522.4474773156412 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.06866156406602, dt = 0.007443268214895852 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.48 us (1.1%)
patch tree reduce : 992.00 ns (0.2%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 395.67 us (96.1%)
LB move op cnt : 0
LB apply : 3.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1410457723329301e-17,8.142195876085335e-18,-1.315243230093917e-17)
sum a = (-2.429837350629263e-16,9.533379012529055e-17,-4.887714051295376e-17)
sum e = 4.144510102827828
sum de = -2.1141942363467336e-18
Info: CFL hydro = 0.008773327726585692 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008773327726585692 cfl multiplier : 0.7677075294118302 [sph::Model][rank=0]
Info: Timestep 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.1266e+04 | 800 | 1 | 3.762e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 712.2900528532314 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.076104832280915, dt = 0.008773327726585692 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.08 us (1.0%)
patch tree reduce : 1072.00 ns (0.3%)
gen split merge : 712.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 392.98 us (96.2%)
LB move op cnt : 0
LB apply : 3.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.226623730074625e-18,8.983975508601884e-18,-1.3808481196032138e-17)
sum a = (-2.503171035341025e-17,-2.3306211889604087e-17,-1.1955068175968122e-16)
sum e = 4.144510133659512
sum de = -1.3417001884508117e-18
Info: CFL hydro = 0.009663057056965896 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009663057056965896 cfl multiplier : 0.8451383529412201 [sph::Model][rank=0]
Info: Timestep 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.1628e+04 | 800 | 1 | 3.699e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 853.8859884586487 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.0848781600075, dt = 0.009663057056965896 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (0.9%)
patch tree reduce : 1142.00 ns (0.3%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 389.89 us (96.2%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0225675357990173e-17,8.244048215962783e-18,-1.5409659892046712e-17)
sum a = (1.4379153865051364e-18,-1.6817618707999657e-16,-1.0307456795597654e-16)
sum e = 4.144510155543749
sum de = 2.6359665318553827e-18
Info: CFL hydro = 0.010259754117405484 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010259754117405484 cfl multiplier : 0.8967589019608134 [sph::Model][rank=0]
Info: Timestep 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.0658e+04 | 800 | 1 | 3.873e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 898.3083314095699 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.094541217064465, dt = 0.010259754117405484 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.11 us (1.0%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 681.00 ns (0.2%)
LB compute : 396.65 us (96.2%)
LB move op cnt : 0
LB apply : 3.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0358982096947421e-17,5.7336876036892314e-18,-1.6519550831005364e-17)
sum a = (-6.403516521236208e-17,-3.288033183808412e-17,9.130762704307617e-18)
sum e = 4.1445101711459555
sum de = 5.38712954453735e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010687925902091168
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.977035822406993e-18,6.503571466880524e-18,-1.5781121366893873e-17)
sum a = (-1.296520373498798e-17,1.4720658769346333e-17,-1.2893307965662724e-17)
sum e = 4.144510015745252
sum de = -6.301925127571995e-19
Info: CFL hydro = 0.005330966842758027 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005330966842758027 cfl multiplier : 0.46558630065360446 [sph::Model][rank=0]
Info: Timestep 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.5875e+04 | 800 | 1 | 5.039e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 732.9268039212235 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.104800971181872, dt = 0.005330966842758027 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.60 us (1.1%)
patch tree reduce : 1432.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 390.63 us (95.7%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0154528502928722e-17,6.8630503135068074e-18,-1.6073197929777728e-17)
sum a = (-3.6403224535021707e-17,1.322462763596995e-16,-1.7254984638061637e-18)
sum e = 4.144510057182709
sum de = -3.5575383784680614e-19
Info: CFL hydro = 0.00736979544386778 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00736979544386778 cfl multiplier : 0.6437242004357363 [sph::Model][rank=0]
Info: Timestep 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.0634e+04 | 800 | 1 | 3.877e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 495.00320396164153 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.11013193802463, dt = 0.00736979544386778 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.88 us (1.1%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 407.63 us (95.9%)
LB move op cnt : 0
LB apply : 3.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (72.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.764344171486443e-18,8.091269706146612e-18,-1.606720661566729e-17)
sum a = (-1.2773481683453962e-17,2.5816572501877637e-17,1.163992505375908e-16)
sum e = 4.1445100953945095
sum de = -1.6263032587282567e-19
Info: CFL hydro = 0.008724517538189721 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008724517538189721 cfl multiplier : 0.7624828002904908 [sph::Model][rank=0]
Info: Timestep 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.1278e+04 | 800 | 1 | 3.760e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 705.6722199314636 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.117501733468497, dt = 0.008724517538189721 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (1.0%)
patch tree reduce : 1323.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 973.00 ns (0.2%)
LB compute : 418.87 us (96.1%)
LB move op cnt : 0
LB apply : 3.59 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.806283370259509e-18,8.103252334367487e-18,-1.446153443406989e-17)
sum a = (-5.551551654731914e-17,-5.90024613595941e-17,1.4197017916094048e-16)
sum e = 4.144510128698272
sum de = 9.554531645028508e-19
Info: CFL hydro = 0.009625246681184621 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009625246681184621 cfl multiplier : 0.8416552001936605 [sph::Model][rank=0]
Info: Timestep 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.1142e+04 | 800 | 1 | 3.784e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 830.0479254970307 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.126226251006686, dt = 0.009625246681184621 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (1.1%)
patch tree reduce : 1263.00 ns (0.3%)
gen split merge : 1051.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 375.20 us (95.7%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.073845220258456e-18,7.021820137433416e-18,-1.3133709444344052e-17)
sum a = (-4.640871909945328e-17,-6.483500564610556e-17,1.0113338218419459e-17)
sum e = 4.144510156425275
sum de = -1.0791199748019786e-18
Info: CFL hydro = 0.010224451006581915 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010224451006581915 cfl multiplier : 0.8944368001291071 [sph::Model][rank=0]
Info: Timestep 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.1171e+04 | 800 | 1 | 3.779e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 917.0088813478249 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.135851497687872, dt = 0.010224451006581915 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (1.1%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 372.15 us (95.7%)
LB move op cnt : 0
LB apply : 3.07 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.716613116423585e-18,6.335814671788258e-18,-1.3693148399406206e-17)
sum a = (6.142295226021108e-17,1.859928574159118e-17,1.6965005035116434e-16)
sum e = 4.144510180106137
sum de = 6.420509740187597e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011012072685697075
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.215764473249457e-18,6.785163230071113e-18,-1.2813923053699418e-17)
sum a = (-4.0429387617236086e-17,-5.928929552263132e-17,7.872586741115622e-17)
sum e = 4.144510019588492
sum de = 8.267041565201971e-19
Info: CFL hydro = 0.005312406665012257 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005312406665012257 cfl multiplier : 0.4648122667097024 [sph::Model][rank=0]
Info: Timestep 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.5229e+04 | 800 | 1 | 5.253e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 700.6866950535506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.146075948694454, dt = 0.005312406665012257 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.84 us (1.2%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 1162.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.3%)
LB compute : 387.93 us (95.5%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.350394041423058e-18,6.0092880527693825e-18,-1.2692598942963049e-17)
sum a = (-3.424994624373026e-16,-9.869192168419108e-17,1.7317294304810194e-16)
sum e = 4.1445100621506095
sum de = 2.710505431213761e-19
Info: CFL hydro = 0.0073506937091121554 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0073506937091121554 cfl multiplier : 0.6432081778064682 [sph::Model][rank=0]
Info: Timestep 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.0507e+04 | 800 | 1 | 3.901e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 490.2303637192326 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.151388355359467, dt = 0.0073506937091121554 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (1.0%)
patch tree reduce : 951.00 ns (0.2%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 429.92 us (96.3%)
LB move op cnt : 0
LB apply : 3.64 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 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: 3.8762499999999984
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.293326016572034e-18,5.134556192645425e-18,-1.1223229157378111e-17)
sum a = (6.002098475836857e-17,-2.5394484422797275e-16,-2.5235415033165146e-17)
sum e = 4.144510105070336
sum de = 8.114575634696197e-19
Info: CFL hydro = 0.008709662602719947 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008709662602719947 cfl multiplier : 0.7621387852043121 [sph::Model][rank=0]
Info: Timestep 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.1035e+04 | 800 | 1 | 3.803e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 695.8119505810772 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.15873904906858, dt = 0.008709662602719947 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (1.1%)
patch tree reduce : 812.00 ns (0.2%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.2%)
LB compute : 371.82 us (96.1%)
LB move op cnt : 0
LB apply : 3.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 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: 3.8762499999999984
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.989055138391958e-18,2.3935299871200084e-18,-1.2029435362363935e-17)
sum a = (6.494584495714867e-18,1.4433075692045306e-17,-2.245544528592188e-17)
sum e = 4.1445101448086525
sum de = 8.487270131488089e-19
Info: CFL hydro = 0.009616782886492247 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009616782886492247 cfl multiplier : 0.8414258568028746 [sph::Model][rank=0]
Info: Timestep 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.1243e+04 | 800 | 1 | 3.766e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 832.5955397585295 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.1674487116713, dt = 0.009616782886492247 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.2%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1233.00 ns (0.3%)
LB compute : 380.67 us (95.6%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.8762499999999984
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.985029724224008e-18,3.75355829018945e-18,-1.2290244754733942e-17)
sum a = (1.5519900071678773e-16,-1.0765193193635121e-16,1.0729245308972493e-16)
sum e = 4.14451017931621
sum de = -8.847259134071167e-19
Info: CFL hydro = 0.010223778335791892 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010223778335791892 cfl multiplier : 0.8942839045352496 [sph::Model][rank=0]
Info: Timestep 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.1423e+04 | 800 | 1 | 3.734e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 927.070092543937 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.177065494557793, dt = 0.010223778335791892 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.83 us (1.2%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 682.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 375.07 us (95.5%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999984
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.186931274092973e-18,2.031055483438505e-18,-1.0767889284984818e-17)
sum a = (-4.330521839024636e-17,-4.4042150025830244e-17,1.0355387308481157e-16)
sum e = 4.14451020859353
sum de = -1.844837759119866e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010226229882459126
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.267451786706681e-18,2.183833993254676e-18,-1.0681389687515368e-17)
sum a = (3.061561510433853e-17,-1.0765193193635121e-16,7.249490073630063e-17)
sum e = 4.144510023590998
sum de = -7.116664943712225e-19
Info: CFL hydro = 0.00531631722658007 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00531631722658007 cfl multiplier : 0.4647613015117498 [sph::Model][rank=0]
Info: Timestep 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.6067e+04 | 800 | 1 | 4.979e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 739.1808232829577 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.187289272893585, dt = 0.00531631722658007 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (1.0%)
patch tree reduce : 1263.00 ns (0.3%)
gen split merge : 1182.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 412.10 us (95.7%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (74.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: 3.8762499999999984
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.701260374015587e-18,1.1623149374249853e-18,-1.076339579940199e-17)
sum a = (-1.1203757386519187e-16,8.265616946760359e-17,-1.0187630513388891e-16)
sum e = 4.144510072782531
sum de = -4.429982314139991e-19
Info: CFL hydro = 0.007359338408377318 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007359338408377318 cfl multiplier : 0.6431742010078332 [sph::Model][rank=0]
Info: Timestep 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.1235e+04 | 800 | 1 | 3.767e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 508.0020631359136 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.192605590120165, dt = 0.007359338408377318 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.3%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 378.31 us (95.3%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.8762499999999984
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.648286919106096e-18,2.4744127276109223e-18,-1.1729495199710128e-17)
sum a = (6.999053143813752e-17,6.625195143322416e-17,6.79894325252512e-17)
sum e = 4.144510121951943
sum de = -1.2112571145736495e-18
Info: CFL hydro = 0.008724638902564282 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008724638902564282 cfl multiplier : 0.7621161340052222 [sph::Model][rank=0]
Info: Timestep 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.1249e+04 | 800 | 1 | 3.765e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 703.7007124217993 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.199964928528543, dt = 0.008724638902564282 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.42 us (1.1%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 399.55 us (96.0%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999984
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.001949450933198e-18,2.953717856445968e-18,-1.044211158022975e-17)
sum a = (6.999053143813752e-17,-1.2814222619404942e-16,2.509162349451463e-17)
sum e = 4.144510166166747
sum de = -3.218725199566341e-20
Info: CFL hydro = 0.009639181163914502 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009639181163914502 cfl multiplier : 0.8414107560034815 [sph::Model][rank=0]
Info: Timestep 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.0581e+04 | 800 | 1 | 3.887e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 808.0476346746847 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.208689567431106, dt = 0.009639181163914502 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.3%)
patch tree reduce : 1513.00 ns (0.3%)
gen split merge : 1152.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 428.57 us (95.7%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.557643834676329e-18,8.357883184061105e-19,-1.0331272269186644e-17)
sum a = (-8.418994587987574e-17,7.894155471913199e-17,1.138349680983233e-17)
sum e = 4.144510202075644
sum de = 5.946171289725188e-19
Info: CFL hydro = 0.010245906777194207 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010245906777194207 cfl multiplier : 0.8942738373356542 [sph::Model][rank=0]
Info: Timestep 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.0465e+04 | 800 | 1 | 3.909e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 887.703494485743 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.21832874859502, dt = 0.010245906777194207 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (1.5%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 390.34 us (95.0%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.032105479306035e-18,2.8039350036850162e-18,-1.0112589304155655e-17)
sum a = (1.0622599917806696e-16,4.4815029546076753e-17,8.713767242221127e-17)
sum e = 4.144510228847837
sum de = -8.538092108323347e-19
Info: CFL hydro = 0.010644860866022888 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010644860866022888 cfl multiplier : 0.9295158915571028 [sph::Model][rank=0]
Info: Timestep 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.0511e+04 | 800 | 1 | 3.900e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 945.7042336760888 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.228574655372215, dt = 0.010644860866022888 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.4%)
patch tree reduce : 1864.00 ns (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 385.05 us (95.1%)
LB move op cnt : 0
LB apply : 4.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.775577885443513e-18,2.863848144789397e-18,-9.09181916258977e-18)
sum a = (1.0982677895844024e-16,-4.7654912434424395e-17,-3.3263775941152156e-17)
sum e = 4.144510246906491
sum de = -9.994988777600744e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010940094481791875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0039195706302788e-17,2.4684214135004844e-18,-9.95906188007568e-18)
sum a = (1.4894406878549038e-16,-9.241002883939676e-17,3.231714831170294e-17)
sum e = 4.144510026779253
sum de = -4.438452643612534e-19
Info: CFL hydro = 0.005453957615991355 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005453957615991355 cfl multiplier : 0.4765052971857009 [sph::Model][rank=0]
Info: Timestep 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.5587e+04 | 800 | 1 | 5.132e-02 | 0.0% | 1.8% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 746.654887393424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.239219516238238, dt = 0.005453957615991355 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.3%)
patch tree reduce : 1913.00 ns (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 400.26 us (95.4%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1193272586825922e-17,1.894753087426039e-18,-8.774279514736551e-18)
sum a = (1.4150884797443674e-16,-2.42528395190533e-17,4.920067147491742e-17)
sum e = 4.144510083889439
sum de = 1.2671612890924333e-18
Info: CFL hydro = 0.007449175252387146 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007449175252387146 cfl multiplier : 0.651003531457134 [sph::Model][rank=0]
Info: Timestep 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.0603e+04 | 800 | 1 | 3.883e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 505.64770823018904 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.24467347385423, dt = 0.007449175252387146 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.1%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 407.98 us (95.8%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.194218685063068e-17,1.7449702346650873e-18,-8.669431517803885e-18)
sum a = (1.796195970309333e-17,1.403045938382387e-16,-7.865397164183096e-17)
sum e = 4.144510132971565
sum de = 2.1243586317137853e-18
Info: CFL hydro = 0.008777818977673577 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008777818977673577 cfl multiplier : 0.7673356876380893 [sph::Model][rank=0]
Info: Timestep 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.0676e+04 | 800 | 1 | 3.869e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 693.099124370371 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.252122649106617, dt = 0.008777818977673577 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.3%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 386.84 us (95.4%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.198936844925038e-17,3.521394868409975e-18,-9.783815942345366e-18)
sum a = (1.5864999764440005e-17,2.6996861381633937e-17,-6.97988093866035e-17)
sum e = 4.144510172468507
sum de = 1.5077186461126546e-18
Info: CFL hydro = 0.009662970098349644 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009662970098349644 cfl multiplier : 0.8448904584253928 [sph::Model][rank=0]
Info: Timestep 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.0982e+04 | 800 | 1 | 3.813e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 828.7754826184796 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.26090046808429, dt = 0.009662970098349644 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (1.1%)
patch tree reduce : 1102.00 ns (0.2%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 428.02 us (96.0%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1936944450784047e-17,3.3027119033789852e-18,-1.051625409234642e-17)
sum a = (2.9261578115379526e-17,-4.098058851539639e-18,3.930302056447373e-17)
sum e = 4.144510199630893
sum de = 9.554531645028508e-19
Info: CFL hydro = 0.010253357020445296 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010253357020445296 cfl multiplier : 0.8965936389502618 [sph::Model][rank=0]
Info: Timestep 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.1146e+04 | 800 | 1 | 3.783e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 919.4804130876023 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.27056343818264, dt = 0.010253357020445296 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.3%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.2%)
LB compute : 378.99 us (95.3%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.217659701520157e-17,2.931250428531825e-18,-9.295523842344663e-18)
sum a = (-4.410805448104506e-17,-7.098508958047024e-17,-7.945680773262967e-17)
sum e = 4.144510215521569
sum de = -9.24959978401696e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01007067708104925
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1684560343881843e-17,2.974687455832501e-18,-1.0315545069646745e-17)
sum a = (3.576514958226005e-16,7.623348074121399e-17,-7.103302009335374e-17)
sum e = 4.1445100261111785
sum de = 9.622294280808852e-19
Info: CFL hydro = 0.005324555736644064 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005324555736644064 cfl multiplier : 0.4655312129834206 [sph::Model][rank=0]
Info: Timestep 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.5722e+04 | 800 | 1 | 5.088e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 725.4062797101169 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.280816795203085, dt = 0.005324555736644064 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.93 us (1.2%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.2%)
LB compute : 405.54 us (95.8%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.571896148299808e-17,3.9812282263860964e-18,-1.0300566784370649e-17)
sum a = (-4.32333226209211e-17,-2.8782272986544483e-17,-6.518549752156619e-18)
sum e = 4.144510076853129
sum de = -1.8634724839594607e-19
Info: CFL hydro = 0.007362847223349405 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007362847223349405 cfl multiplier : 0.6436874753222804 [sph::Model][rank=0]
Info: Timestep 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.0816e+04 | 800 | 1 | 3.843e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 498.76256886805226 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.28614135093973, dt = 0.007362847223349405 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.3%)
patch tree reduce : 1362.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 381.92 us (95.3%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4519200832382853e-17,3.415049042949699e-18,-1.0405414781303315e-17)
sum a = (-2.50426445016618e-16,-1.79260118184307e-17,1.0009089352897837e-16)
sum e = 4.144510119821705
sum de = 1.4264034831762418e-18
Info: CFL hydro = 0.008723194143456644 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008723194143456644 cfl multiplier : 0.7624583168815203 [sph::Model][rank=0]
Info: Timestep 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.0505e+04 | 800 | 1 | 3.901e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 679.3908004816708 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.29350419816308, dt = 0.008723194143456644 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (1.1%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 396.00 us (95.7%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1277150984372055e-17,3.471966526998861e-18,-9.048382135289094e-18)
sum a = (-6.88536795856819e-17,-2.367048378751872e-16,-4.8871149198843325e-17)
sum e = 4.144510152953468
sum de = 9.283481101907132e-19
Info: CFL hydro = 0.009632607872486853 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009632607872486853 cfl multiplier : 0.8416388779210134 [sph::Model][rank=0]
Info: Timestep 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.1580e+04 | 800 | 1 | 3.707e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 847.1180980196859 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.302227392306536, dt = 0.009632607872486853 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.5%)
patch tree reduce : 1773.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 381.50 us (95.1%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1442661036672907e-17,1.2581759631919945e-19,-1.0394929981610049e-17)
sum a = (-3.03898174538014e-17,-2.921364760249602e-17,-1.4409110435603556e-17)
sum e = 4.14451017465567
sum de = 1.1519648082658485e-19
Info: CFL hydro = 0.01023763092796408 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01023763092796408 cfl multiplier : 0.8944259186140089 [sph::Model][rank=0]
Info: Timestep 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.0460e+04 | 800 | 1 | 3.910e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 886.8556140692867 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.311860000179022, dt = 0.01023763092796408 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.3%)
patch tree reduce : 1402.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 409.06 us (95.5%)
LB move op cnt : 0
LB apply : 3.56 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1642621145108776e-17,7.234511788353968e-19,-1.0344003811671325e-17)
sum a = (2.136173089506141e-16,1.6559992201250822e-17,1.1850519744740978e-16)
sum e = 4.144510187073832
sum de = -3.3881317890172014e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01019024259019483
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.282515676765649e-17,9.825755141118433e-19,-9.61456131872549e-18)
sum a = (-2.2673379336689063e-16,-2.442538936543392e-16,3.652305081723047e-17)
sum e = 4.144510025913056
sum de = -1.0503208545953324e-18
Info: CFL hydro = 0.005320478293740606 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005320478293740606 cfl multiplier : 0.46480863953800294 [sph::Model][rank=0]
Info: Timestep 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.5734e+04 | 800 | 1 | 5.084e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 724.8658339900217 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.322097631106987, dt = 0.005320478293740606 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.2%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.3%)
LB compute : 389.25 us (95.4%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.055122363663336e-18,-1.6311352665667641e-18,-9.938092280689146e-18)
sum a = (1.595546860750762e-16,-2.176764242604359e-16,-7.063160204795438e-17)
sum e = 4.144510069106489
sum de = -1.3586408473958977e-18
Info: CFL hydro = 0.007362756135991408 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007362756135991408 cfl multiplier : 0.6432057596920019 [sph::Model][rank=0]
Info: Timestep 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.1292e+04 | 800 | 1 | 3.757e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 509.7843705748683 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.327418109400726, dt = 0.007362756135991408 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.3%)
patch tree reduce : 1813.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 388.35 us (95.3%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1565482975936887e-17,-3.1506823078266193e-18,-1.0703482658297609e-17)
sum a = (-2.5267019215097706e-16,-1.0321835949462705e-16,-6.987931766996251e-18)
sum e = 4.144510106200561
sum de = 9.012430558785756e-19
Info: CFL hydro = 0.008725343597667336 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008725343597667336 cfl multiplier : 0.7621371731280012 [sph::Model][rank=0]
Info: Timestep 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.0702e+04 | 800 | 1 | 3.864e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 685.8977392859233 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.334780865536718, dt = 0.008725343597667336 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.5%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 382.27 us (95.0%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.70557886028716e-18,-3.6067710944837174e-18,-1.0366471239585468e-17)
sum a = (7.050878010869041e-17,2.072874855929363e-16,-4.695692434055836e-18)
sum e = 4.14451013608025
sum de = -1.229891839413244e-18
Info: CFL hydro = 0.009635837311591585 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009635837311591585 cfl multiplier : 0.8414247820853342 [sph::Model][rank=0]
Info: Timestep 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.0844e+04 | 800 | 1 | 3.838e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 818.4264161385771 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.343506209134386, dt = 0.009635837311591585 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.3%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 396.56 us (95.4%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.878179139584766e-18,-4.624545578994384e-19,-1.0387440838972001e-17)
sum a = (2.7587005821512088e-17,1.900684488395373e-16,6.172251796573299e-17)
sum e = 4.1445101582722925
sum de = 1.1756817307889689e-18
Info: CFL hydro = 0.010242198945970435 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010242198945970435 cfl multiplier : 0.8942831880568894 [sph::Model][rank=0]
Info: Timestep 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.0827e+04 | 800 | 1 | 3.841e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 903.0976144718438 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.353142046445978, dt = 0.010242198945970435 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.48 us (1.0%)
patch tree reduce : 1413.00 ns (0.3%)
gen split merge : 1123.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 416.64 us (95.9%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.69619297348021e-18,1.6793466222991956e-18,-9.825755141118433e-18)
sum a = (2.0637680584814972e-16,1.4087975999284074e-16,-3.9446812103124245e-17)
sum e = 4.144510175096431
sum de = -4.008159906407349e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010344482389273548
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.066753477363498e-17,1.2475975492157522e-18,-9.972542336824165e-18)
sum a = (4.0681022809874486e-18,1.8812726306775535e-18,1.9713819948985422e-16)
sum e = 4.144510028079374
sum de = -7.589415207398531e-19
Info: CFL hydro = 0.005322534703623294 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005322534703623294 cfl multiplier : 0.4647610626856298 [sph::Model][rank=0]
Info: Timestep 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.5767e+04 | 800 | 1 | 5.074e-02 | 0.0% | 1.8% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 726.6856438402443 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.363384245391948, dt = 0.005322534703623294 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.3%)
patch tree reduce : 1362.00 ns (0.3%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 394.98 us (95.6%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.7104223444925e-18,6.2768376735136325e-19,-7.82016274264929e-18)
sum a = (1.0653754751180974e-16,-1.3557145569099261e-16,-1.4660745628241955e-17)
sum e = 4.1445100672159265
sum de = -6.945670167485263e-19
Info: CFL hydro = 0.007364110736299909 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007364110736299909 cfl multiplier : 0.6431740417904198 [sph::Model][rank=0]
Info: Timestep 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.1185e+04 | 800 | 1 | 3.776e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 507.399103164993 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.368706780095572, dt = 0.007364110736299909 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.78 us (1.2%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 390.10 us (95.3%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0990316821334832e-17,-5.763831402807373e-19,-8.241052558907563e-18)
sum a = (1.5678370329899859e-16,-5.5263881354680746e-17,1.591472767155664e-16)
sum e = 4.1445101045162085
sum de = -9.893344823930228e-19
Info: CFL hydro = 0.00872413431928865 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00872413431928865 cfl multiplier : 0.7621160278602798 [sph::Model][rank=0]
Info: Timestep 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.1228e+04 | 800 | 1 | 3.769e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 703.4703887473515 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.37607089083187, dt = 0.00872413431928865 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (1.1%)
patch tree reduce : 1033.00 ns (0.3%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.2%)
LB compute : 390.95 us (96.0%)
LB move op cnt : 0
LB apply : 3.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2358583181306126e-17,-1.0907936252316309e-18,-6.520047580684228e-18)
sum a = (-6.959510470684861e-17,-1.1819664477072223e-16,1.485366594259806e-16)
sum e = 4.144510138039175
sum de = 1.1689054672109345e-18
Info: CFL hydro = 0.009630823195206813 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009630823195206813 cfl multiplier : 0.8414106852401865 [sph::Model][rank=0]
Info: Timestep 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.1329e+04 | 800 | 1 | 3.751e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 837.3529744334353 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.38479502515116, dt = 0.009630823195206813 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.2%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 1162.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 391.71 us (95.5%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.8762500000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.091916996627338e-17,-2.4508219283010722e-18,-4.9847733398844734e-18)
sum a = (1.9748569570825963e-16,3.9099315884718836e-17,-1.2701585914128706e-17)
sum e = 4.144510166983781
sum de = -1.1350241493207625e-18
Info: CFL hydro = 0.010236489340362281 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010236489340362281 cfl multiplier : 0.8942737901601244 [sph::Model][rank=0]
Info: Timestep 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.1528e+04 | 800 | 1 | 3.716e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 933.0090031587013 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.394425848346367, dt = 0.010236489340362281 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.58 us (1.1%)
patch tree reduce : 941.00 ns (0.2%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 388.71 us (95.9%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3876632394038372e-17,-1.0735685971641213e-18,-5.886466113505402e-18)
sum a = (4.749314695344257e-17,-1.420061270456031e-16,-1.3612265658915292e-17)
sum e = 4.144510192539248
sum de = 1.4738373282224826e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010252665976788197
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3387591379773865e-17,-2.172974736429507e-18,-5.976335825161973e-18)
sum a = (-1.436896863106362e-16,-9.592093890811348e-17,4.2166868709263124e-17)
sum e = 4.144510032336857
sum de = 7.301424005332069e-19
Info: CFL hydro = 0.005320606579421995 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005320606579421995 cfl multiplier : 0.46475793005337485 [sph::Model][rank=0]
Info: Timestep 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.4730e+04 | 800 | 1 | 5.431e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 678.53245583095 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.40466233768673, dt = 0.005320606579421995 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (1.1%)
patch tree reduce : 1142.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 381.23 us (95.7%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.143217623697964e-17,-2.3995213012304463e-18,-5.494035039271709e-18)
sum a = (1.3651808332044184e-16,1.7506619830700036e-17,-7.247093547985888e-17)
sum e = 4.144510074807454
sum de = -1.4704491964334654e-18
Info: CFL hydro = 0.007363015693631359 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007363015693631359 cfl multiplier : 0.6431719533689165 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 9.8799e+03 | 800 | 1 | 8.097e-02 | 0.0% | 0.8% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 236.55269588594896 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.409982944266153, dt = 0.007363015693631359 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.5%)
patch tree reduce : 1754.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 393.14 us (95.1%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3188380185601798e-17,-1.9771336564445627e-18,-6.2654167309906105e-18)
sum a = (-1.3491241113884444e-16,-5.189676282461455e-17,-1.0698090475598215e-16)
sum e = 4.144510118482372
sum de = -8.538092108323347e-19
Info: CFL hydro = 0.008725209388944518 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008725209388944518 cfl multiplier : 0.7621146355792776 [sph::Model][rank=0]
Info: Timestep 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.5555e+04 | 800 | 1 | 5.143e-02 | 0.0% | 1.1% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 515.3808385409055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.417345959959784, dt = 0.008725209388944518 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.79 us (1.2%)
patch tree reduce : 1452.00 ns (0.4%)
gen split merge : 1233.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 382.83 us (95.6%)
LB move op cnt : 0
LB apply : 3.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0985823335752003e-17,-2.7065761493903976e-18,-7.388788126697748e-18)
sum a = (2.293250367196551e-16,-7.683261215225779e-17,-1.2221082522471572e-16)
sum e = 4.144510159434932
sum de = 1.1350241493207625e-19
Info: CFL hydro = 0.009634831503216848 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009634831503216848 cfl multiplier : 0.8414097570528517 [sph::Model][rank=0]
Info: Timestep 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.0439e+04 | 800 | 1 | 3.914e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 802.523563061886 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.42607116934873, dt = 0.009634831503216848 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (1.0%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 404.09 us (95.8%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.463378471474498e-17,-3.325928245556933e-18,-8.377354954920029e-18)
sum a = (-7.97144342393785e-17,-1.7853516917694402e-16,-2.4324735288378557e-17)
sum e = 4.144510195357367
sum de = 6.708500942254059e-19
Info: CFL hydro = 0.010243697792799274 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010243697792799274 cfl multiplier : 0.8942731713685678 [sph::Model][rank=0]
Info: Timestep 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.0670e+04 | 800 | 1 | 3.870e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 896.1679201872279 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.435706000851946, dt = 0.010243697792799274 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.90 us (1.2%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.2%)
LB compute : 393.11 us (95.7%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2559292204005801e-17,-5.630337435284175e-18,-8.293476557373897e-18)
sum a = (-2.1184238214539684e-16,-1.1077939790199989e-17,-1.0752012302592158e-16)
sum e = 4.144510225952084
sum de = 1.5341884257143515e-19
Info: CFL hydro = 0.010648063599263229 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010648063599263229 cfl multiplier : 0.9295154475790453 [sph::Model][rank=0]
Info: Timestep 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.1253e+04 | 800 | 1 | 3.764e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 979.6828261934686 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.445949698644744, dt = 0.010648063599263229 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.16 us (1.1%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 374.00 us (95.7%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.578613434062862e-18,-4.8192632875836216e-18,-9.863949768572475e-18)
sum a = (-5.392931613658066e-17,-6.561088082340729e-17,-2.887813401231149e-17)
sum e = 4.144510251116002
sum de = -1.999844788467403e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010600854193163126
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0428631123481264e-17,-5.353239157676414e-18,-9.291779271025639e-18)
sum a = (1.0364935965344668e-16,-2.644506135206259e-16,-1.0409309135475101e-16)
sum e = 4.14451003911624
sum de = -1.0621793158568926e-18
Info: CFL hydro = 0.005458228695246597 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005458228695246597 cfl multiplier : 0.47650514919301507 [sph::Model][rank=0]
Info: Timestep 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.6121e+04 | 800 | 1 | 4.962e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 772.456614660262 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.456597762244007, dt = 0.005458228695246597 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.36 us (1.1%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1071.00 ns (0.3%)
LB compute : 391.97 us (95.7%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (72.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1841083425017038e-17,-7.70557886028716e-18,-1.0351492954309373e-17)
sum a = (-2.600986727336565e-16,1.0920368229095468e-16,-7.13086205424339e-17)
sum e = 4.14451009384445
sum de = -1.5161889755851976e-19
Info: CFL hydro = 0.007456364873674695 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007456364873674695 cfl multiplier : 0.6510034327953433 [sph::Model][rank=0]
Info: Timestep 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.1389e+04 | 800 | 1 | 3.740e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 525.3546720776941 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.462055990939254, dt = 0.007456364873674695 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.42 us (1.1%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 394.95 us (95.8%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.98322659433808e-18,-5.9141759412661785e-18,-1.09536200224084e-17)
sum a = (1.2899598845478683e-16,1.2978384626030943e-16,6.529334117555407e-17)
sum e = 4.144510144960064
sum de = 1.2112571145736495e-18
Info: CFL hydro = 0.008788048484323088 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008788048484323088 cfl multiplier : 0.7673356218635622 [sph::Model][rank=0]
Info: Timestep 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.1367e+04 | 800 | 1 | 3.744e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 716.9461543800776 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.469512355812927, dt = 0.008788048484323088 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (1.0%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 405.78 us (95.9%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.133931086826785e-17,-4.738380547092708e-18,-9.75460828605698e-18)
sum a = (-1.0634582546027572e-16,2.6960913496971307e-19,-8.452545947006027e-17)
sum e = 4.144510189453459
sum de = 8.402566836762659e-19
Info: CFL hydro = 0.009675881825014044 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009675881825014044 cfl multiplier : 0.844890414575708 [sph::Model][rank=0]
Info: Timestep 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.1225e+04 | 800 | 1 | 3.769e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 839.3563586120789 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.47830040429725, dt = 0.009675881825014044 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (0.9%)
patch tree reduce : 822.00 ns (0.2%)
gen split merge : 621.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 702.00 ns (0.2%)
LB compute : 436.71 us (97.0%)
LB move op cnt : 0
LB apply : 2.74 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.288783613970421e-18,-5.032703852767977e-18,-1.1219484586059089e-17)
sum a = (2.285686333132123e-17,1.0716363983635052e-16,2.375196565942068e-16)
sum e = 4.144510223892749
sum de = -7.148958074826295e-19
Info: CFL hydro = 0.010268363208198062 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010268363208198062 cfl multiplier : 0.8965936097171386 [sph::Model][rank=0]
Info: Timestep 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.1153e+04 | 800 | 1 | 3.782e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 921.0507379739083 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.487976286122265, dt = 0.010268363208198062 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 us (1.0%)
patch tree reduce : 992.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 681.00 ns (0.2%)
LB compute : 360.34 us (96.1%)
LB move op cnt : 0
LB apply : 3.12 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0200961187284616e-17,-3.579810180986746e-18,-7.073869678767847e-18)
sum a = (9.339859566761905e-17,-1.4400572812996181e-16,-1.1946680336213509e-17)
sum e = 4.144510247971784
sum de = 1.7414997395548415e-18
Info: CFL hydro = 0.010663569651124277 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010663569651124277 cfl multiplier : 0.9310624064780925 [sph::Model][rank=0]
Info: Timestep 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.1342e+04 | 800 | 1 | 3.748e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 986.1707745172415 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.498244649330463, dt = 0.0017553506695371368 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.4%)
patch tree reduce : 1442.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 384.12 us (95.2%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0605374889739186e-17,-5.4168968700998185e-18,-8.513095665234642e-18)
sum a = (7.173999515838543e-17,-3.737980873502311e-17,2.0890514040275458e-16)
sum e = 4.144510045913968
sum de = 6.183340514956392e-19
Info: CFL hydro = 0.010926860942999649 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010926860942999649 cfl multiplier : 0.9540416043187282 [sph::Model][rank=0]
Info: Timestep 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.0958e+04 | 800 | 1 | 3.817e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 165.54836201514973 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 1249 [SPH][rank=0]
Info: time since start : 911.752172898 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15099818345513275 max=0.1513037293878772 delta=0.0003055459327444554
Number of particle pairs: 319600
Distance min=0.156487 max=2.293717 mean=0.934519
---------------- t = 9.5, dt = 0.010926860942999649 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.22 us (1.5%)
patch tree reduce : 1302.00 ns (0.2%)
gen split merge : 541.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.1%)
LB compute : 658.11 us (96.2%)
LB move op cnt : 0
LB apply : 5.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (78.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1480855664126948e-17,-5.803336630223074e-18,-5.8612838713849676e-18)
sum a = (-6.419093937923346e-17,-1.0622450134953935e-16,1.1596787592163926e-16)
sum e = 4.144510272911078
sum de = 1.1655173354219173e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011092067771412932
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.07491664283897e-17,-5.756155031603375e-18,-6.453113368356678e-18)
sum a = (-2.1428534047392796e-16,1.4421392629529954e-16,1.22474443045575e-16)
sum e = 4.144510040374252
sum de = 6.166399856011306e-19
Info: CFL hydro = 0.0055503692719472775 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0055503692719472775 cfl multiplier : 0.48468053477290934 [sph::Model][rank=0]
Info: Timestep 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.4993e+04 | 800 | 1 | 5.336e-02 | 0.1% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 737.238825331926 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.510926860943, dt = 0.0055503692719472775 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (1.2%)
patch tree reduce : 1372.00 ns (0.3%)
gen split merge : 1022.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 400.18 us (95.6%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.823707856147665e-18,-4.093565365956811e-18,-5.656268591668415e-18)
sum a = (-1.2295374817441005e-16,2.727732977342882e-17,-4.3137461595154094e-19)
sum e = 4.144510099843555
sum de = -3.049318610115481e-19
Info: CFL hydro = 0.0075171258614126785 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0075171258614126785 cfl multiplier : 0.6564536898486062 [sph::Model][rank=0]
Info: Timestep 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.1300e+04 | 800 | 1 | 3.756e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 531.9927877176682 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.516477230214948, dt = 0.0075171258614126785 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.98 us (1.0%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 387.15 us (95.8%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.130962162128264e-18,-3.866644344023969e-18,-6.087736821902931e-18)
sum a = (-6.059015959886018e-17,-1.4046598486208863e-16,-3.887164594852219e-17)
sum e = 4.14451014716894
sum de = 3.2526065174565133e-19
Info: CFL hydro = 0.00882842924250159 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00882842924250159 cfl multiplier : 0.7709691265657375 [sph::Model][rank=0]
Info: Timestep 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.0243e+04 | 800 | 1 | 3.952e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 684.7517405595593 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.52399435607636, dt = 0.00882842924250159 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.56 us (1.1%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 383.78 us (95.7%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.649410290501805e-18,-5.871487828229307e-18,-6.469121410745505e-18)
sum a = (1.7902046561988948e-17,-1.504456418844189e-17,-1.4651159525665254e-16)
sum e = 4.14451018360535
sum de = 2.236166980751353e-19
Info: CFL hydro = 0.009699013822395087 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009699013822395087 cfl multiplier : 0.847312751043825 [sph::Model][rank=0]
Info: Timestep 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.1214e+04 | 800 | 1 | 3.771e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 842.7943213592108 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.532822785318862, dt = 0.009699013822395087 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (1.0%)
patch tree reduce : 621.00 ns (0.1%)
gen split merge : 702.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 401.48 us (96.6%)
LB move op cnt : 0
LB apply : 2.88 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.182637246330793e-18,-5.6655364056829985e-18,-8.666061403616763e-18)
sum a = (6.75940057939623e-17,4.705578102338059e-17,-8.342305767373966e-17)
sum e = 4.144510206889871
sum de = -5.21772295508649e-19
Info: CFL hydro = 0.010275264339594633 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010275264339594633 cfl multiplier : 0.8982085006958833 [sph::Model][rank=0]
Info: Timestep 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.1105e+04 | 800 | 1 | 3.791e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 921.1562742125843 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.542521799141257, dt = 0.010275264339594633 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.12 us (1.9%)
patch tree reduce : 1413.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 410.51 us (95.1%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.175697560135902e-18,-4.929353684362921e-18,-9.036399507068217e-18)
sum a = (6.274104136450746e-17,2.1088077623067152e-16,-1.7644420055240113e-16)
sum e = 4.144510218768575
sum de = -1.0028870095490916e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010654447840181255
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.186182359829168e-18,-3.971492340956635e-18,-9.609318918878857e-18)
sum a = (1.157881364983261e-16,2.909831480587009e-17,7.525090522710215e-17)
sum e = 4.144510039144414
sum de = 3.049318610115481e-19
Info: CFL hydro = 0.005329739024249201 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005329739024249201 cfl multiplier : 0.4660695002319611 [sph::Model][rank=0]
Info: Timestep 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.6094e+04 | 800 | 1 | 4.971e-02 | 0.1% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 744.1441620322607 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.55279706348085, dt = 0.005329739024249201 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (1.2%)
patch tree reduce : 1683.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 403.36 us (95.8%)
LB move op cnt : 0
LB apply : 3.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.987520622100261e-18,-4.2650667323681e-18,-7.69284731780248e-18)
sum a = (1.4566082865297031e-16,1.198772083787001e-16,-1.590334417474681e-16)
sum e = 4.144510087233572
sum de = -1.5551524911588954e-18
Info: CFL hydro = 0.00736364225027307 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00736364225027307 cfl multiplier : 0.644046333487974 [sph::Model][rank=0]
Info: Timestep 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.1239e+04 | 800 | 1 | 3.767e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 509.3873034731365 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.5581268025051, dt = 0.00736364225027307 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (0.9%)
patch tree reduce : 1163.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 373.37 us (96.3%)
LB move op cnt : 0
LB apply : 2.62 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 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: 3.8762499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1251687899402693e-17,-3.479455669636909e-18,-9.578613434062862e-18)
sum a = (-8.500476459889532e-17,-1.8732892046253947e-16,-1.133316977130465e-16)
sum e = 4.144510126760775
sum de = -3.6591823321385775e-19
Info: CFL hydro = 0.00871890118193661 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00871890118193661 cfl multiplier : 0.7626975556586494 [sph::Model][rank=0]
Info: Timestep 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.1213e+04 | 800 | 1 | 3.771e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 702.9319422411639 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.565490444755373, dt = 0.00871890118193661 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (1.1%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 378.54 us (95.7%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.466276294492148e-18,-6.170304619487406e-18,-1.0461583351088672e-17)
sum a = (-9.322484755841634e-18,-1.2585653986091728e-16,1.1431427322715835e-17)
sum e = 4.144510156564978
sum de = 9.622294280808852e-19
Info: CFL hydro = 0.009622810489572848 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009622810489572848 cfl multiplier : 0.8417983704390997 [sph::Model][rank=0]
Info: Timestep 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.1126e+04 | 800 | 1 | 3.787e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 828.8680008964635 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.574209345937309, dt = 0.009622810489572848 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.1%)
patch tree reduce : 1512.00 ns (0.4%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 371.28 us (95.9%)
LB move op cnt : 0
LB apply : 3.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.714915830075328e-18,-7.027811451543854e-18,-9.859456282989646e-18)
sum a = (1.5590597578181942e-16,-8.747917732650623e-17,-5.924810523812206e-17)
sum e = 4.144510175664156
sum de = 1.633079522306291e-18
Info: CFL hydro = 0.01022025183737303 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01022025183737303 cfl multiplier : 0.8945322469593998 [sph::Model][rank=0]
Info: Timestep 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.1179e+04 | 800 | 1 | 3.777e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 917.091395899117 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.583832156426881, dt = 0.01022025183737303 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.21 us (1.0%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 400.44 us (96.1%)
LB move op cnt : 0
LB apply : 3.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2446955064435087e-17,-7.867344341268988e-18,-1.0666785859371176e-17)
sum a = (-3.184982581108877e-17,1.2591645300202167e-16,-8.422589376453836e-17)
sum e = 4.144510186503339
sum de = -1.412850956020173e-18
Info: CFL hydro = 0.010618251764900862 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010618251764900862 cfl multiplier : 0.9296881646395999 [sph::Model][rank=0]
Info: Timestep 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.0719e+04 | 800 | 1 | 3.861e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 952.8933532805173 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.594052408264254, dt = 0.010618251764900862 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (1.0%)
patch tree reduce : 1001.00 ns (0.2%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.2%)
LB compute : 406.63 us (96.1%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1130363788666322e-17,-5.254382474854186e-18,-1.1770685484219391e-17)
sum a = (5.600680430437506e-17,-3.3880881294527276e-18,5.245395503688529e-17)
sum e = 4.144510192587276
sum de = 3.4728350837426314e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01071589849712039
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.141345338038452e-17,-5.9501238259288066e-18,-1.0992563564126247e-17)
sum a = (-3.9950082488401044e-17,-2.7467179539303326e-17,-1.1231317431427202e-16)
sum e = 4.144510039142698
sum de = -4.0826988057657276e-19
Info: CFL hydro = 0.005443199021066929 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005443199021066929 cfl multiplier : 0.4765627215465333 [sph::Model][rank=0]
Info: Timestep 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.6225e+04 | 800 | 1 | 4.931e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 775.2822391717453 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.604670660029155, dt = 0.005443199021066929 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.36 us (1.1%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 1072.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 366.25 us (95.5%)
LB move op cnt : 0
LB apply : 3.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0877230767500313e-17,-6.24968953145071e-18,-1.2563036775324825e-17)
sum a = (-1.431085288419237e-16,6.00569326430312e-17,7.046983656697256e-17)
sum e = 4.144510079031825
sum de = -1.4958601848510944e-18
Info: CFL hydro = 0.007436276873404901 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007436276873404901 cfl multiplier : 0.6510418143643556 [sph::Model][rank=0]
Info: Timestep 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.0938e+04 | 800 | 1 | 3.821e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 512.8639877588244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.610113859050223, dt = 0.007436276873404901 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.60 us (0.8%)
patch tree reduce : 1192.00 ns (0.2%)
gen split merge : 791.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 541.73 us (96.8%)
LB move op cnt : 0
LB apply : 3.65 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.876249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.544163377927843e-18,-5.586900407983499e-18,-1.1371514181611454e-17)
sum a = (-9.501025916332689e-17,1.0851767682530951e-17,-2.7353344571205002e-17)
sum e = 4.144510112620506
sum de = 1.0672615135404184e-18
Info: CFL hydro = 0.008766390683455293 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008766390683455293 cfl multiplier : 0.7673612095762371 [sph::Model][rank=0]
Info: Timestep 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.1116e+04 | 800 | 1 | 3.789e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 706.6034525627092 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.617550135923628, dt = 0.008766390683455293 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (1.2%)
patch tree reduce : 1213.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 390.03 us (95.6%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.878749999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.795249114123085e-18,-5.8153192584439506e-18,-1.203804787639769e-17)
sum a = (-6.852865079519062e-17,2.5224031536355313e-16,-1.0285888064800076e-16)
sum e = 4.144510140847559
sum de = -6.115577879176048e-19
Info: CFL hydro = 0.009655962813429902 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009655962813429902 cfl multiplier : 0.8449074730508247 [sph::Model][rank=0]
Info: Timestep 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.0947e+04 | 800 | 1 | 3.819e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 826.3417789755499 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.626316526607082, dt = 0.009655962813429902 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.2%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 404.26 us (95.6%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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: 3.878749999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.176645932220354e-18,-2.2534830197885186e-18,-1.3267765097565102e-17)
sum a = (8.083480997803042e-17,-7.517601380072166e-18,-3.817515568318376e-17)
sum e = 4.144510163624277
sum de = -6.515800946753705e-19
Info: CFL hydro = 0.010253314666058668 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010253314666058668 cfl multiplier : 0.8966049820338832 [sph::Model][rank=0]
Info: Timestep 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.1159e+04 | 800 | 1 | 3.781e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 919.3884560082225 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.635972489420512, dt = 0.010253314666058668 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (1.1%)
patch tree reduce : 1203.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.2%)
LB compute : 394.73 us (95.8%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.8787499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0032455477928546e-17,-3.647961378992979e-18,-1.3303712982227732e-17)
sum a = (-4.421589813503295e-17,-8.660444546638228e-17,-1.48569611653588e-17)
sum e = 4.14451018288139
sum de = -3.146727399049726e-19
Info: CFL hydro = 0.010652481554255246 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010652481554255246 cfl multiplier : 0.9310699880225887 [sph::Model][rank=0]
Info: Timestep 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.1157e+04 | 800 | 1 | 3.781e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 976.1711873370438 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.646225804086571, dt = 0.010652481554255246 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (0.9%)
patch tree reduce : 972.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 358.54 us (96.3%)
LB move op cnt : 0
LB apply : 2.65 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.8787499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.022919050319731e-18,-4.961556997706526e-18,-1.355534817486613e-17)
sum a = (-5.1723014715411845e-17,1.1379003324249502e-17,-1.852514322947451e-17)
sum e = 4.144510200341324
sum de = -1.6322324893590368e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010154245146834774
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.636479290196475e-18,-4.493485582828552e-18,-1.3595789545111587e-17)
sum a = (-4.014180453993506e-19,2.131260211935582e-17,2.9147743147281206e-17)
sum e = 4.144510044591895
sum de = -7.860465750519907e-19
Info: CFL hydro = 0.005455303630252895 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005455303630252895 cfl multiplier : 0.47702332934086283 [sph::Model][rank=0]
Info: Timestep 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.5745e+04 | 800 | 1 | 5.081e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 754.7326218979013 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.656878285640826, dt = 0.005455303630252895 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (1.0%)
patch tree reduce : 1683.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1153.00 ns (0.3%)
LB compute : 406.56 us (95.8%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8787499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.762296886515675e-18,-4.204404676999914e-18,-1.3001151619650608e-17)
sum a = (-1.7384397022847099e-16,5.264567708841931e-17,2.6002303239301217e-18)
sum e = 4.144510084537669
sum de = -9.944166800765486e-19
Info: CFL hydro = 0.007447199964120121 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007447199964120121 cfl multiplier : 0.6513488862272419 [sph::Model][rank=0]
Info: Timestep 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.1036e+04 | 800 | 1 | 3.803e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 516.4031184960453 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.662333589271078, dt = 0.007447199964120121 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (1.0%)
patch tree reduce : 912.00 ns (0.2%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 751.00 ns (0.2%)
LB compute : 370.99 us (96.3%)
LB move op cnt : 0
LB apply : 2.77 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 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: 3.8787499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.186581275470464e-18,-3.683160349391803e-18,-1.305956693222738e-17)
sum a = (-1.3283342514252242e-16,8.943534138356427e-18,-8.181139417803182e-18)
sum e = 4.144510123171581
sum de = -2.253107639696439e-19
Info: CFL hydro = 0.00877378867261242 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00877378867261242 cfl multiplier : 0.7675659241514946 [sph::Model][rank=0]
Info: Timestep 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.1036e+04 | 800 | 1 | 3.803e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 704.9614067535724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.6697807892352, dt = 0.00877378867261242 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (1.0%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 602.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 591.00 ns (0.1%)
LB compute : 379.52 us (96.3%)
LB move op cnt : 0
LB apply : 2.98 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.8787499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.17404919080643e-18,-3.925059656600739e-18,-1.3297721668117293e-17)
sum a = (1.6206205103029454e-16,-1.7391287034074104e-17,5.88466871927227e-17)
sum e = 4.1445101589895
sum de = -8.571973426213519e-19
Info: CFL hydro = 0.009657561384355435 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009657561384355435 cfl multiplier : 0.8450439494343298 [sph::Model][rank=0]
Info: Timestep 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.9278e+04 | 800 | 1 | 4.150e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 761.1471331469099 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.678554577907812, dt = 0.009657561384355435 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (1.1%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 392.75 us (95.7%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8787499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.010936422098855e-18,-4.074842509361691e-18,-1.2147389358913184e-17)
sum a = (-3.7623954785023464e-17,-1.725049115247881e-17,1.4618806429468888e-17)
sum e = 4.144510190423959
sum de = -1.1824579943670033e-18
Info: CFL hydro = 0.010239970164381152 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010239970164381152 cfl multiplier : 0.8966959662895532 [sph::Model][rank=0]
Info: Timestep 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.0761e+04 | 800 | 1 | 3.853e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 902.2665252910981 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.688212139292167, dt = 0.010239970164381152 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (1.2%)
patch tree reduce : 1402.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 388.70 us (95.5%)
LB move op cnt : 0
LB apply : 4.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.87875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.54006880798631e-18,-4.2246253621226434e-18,-1.2309903754158817e-17)
sum a = (3.179290832703961e-17,-5.5460845806061396e-17,1.1952671650323946e-17)
sum e = 4.144510217296526
sum de = 1.3891340334970526e-19
Info: CFL hydro = 0.01062583614170209 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01062583614170209 cfl multiplier : 0.9311306441930354 [sph::Model][rank=0]
Info: Timestep 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.0987e+04 | 800 | 1 | 3.812e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 967.0695791792793 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.698452109456548, dt = 0.01062583614170209 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.72 us (1.1%)
patch tree reduce : 1492.00 ns (0.4%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 396.55 us (95.8%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.663440203693448e-18,-5.135305106909229e-18,-1.2268713469649555e-17)
sum a = (-1.8603030312910203e-18,-4.4463039842088516e-18,-1.2306159182839792e-17)
sum e = 4.144510240000085
sum de = -3.8624702394796095e-19
Info: CFL hydro = 0.010882165204639476 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010882165204639476 cfl multiplier : 0.9540870961286902 [sph::Model][rank=0]
Info: Timestep 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.0178e+04 | 800 | 1 | 3.965e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 964.855516250975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.709077945598251, dt = 0.010882165204639476 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (1.0%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 691.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 450.61 us (96.4%)
LB move op cnt : 0
LB apply : 3.38 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.87875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.339909241729792e-18,-4.876180771632783e-18,-1.2448452892962697e-17)
sum a = (-3.809876642827568e-17,-6.776251150331836e-17,6.417895675101259e-17)
sum e = 4.144510258691076
sum de = -1.8566962203814263e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010114498475561498
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.291978728846288e-18,-5.195967162277415e-18,-1.2038796790661494e-17)
sum a = (-1.0589048558788242e-16,4.627765910328745e-17,-1.1137253799893326e-16)
sum e = 4.144510053881122
sum de = -7.115076756936123e-19
Info: CFL hydro = 0.0055271933226043604 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0055271933226043604 cfl multiplier : 0.4846956987095634 [sph::Model][rank=0]
Info: Timestep 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.5894e+04 | 800 | 1 | 5.033e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 778.33899087118 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.71996011080289, dt = 0.0055271933226043604 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (0.9%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 375.54 us (96.4%)
LB move op cnt : 0
LB apply : 2.62 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 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: 3.87875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.973889624549912e-18,-4.302512445558338e-18,-1.3907337878854366e-17)
sum a = (7.39388074369162e-17,-6.731840534488214e-17,-7.026613188721767e-17)
sum e = 4.144510105687854
sum de = 8.063753657860939e-19
Info: CFL hydro = 0.007485171093386143 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007485171093386143 cfl multiplier : 0.656463799139709 [sph::Model][rank=0]
Info: Timestep 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.0634e+04 | 800 | 1 | 3.877e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 513.2171772034768 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.725487304125496, dt = 0.007485171093386143 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (1.0%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 415.96 us (96.0%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.87875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.199113360134496e-18,-5.262620531756039e-18,-1.4270561296799675e-17)
sum a = (4.577963111785728e-17,-1.7053526701098157e-16,-6.546109797064634e-17)
sum e = 4.1445101522562275
sum de = -2.981555974335137e-19
Info: CFL hydro = 0.008790553303120731 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008790553303120731 cfl multiplier : 0.7709758660931394 [sph::Model][rank=0]
Info: Timestep 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.0778e+04 | 800 | 1 | 3.850e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 699.8590583755265 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.732972475218881, dt = 0.008790553303120731 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (1.0%)
patch tree reduce : 992.00 ns (0.2%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 385.75 us (96.2%)
LB move op cnt : 0
LB apply : 3.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.87875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.318939642343259e-18,-7.063759336206484e-18,-1.4758853396800378e-17)
sum a = (2.2838889388989916e-17,-1.4070526296937422e-16,-5.323282587124224e-17)
sum e = 4.1445101924887116
sum de = -4.723055713889979e-18
Info: CFL hydro = 0.009661910876405291 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009661910876405291 cfl multiplier : 0.847317244062093 [sph::Model][rank=0]
Info: Timestep 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.0358e+04 | 800 | 1 | 3.930e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 805.2993292784358 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.741763028522001, dt = 0.009661910876405291 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (1.0%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 692.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 399.81 us (96.0%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.172152446637525e-18,-8.520397579306738e-18,-1.52815955529361e-17)
sum a = (2.391732592886877e-17,8.310926259720547e-17,-1.4217388384069538e-16)
sum e = 4.144510223584127
sum de = 2.0328790734103208e-19
Info: CFL hydro = 0.010245039470964749 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010245039470964749 cfl multiplier : 0.8982114960413954 [sph::Model][rank=0]
Info: Timestep 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.0759e+04 | 800 | 1 | 3.854e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 902.5746198513406 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.751424939398406, dt = 0.010245039470964749 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (1.2%)
patch tree reduce : 1293.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 367.29 us (95.5%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.87875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.561587863816e-18,-6.556744379610661e-18,-1.6934823790285104e-17)
sum a = (6.994260092525402e-17,-1.304878256682859e-16,6.810326749334952e-17)
sum e = 4.144510245519777
sum de = 6.776263578034403e-20
Info: CFL hydro = 0.010636413663785016 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010636413663785016 cfl multiplier : 0.9321409973609303 [sph::Model][rank=0]
Info: Timestep 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.0699e+04 | 800 | 1 | 3.865e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 954.2852525040925 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.76166997886937, dt = 0.010636413663785016 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.71 us (1.1%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 399.31 us (95.7%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.87875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0210697072714079e-17,-9.029659278693973e-18,-1.511496212923954e-17)
sum a = (-1.6292779591925283e-16,1.9659673447712337e-16,1.0740628805782325e-16)
sum e = 4.144510259296815
sum de = 2.2090619264392153e-18
Info: CFL hydro = 0.01090083822452456 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01090083822452456 cfl multiplier : 0.9547606649072868 [sph::Model][rank=0]
Info: Timestep 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.0623e+04 | 800 | 1 | 3.879e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 987.1018457151899 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.772306392533157, dt = 0.01090083822452456 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (0.9%)
patch tree reduce : 1363.00 ns (0.3%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 419.03 us (96.4%)
LB move op cnt : 0
LB apply : 3.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 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: 3.87875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.857058999396369e-18,-5.041690823933635e-18,-1.3900972107612027e-17)
sum a = (-1.9843232333770883e-16,-1.1568029284433824e-16,-1.4977686144684127e-16)
sum e = 4.144510266313847
sum de = -7.792703114739563e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010606483353639728
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.813621972095694e-18,-6.606172721021776e-18,-1.5446731148105046e-17)
sum a = (5.768437225529772e-17,1.2232466019281406e-16,-2.9453300166913545e-17)
sum e = 4.144510055471178
sum de = -8.605854744103691e-19
Info: CFL hydro = 0.0055413815117711105 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0055413815117711105 cfl multiplier : 0.48492022163576226 [sph::Model][rank=0]
Info: Timestep 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.5939e+04 | 800 | 1 | 5.019e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 781.8539828679242 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.78320723075768, dt = 0.0055413815117711105 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (1.1%)
patch tree reduce : 1322.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 384.35 us (95.7%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.87875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.886067197864108e-18,-4.773579517491531e-18,-1.5021347846263946e-17)
sum a = (1.832862812665214e-16,2.448275619804136e-17,4.5486056726445815e-17)
sum e = 4.144510109484229
sum de = -1.7550522667109103e-18
Info: CFL hydro = 0.0075047804267179136 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0075047804267179136 cfl multiplier : 0.6566134810905081 [sph::Model][rank=0]
Info: Timestep 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.0905e+04 | 800 | 1 | 3.827e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 521.2855621574346 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.788748612269451, dt = 0.0075047804267179136 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (0.8%)
patch tree reduce : 972.00 ns (0.2%)
gen split merge : 511.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 407.96 us (96.5%)
LB move op cnt : 0
LB apply : 3.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.87875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.872187825474327e-18,-4.722653347552808e-18,-1.4539047060373682e-17)
sum a = (5.751661546020546e-19,-3.721504759698606e-17,1.3796798133516783e-16)
sum e = 4.144510152404577
sum de = 1.938011383317839e-18
Info: CFL hydro = 0.008811110311986359 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008811110311986359 cfl multiplier : 0.7710756540603386 [sph::Model][rank=0]
Info: Timestep 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.0802e+04 | 800 | 1 | 3.846e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 702.5238979964246 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.796253392696169, dt = 0.008811110311986359 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (0.9%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 702.00 ns (0.2%)
LB compute : 419.94 us (96.3%)
LB move op cnt : 0
LB apply : 3.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.87875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.830248626701262e-18,-5.224425904301996e-18,-1.2644481201513593e-17)
sum a = (-7.036199291298468e-17,5.796596401848831e-18,-2.1293130348496894e-17)
sum e = 4.144510185721165
sum de = -1.395910297075087e-18
Info: CFL hydro = 0.009681583624217442 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009681583624217442 cfl multiplier : 0.847383769373559 [sph::Model][rank=0]
Info: Timestep 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.0834e+04 | 800 | 1 | 3.840e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 826.0783135112514 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.805064503008156, dt = 0.009681583624217442 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.1%)
patch tree reduce : 1452.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1173.00 ns (0.3%)
LB compute : 404.29 us (95.6%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.736084887282508e-18,-5.076140880068653e-18,-1.389348296497398e-17)
sum a = (-2.1511214182116842e-16,1.3934897923762382e-16,9.491439813755988e-17)
sum e = 4.144510207988072
sum de = -1.2197274440461925e-18
Info: CFL hydro = 0.010262336878921889 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010262336878921889 cfl multiplier : 0.8982558462490392 [sph::Model][rank=0]
Info: Timestep 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.1026e+04 | 800 | 1 | 3.805e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 916.0219068983971 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.814746086632374, dt = 0.010262336878921889 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.3%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 385.19 us (95.5%)
LB move op cnt : 0
LB apply : 3.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 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: 3.87875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.2094476190259e-18,-2.9589602562926013e-18,-1.2173226901014448e-17)
sum a = (5.917021815468637e-17,-3.211344363194805e-18,-5.026113407246496e-17)
sum e = 4.144510221117948
sum de = 9.012430558785756e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010026832147115607
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.543263922862176e-18,-4.003695654300239e-18,-1.2806621139627323e-17)
sum a = (1.206171356713392e-16,1.1418396214525632e-16,-4.017775242459769e-17)
sum e = 4.144510055309643
sum de = -1.7279472123987727e-18
Info: CFL hydro = 0.0053257379913741725 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0053257379913741725 cfl multiplier : 0.46608528208301303 [sph::Model][rank=0]
Info: Timestep 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.5707e+04 | 800 | 1 | 5.093e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 725.3685746552642 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.825008423511296, dt = 0.0053257379913741725 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.2%)
patch tree reduce : 1463.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 414.56 us (95.7%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.87875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.696966346253406e-18,-2.5051182124269174e-18,-1.2977560820340759e-17)
sum a = (1.1258877476335218e-16,-1.1286137955537712e-17,7.451397359151826e-17)
sum e = 4.144510099642822
sum de = 1.7279472123987727e-18
Info: CFL hydro = 0.007359982714522964 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007359982714522964 cfl multiplier : 0.6440568547220087 [sph::Model][rank=0]
Info: Timestep 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.0592e+04 | 800 | 1 | 3.885e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 493.5019349428333 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.83033416150267, dt = 0.007359982714522964 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.2%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 412.70 us (95.7%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.87875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.439889295947726e-18,-2.9394884854336775e-18,-1.2095527046144704e-17)
sum a = (1.506935325057383e-16,-4.7082741936877564e-17,4.6892517713871154e-17)
sum e = 4.144510137654171
sum de = -1.4094628242311558e-18
Info: CFL hydro = 0.008717499910340624 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008717499910340624 cfl multiplier : 0.7627045698146725 [sph::Model][rank=0]
Info: Timestep 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.9478e+04 | 800 | 1 | 4.107e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 645.1038550568477 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.837694144217192, dt = 0.008717499910340624 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (1.1%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 390.41 us (95.8%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.87875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.815551184274092e-18,-3.5094122401890985e-18,-1.1738856628007688e-17)
sum a = (-1.7432327535730603e-16,9.210297399123682e-17,-1.611154234008453e-16)
sum e = 4.144510168055636
sum de = -2.3513634615779377e-18
Info: CFL hydro = 0.009624666964883254 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009624666964883254 cfl multiplier : 0.8418030465431151 [sph::Model][rank=0]
Info: Timestep 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.0545e+04 | 800 | 1 | 3.894e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 805.9636347197581 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.846411644127533, dt = 0.009624666964883254 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (1.0%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 387.65 us (95.9%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.87875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.999727166651176e-18,-2.062509882518305e-18,-1.431530892406201e-17)
sum a = (1.6447355495974585e-16,-1.6533929984870416e-16,1.868915545324775e-17)
sum e = 4.144510189960363
sum de = 2.0328790734103208e-19
Info: CFL hydro = 0.010232370595262235 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010232370595262235 cfl multiplier : 0.8945353643620768 [sph::Model][rank=0]
Info: Timestep 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.1102e+04 | 800 | 1 | 3.791e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 913.9435304098449 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.856036311092417, dt = 0.010232370595262235 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (1.1%)
patch tree reduce : 1062.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 373.58 us (95.9%)
LB move op cnt : 0
LB apply : 3.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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: 3.87875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0109593647100437e-17,-4.913626484823021e-18,-1.2863538623676485e-17)
sum a = (2.6889017727646053e-17,-6.433323308935637e-17,8.758552315196651e-17)
sum e = 4.144510205536354
sum de = 1.0994487655360818e-18
Info: CFL hydro = 0.010634619363620628 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010634619363620628 cfl multiplier : 0.9296902429080512 [sph::Model][rank=0]
Info: Timestep 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.0955e+04 | 800 | 1 | 3.818e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 964.909133311518 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.866268681687679, dt = 0.010634619363620628 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.76 us (1.2%)
patch tree reduce : 1402.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 388.42 us (95.8%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.8812499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0024966335290498e-17,-5.267114017338867e-18,-1.1806633368882019e-17)
sum a = (-2.1535179438558593e-16,1.446512922253615e-16,1.9399875089598467e-17)
sum e = 4.144510217209035
sum de = -1.4204742525454617e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010263447620502592
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.616258605073748e-18,-4.007440225619263e-18,-1.2366821238207978e-17)
sum a = (-1.8819915883708061e-16,-5.187579322522802e-17,-1.5284141861433035e-16)
sum e = 4.144510057590651
sum de = 3.006966962752766e-19
Info: CFL hydro = 0.005450890538571344 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005450890538571344 cfl multiplier : 0.4765634143026838 [sph::Model][rank=0]
Info: Timestep 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.5756e+04 | 800 | 1 | 5.077e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 754.0215025148689 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.8769033010513, dt = 0.005450890538571344 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (1.0%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 399.20 us (96.0%)
LB move op cnt : 0
LB apply : 3.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.8812499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.716063659980428e-18,-5.183984534056539e-18,-1.423217944077968e-17)
sum a = (-2.0310554834385052e-16,-4.278097840558303e-17,2.3845430159543514e-18)
sum e = 4.1445100989078725
sum de = -7.462360265310386e-19
Info: CFL hydro = 0.0074462801040185034 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0074462801040185034 cfl multiplier : 0.6510422762017892 [sph::Model][rank=0]
Info: Timestep 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.0934e+04 | 800 | 1 | 3.822e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 513.4817422655079 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.88235419158987, dt = 0.0074462801040185034 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (0.9%)
patch tree reduce : 802.00 ns (0.2%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 387.12 us (92.2%)
LB move op cnt : 0
LB apply : 3.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (74.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8812499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.1500839343646775e-18,-5.794349659057417e-18,-1.3592793888056369e-17)
sum a = (-8.562786126638087e-17,-3.1786917012929175e-17,1.5936895533765264e-17)
sum e = 4.144510135929972
sum de = 2.9857911390714087e-19
Info: CFL hydro = 0.008777035991637655 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008777035991637655 cfl multiplier : 0.7673615174678595 [sph::Model][rank=0]
Info: Timestep 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.0671e+04 | 800 | 1 | 3.870e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 692.6532714312516 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.889800471693889, dt = 0.008777035991637655 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.2%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 404.80 us (95.9%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 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: 3.8812499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.86250085706365e-18,-5.882347085054476e-18,-1.3327678238669484e-17)
sum a = (-1.1179792130077436e-16,-1.3004746408116871e-16,-1.0366770805290991e-16)
sum e = 4.144510168465529
sum de = 7.343775652694784e-19
Info: CFL hydro = 0.009665486954770375 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009665486954770375 cfl multiplier : 0.8449076783119063 [sph::Model][rank=0]
Info: Timestep 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.0813e+04 | 800 | 1 | 3.844e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 822.063060164506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.898577507685527, dt = 0.009665486954770375 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.74 us (1.1%)
patch tree reduce : 1473.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 411.26 us (95.9%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.8812499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.475511640497237e-18,-7.702957660363845e-18,-1.5059168016586085e-17)
sum a = (1.1196567809586661e-16,-1.272435290774837e-16,-3.035199728347925e-17)
sum e = 4.14451019566941
sum de = -3.6930636500287495e-19
Info: CFL hydro = 0.010257763383385077 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010257763383385077 cfl multiplier : 0.8966051188746041 [sph::Model][rank=0]
Info: Timestep 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.0744e+04 | 800 | 1 | 3.857e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 902.2398929971921 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.908242994640297, dt = 0.010257763383385077 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (1.0%)
patch tree reduce : 1082.00 ns (0.2%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 416.81 us (96.1%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 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: 3.8812499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.645865177003428e-18,-9.127018132988593e-18,-1.4715416369499702e-17)
sum a = (8.939040652773599e-18,-3.1712025586548695e-17,1.959279540395457e-16)
sum e = 4.144510218576054
sum de = 1.0469327228063152e-18
Info: CFL hydro = 0.010654495653281039 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010654495653281039 cfl multiplier : 0.9310700792497361 [sph::Model][rank=0]
Info: Timestep 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.0839e+04 | 800 | 1 | 3.839e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 961.9221554178587 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.918500758023681, dt = 0.010654495653281039 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (1.1%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 373.98 us (95.7%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8812499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.521545409211838e-18,-8.776900714659869e-18,-1.1620153717194634e-17)
sum a = (-1.7180692343092205e-16,9.889263070689076e-17,-1.669180111168046e-17)
sum e = 4.1445102384071335
sum de = 4.1674021004911577e-19
Info: CFL hydro = 0.01092157699840926 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01092157699840926 cfl multiplier : 0.9540467194998241 [sph::Model][rank=0]
Info: Timestep 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.1040e+04 | 800 | 1 | 3.802e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1008.7809587121303 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.929155253676962, dt = 0.01092157699840926 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (1.0%)
patch tree reduce : 1062.00 ns (0.2%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 414.50 us (96.2%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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: 3.8812499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.699636463195507e-18,-7.379801155532091e-18,-1.299815596259539e-17)
sum a = (2.3246298748499706e-18,-6.987070515592876e-17,2.059214659757564e-16)
sum e = 4.144510255886415
sum de = 1.1993986533120893e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010083263626598943
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.628290150313408e-18,-7.986796166345848e-18,-1.1713019085906423e-17)
sum a = (-2.612212952150998e-18,-1.4327029432290553e-16,1.0880226424555533e-17)
sum e = 4.144510065888328
sum de = 9.486769009248164e-19
Info: CFL hydro = 0.005549741509961356 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005549741509961356 cfl multiplier : 0.4846822398332747 [sph::Model][rank=0]
Info: Timestep 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.5545e+04 | 800 | 1 | 5.146e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 763.9824419443162 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.940076830675372, dt = 0.005549741509961356 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.56 us (0.8%)
patch tree reduce : 801.00 ns (0.2%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 407.26 us (96.5%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.8812499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.403615871171981e-18,-9.216513387513261e-18,-1.2770486026398742e-17)
sum a = (1.7461085843460706e-16,6.615609040745715e-17,2.965700484666844e-17)
sum e = 4.144510113925635
sum de = 7.521652571618187e-19
Info: CFL hydro = 0.007515899590241521 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007515899590241521 cfl multiplier : 0.6564548265555165 [sph::Model][rank=0]
Info: Timestep 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.0939e+04 | 800 | 1 | 3.821e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 522.9377771083789 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.945626572185333, dt = 0.007515899590241521 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (1.1%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.2%)
LB compute : 375.27 us (95.8%)
LB move op cnt : 0
LB apply : 3.07 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 19.70 us (94.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8812499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.144092620254239e-18,-8.321935299398477e-18,-1.2545811747257315e-17)
sum a = (-1.616456546996191e-16,-1.1979033432409873e-16,1.4300068518793581e-16)
sum e = 4.144510157862172
sum de = -1.0028870095490916e-18
Info: CFL hydro = 0.00882568889154256 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00882568889154256 cfl multiplier : 0.7709698843703444 [sph::Model][rank=0]
Info: Timestep 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.0314e+04 | 800 | 1 | 3.938e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 687.0499382625287 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.953142471775575, dt = 0.00882568889154256 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.28 us (1.0%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 393.71 us (95.9%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 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: 3.8812499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3761055012318515e-18,-9.827252969646042e-18,-1.0849520939739538e-17)
sum a = (-1.8141699126406472e-17,-1.484617679996001e-16,1.2294176554618916e-16)
sum e = 4.144510196809105
sum de = -5.55653613398821e-19
Info: CFL hydro = 0.009695961595475196 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009695961595475196 cfl multiplier : 0.8473132562468964 [sph::Model][rank=0]
Info: Timestep 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.0697e+04 | 800 | 1 | 3.865e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 822.0064879773851 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.961968160667118, dt = 0.009695961595475196 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (1.0%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 393.05 us (95.8%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.8812499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.0501283386561346e-18,-1.136439949610531e-17,-9.582358005381886e-18)
sum a = (5.21244327608112e-18,-2.7497136109855515e-17,-1.398013234529619e-16)
sum e = 4.144510228315212
sum de = 7.453889935837843e-20
Info: CFL hydro = 0.01027428245919533 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01027428245919533 cfl multiplier : 0.8982088374979309 [sph::Model][rank=0]
Info: Timestep 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.0976e+04 | 800 | 1 | 3.814e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 915.2374610248695 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.971664122262593, dt = 0.01027428245919533 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.0%)
patch tree reduce : 812.00 ns (0.2%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 408.58 us (96.2%)
LB move op cnt : 0
LB apply : 3.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.8812499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.12501976503661e-18,-1.0973279021833273e-17,-1.2469422492349231e-17)
sum a = (-1.722263154186527e-16,7.694944277741133e-17,1.043926570602729e-16)
sum e = 4.144510252277335
sum de = -1.4907779871675686e-19
Info: CFL hydro = 0.01065817619637886 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01065817619637886 cfl multiplier : 0.9321392249986206 [sph::Model][rank=0]
Info: Timestep 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.0957e+04 | 800 | 1 | 3.817e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 968.950647813323 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.981938404721788, dt = 0.01065817619637886 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.81 us (1.1%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 401.16 us (95.5%)
LB move op cnt : 0
LB apply : 4.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.8812499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4169457871186032e-18,-9.990141822023577e-18,-9.777824628234928e-18)
sum a = (2.2624400343836235e-16,-4.671577394761323e-17,-2.3150437722732697e-17)
sum e = 4.144510269258853
sum de = 6.369687763352339e-19
Info: CFL hydro = 0.010912687598013058 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010912687598013058 cfl multiplier : 0.9547594833324137 [sph::Model][rank=0]
Info: Timestep 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.1154e+04 | 800 | 1 | 3.782e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1014.5989725074235 (tsim/hr) [sph::Model][rank=0]
---------------- t = 9.992596580918168, dt = 0.007403419081832396 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (1.1%)
patch tree reduce : 1262.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 385.16 us (95.8%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8812499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.5359742380447755e-18,-1.0695993515659562e-17,-1.0806832826702666e-17)
sum a = (1.1740579130814439e-16,-1.324994093808655e-16,-1.8009890215976835e-17)
sum e = 4.144510166420525
sum de = -9.486769009248164e-20
Info: CFL hydro = 0.011082475617105845 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011082475617105845 cfl multiplier : 0.9698396555549426 [sph::Model][rank=0]
Info: Timestep 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.1096e+04 | 800 | 1 | 3.792e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 702.8304047735329 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 1306 [SPH][rank=0]
Info: time since start : 914.8632615370001 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.1509834098910613 max=0.15131020459655123 delta=0.0003267947054899356
Number of particle pairs: 319600
Distance min=0.155088 max=2.293780 mean=0.934467
---------------- t = 10, dt = 0.011082475617105845 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.71 us (1.4%)
patch tree reduce : 1343.00 ns (0.2%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.1%)
LB compute : 679.61 us (96.6%)
LB move op cnt : 0
LB apply : 4.81 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.08 us (75.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: 3.8812499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.20400576135862e-18,-1.2672191029274369e-17,-1.104348973406497e-17)
sum a = (1.9533481394261235e-16,-8.738481412926684e-17,-1.1119878988973056e-17)
sum e = 4.1445102850543325
sum de = 2.290377089375628e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010097354265431933
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.551501979764028e-18,-1.2492638834527178e-17,-1.0956615679463617e-17)
sum a = (1.0190626170444111e-16,-1.1576716689893958e-16,3.7972948831956476e-17)
sum e = 4.144510070139697
sum de = 4.0657581468206416e-19
Info: CFL hydro = 0.0055969363935595064 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0055969363935595064 cfl multiplier : 0.48994655185164754 [sph::Model][rank=0]
Info: Timestep 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.5101e+04 | 800 | 1 | 5.298e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 753.0977074097891 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.011082475617107, dt = 0.0055969363935595064 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.33 us (1.0%)
patch tree reduce : 1352.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 404.82 us (96.0%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.8812499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.719258774856294e-18,-1.326252269771847e-17,-1.0490791007377058e-17)
sum a = (-1.1116284200506793e-16,9.33431760120975e-17,5.321485192891093e-17)
sum e = 4.144510124428282
sum de = 1.3552527156068805e-20
Info: CFL hydro = 0.007538026923969122 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007538026923969122 cfl multiplier : 0.6599643679010984 [sph::Model][rank=0]
Info: Timestep 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.0939e+04 | 800 | 1 | 3.821e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 527.381087991556 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.016679412010665, dt = 0.007538026923969122 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.10 us (1.0%)
patch tree reduce : 992.00 ns (0.2%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 412.28 us (96.3%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8812499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.227421561357215e-18,-1.1738669399441736e-17,-1.0096862104615756e-17)
sum a = (-1.24929384002327e-16,1.4478459896431876e-16,-2.5271362917827774e-17)
sum e = 4.144510167413923
sum de = -7.182839392716467e-19
Info: CFL hydro = 0.008830615940858051 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008830615940858051 cfl multiplier : 0.7733095786007324 [sph::Model][rank=0]
Info: Timestep 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.0818e+04 | 800 | 1 | 3.843e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 706.1859838761136 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.024217438934635, dt = 0.008830615940858051 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (1.0%)
patch tree reduce : 921.00 ns (0.2%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.2%)
LB compute : 402.05 us (96.2%)
LB move op cnt : 0
LB apply : 3.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (72.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8812499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.322733130681066e-18,-1.0174000273787645e-17,-1.0511760606763592e-17)
sum a = (2.075544735279827e-16,1.8509191355655466e-16,7.057768022096045e-18)
sum e = 4.1445102010758115
sum de = -2.6834003769016235e-18
Info: CFL hydro = 0.009690950792016956 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009690950792016956 cfl multiplier : 0.8488730524004883 [sph::Model][rank=0]
Info: Timestep 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.1122e+04 | 800 | 1 | 3.788e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 839.3439671974523 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.033048054875493, dt = 0.009690950792016956 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (0.9%)
patch tree reduce : 1112.00 ns (0.2%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 701.00 ns (0.2%)
LB compute : 440.48 us (96.6%)
LB move op cnt : 0
LB apply : 3.39 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.88125
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.66289074725029e-18,-8.576191691960193e-18,-1.0489293178849448e-17)
sum a = (-1.585781018750748e-16,-2.3834870468423866e-16,-2.5415154456478287e-17)
sum e = 4.144510223537104
sum de = 1.260385025514399e-18
Info: CFL hydro = 0.010263593098654471 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010263593098654471 cfl multiplier : 0.8992487016003254 [sph::Model][rank=0]
Info: Timestep 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.1310e+04 | 800 | 1 | 3.754e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 929.3096549529494 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.04273900566751, dt = 0.010263593098654471 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.60 us (1.1%)
patch tree reduce : 1362.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 393.26 us (95.9%)
LB move op cnt : 0
LB apply : 3.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (73.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.88125
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.202906848472305e-18,-1.3006581248063194e-17,-1.0721456600628924e-17)
sum a = (1.485246767977597e-17,4.500525376908316e-17,-1.665585322701783e-17)
sum e = 4.144510236160622
sum de = -2.710505431213761e-19
Info: CFL hydro = 0.010644821308260716 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010644821308260716 cfl multiplier : 0.9328324677335503 [sph::Model][rank=0]
Info: Timestep 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.1341e+04 | 800 | 1 | 3.749e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 985.6459972697778 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.053002598766165, dt = 0.010644821308260716 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.70 us (1.1%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 392.49 us (95.8%)
LB move op cnt : 0
LB apply : 3.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (74.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.88125
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.176495391418491e-18,-1.1054161762324188e-17,-1.1067454990506723e-17)
sum a = (1.679245518873582e-16,-1.0206802718542294e-16,8.271608260870797e-17)
sum e = 4.144510241299942
sum de = 9.75781955236954e-19
Info: CFL hydro = 0.010898822313510997 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010898822313510997 cfl multiplier : 0.9552216451557003 [sph::Model][rank=0]
Info: Timestep 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.1092e+04 | 800 | 1 | 3.793e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1010.3502316179803 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.063647420074426, dt = 0.010898822313510997 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.72 us (1.2%)
patch tree reduce : 1342.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 379.26 us (95.7%)
LB move op cnt : 0
LB apply : 3.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.59998194909069e-18,-1.2953408335333055e-17,-9.464778465964539e-18)
sum a = (-1.4204207493026574e-16,-6.836388965715359e-17,-1.3696144056461424e-17)
sum e = 4.1445102414033945
sum de = 2.290377089375628e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010547248896536899
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.153079591419896e-18,-1.2801565968346641e-17,-1.002047284970767e-17)
sum a = (-9.693946230688794e-18,-1.1473366521488901e-16,-1.0581259850444673e-16)
sum e = 4.144510068279141
sum de = 1.3417001884508117e-18
Info: CFL hydro = 0.005534368266316037 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005534368266316037 cfl multiplier : 0.48507388171856675 [sph::Model][rank=0]
Info: Timestep 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.5821e+04 | 800 | 1 | 5.057e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 775.9177272345698 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.074546242387937, dt = 0.005534368266316037 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (1.0%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 386.59 us (95.8%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.629389063199723e-18,-1.3603653144881537e-17,-1.0869741624862267e-17)
sum a = (4.6169066535035754e-17,2.4795053446047946e-17,-9.993511936210698e-18)
sum e = 4.144510112639645
sum de = -2.5343225781848666e-18
Info: CFL hydro = 0.007492586680349519 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007492586680349519 cfl multiplier : 0.6567159211457111 [sph::Model][rank=0]
Info: Timestep 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.1208e+04 | 800 | 1 | 3.772e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 528.175778351916 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.080080610654253, dt = 0.007492586680349519 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (0.9%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 551.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 359.47 us (96.2%)
LB move op cnt : 0
LB apply : 2.92 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.7587517730173e-18,-1.312097790185937e-17,-1.0676521744800638e-17)
sum a = (2.0993564642974993e-16,-1.4630789057689763e-17,1.0185233987744717e-16)
sum e = 4.144510146524652
sum de = -6.2341624917916505e-19
Info: CFL hydro = 0.008798261513592606 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008798261513592606 cfl multiplier : 0.771143947430474 [sph::Model][rank=0]
Info: Timestep 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.0977e+04 | 800 | 1 | 3.814e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 707.2702716936911 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.087573197334603, dt = 0.008798261513592606 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (1.1%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 390.27 us (96.1%)
LB move op cnt : 0
LB apply : 3.06 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.948577080382413e-18,-1.3388153065471718e-17,-9.601080861977005e-18)
sum a = (-1.9946282936470418e-16,1.8565285034014442e-16,-1.3108995273638494e-17)
sum e = 4.144510172583106
sum de = -9.147955830346444e-19
Info: CFL hydro = 0.009669275550690356 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009669275550690356 cfl multiplier : 0.8474292982869827 [sph::Model][rank=0]
Info: Timestep 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.1097e+04 | 800 | 1 | 3.792e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 835.2598856884848 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.096371458848195, dt = 0.009669275550690356 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.05 us (1.0%)
patch tree reduce : 912.00 ns (0.2%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 383.02 us (96.3%)
LB move op cnt : 0
LB apply : 2.83 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.245944960131687e-18,-1.0660794545260739e-17,-1.0125320846640336e-17)
sum a = (-1.7664790523215602e-16,2.5702737533779314e-17,9.367419611669921e-17)
sum e = 4.144510190520798
sum de = -1.734723475976807e-18
Info: CFL hydro = 0.010250908865314368 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010250908865314368 cfl multiplier : 0.8982861988579884 [sph::Model][rank=0]
Info: Timestep 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.1067e+04 | 800 | 1 | 3.797e-02 | 0.1% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 916.6804543982294 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.106040734398885, dt = 0.010250908865314368 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.21 us (1.0%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 395.44 us (96.0%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.163963306754458e-18,-1.1078314247331891e-17,-8.792253457067866e-18)
sum a = (4.6109153393931376e-17,1.4270711079652435e-16,4.63173515592691e-17)
sum e = 4.144510202628039
sum de = -1.5517643593698782e-18
Info: CFL hydro = 0.010639991961172806 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010639991961172806 cfl multiplier : 0.932190799238659 [sph::Model][rank=0]
Info: Timestep 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.0872e+04 | 800 | 1 | 3.833e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 962.7990201696526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.1162916432642, dt = 0.010639991961172806 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (1.0%)
patch tree reduce : 1032.00 ns (0.3%)
gen split merge : 561.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 367.12 us (96.2%)
LB move op cnt : 0
LB apply : 3.12 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.1410969631990205e-18,-9.077215334445576e-18,-8.453744209828115e-18)
sum a = (4.4455550699450466e-17,-1.0362876451119205e-16,-1.1686544966680926e-16)
sum e = 4.144510211507679
sum de = -2.710505431213761e-20
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010135745060039409
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.940387940499345e-18,-1.0414401752468972e-17,-9.247593329461158e-18)
sum a = (1.849878144738858e-16,-8.178143760747963e-19,-7.402942606283658e-17)
sum e = 4.144510070174782
sum de = -1.1519648082658485e-19
Info: CFL hydro = 0.005450692282517494 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005450692282517494 cfl multiplier : 0.47739693307955305 [sph::Model][rank=0]
Info: Timestep 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.6069e+04 | 800 | 1 | 4.979e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 769.3799071300484 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.126931635225372, dt = 0.005450692282517494 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.63 us (1.1%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 392.03 us (95.6%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.839634513508213e-18,-9.84410354058165e-18,-9.364423954614701e-18)
sum a = (-2.681232890703244e-16,-2.6107151236233883e-17,1.524429962259862e-16)
sum e = 4.144510106707965
sum de = 1.5111067779016718e-18
Info: CFL hydro = 0.0074408406161704365 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0074408406161704365 cfl multiplier : 0.6515979553863688 [sph::Model][rank=0]
Info: Timestep 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.0846e+04 | 800 | 1 | 3.838e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 511.3166215285887 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.132382327507889, dt = 0.0074408406161704365 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (1.0%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1173.00 ns (0.3%)
LB compute : 365.55 us (95.9%)
LB move op cnt : 0
LB apply : 3.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.358681015343695e-18,-1.0024966335290498e-17,-7.902543311667812e-18)
sum a = (1.876479579389203e-17,-3.4764600125816893e-17,-9.448302352160834e-18)
sum e = 4.144510139032145
sum de = -1.0740377771184528e-18
Info: CFL hydro = 0.00876923319279191 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00876923319279191 cfl multiplier : 0.7677319702575792 [sph::Model][rank=0]
Info: Timestep 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.1213e+04 | 800 | 1 | 3.771e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 710.2888157188155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.13982316812406, dt = 0.00876923319279191 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (0.9%)
patch tree reduce : 862.00 ns (0.2%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.2%)
LB compute : 390.69 us (96.4%)
LB move op cnt : 0
LB apply : 2.98 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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: 3.87625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.694744061971384e-18,-1.0352241868573178e-17,-8.079287077925736e-18)
sum a = (9.10919397351004e-17,1.234480315885212e-16,8.42768199344771e-17)
sum e = 4.144510167375742
sum de = 8.334804200982315e-19
Info: CFL hydro = 0.00965684716133472 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00965684716133472 cfl multiplier : 0.845154646838386 [sph::Model][rank=0]
Info: Timestep 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.0873e+04 | 800 | 1 | 3.833e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 823.668978588836 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.148592401316852, dt = 0.00965684716133472 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (1.0%)
patch tree reduce : 952.00 ns (0.2%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 701.00 ns (0.2%)
LB compute : 384.50 us (96.2%)
LB move op cnt : 0
LB apply : 3.04 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.252485730685282e-18,-8.612139576622821e-18,-6.952920025163378e-18)
sum a = (1.3672178800019674e-16,7.519099208599776e-18,4.093864931662332e-17)
sum e = 4.144510191260653
sum de = 1.3213713977167085e-19
Info: CFL hydro = 0.010250921988911277 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010250921988911277 cfl multiplier : 0.896769764558924 [sph::Model][rank=0]
Info: Timestep 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.0734e+04 | 800 | 1 | 3.858e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 901.0095031557029 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.158249248478187, dt = 0.010250921988911277 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.89 us (1.0%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 368.72 us (96.0%)
LB move op cnt : 0
LB apply : 3.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.510661693877277e-18,-9.036025049936315e-18,-6.893006884058998e-18)
sum a = (-8.869541409092516e-17,-1.8450251803094032e-17,3.397674232029429e-17)
sum e = 4.144510211912476
sum de = -1.7171475423212804e-18
Info: CFL hydro = 0.010649547269819447 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010649547269819447 cfl multiplier : 0.9311798430392827 [sph::Model][rank=0]
Info: Timestep 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.0796e+04 | 800 | 1 | 3.847e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 959.2992961944924 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.168500170467098, dt = 0.010649547269819447 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.72 us (1.1%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 411.08 us (95.9%)
LB move op cnt : 0
LB apply : 3.59 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.6039259782303614e-18,-9.310127670488857e-18,-6.446653982831362e-18)
sum a = (1.602317045695557e-16,3.7421747933796177e-17,-2.8168163290224577e-16)
sum e = 4.1445102305537365
sum de = -6.522153693858113e-19
Info: CFL hydro = 0.010918057773907815 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010918057773907815 cfl multiplier : 0.9541198953595217 [sph::Model][rank=0]
Info: Timestep 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.0791e+04 | 800 | 1 | 3.848e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 996.3771074823957 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.179149717736918, dt = 0.010918057773907815 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (1.1%)
patch tree reduce : 1062.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 368.50 us (95.9%)
LB move op cnt : 0
LB apply : 3.28 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.572622119952425e-18,-8.665686946484861e-18,-1.1542266633758938e-17)
sum a = (1.2658448452533552e-16,4.252335189883419e-17,-4.6804145830742193e-17)
sum e = 4.144510247934084
sum de = -8.876905287225068e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010160504610410487
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.453544752007467e-18,-8.679916317497151e-18,-1.0110342561364241e-17)
sum a = (-4.5054682110494275e-18,5.019522961725014e-17,3.8811732807417805e-17)
sum e = 4.144510078709109
sum de = 3.7947076036992655e-19
Info: CFL hydro = 0.0055471040276086365 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0055471040276086365 cfl multiplier : 0.4847066317865072 [sph::Model][rank=0]
Info: Timestep 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.5811e+04 | 800 | 1 | 5.060e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 776.8142004505962 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.190067775510826, dt = 0.0055471040276086365 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.1%)
patch tree reduce : 982.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 375.29 us (95.9%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.913577567804237e-18,-8.20884924556396e-18,-9.562137320259157e-18)
sum a = (3.1154833374277957e-18,-1.3023019916153709e-16,-6.21658752099054e-17)
sum e = 4.144510121333694
sum de = -2.371692252312041e-20
Info: CFL hydro = 0.00751211602090254 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00751211602090254 cfl multiplier : 0.6564710878576715 [sph::Model][rank=0]
Info: Timestep 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.0478e+04 | 800 | 1 | 3.907e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 511.16994111798573 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.195614879538434, dt = 0.00751211602090254 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (1.0%)
patch tree reduce : 1313.00 ns (0.3%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 419.98 us (96.1%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.636853747328379e-18,-9.843729083449747e-18,-1.0465327922407696e-17)
sum a = (-4.396186641675037e-16,5.512608113014067e-17,-7.925310305287477e-17)
sum e = 4.1445101615273
sum de = 8.944667923005412e-19
Info: CFL hydro = 0.008822207007158881 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008822207007158881 cfl multiplier : 0.7709807252384477 [sph::Model][rank=0]
Info: Timestep 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.0516e+04 | 800 | 1 | 3.899e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 693.5343211571206 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.203126995559337, dt = 0.008822207007158881 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (1.1%)
patch tree reduce : 1342.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 375.71 us (95.8%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2457944193298236e-18,-8.453744209828115e-18,-1.1091420246948474e-17)
sum a = (6.139898700376932e-17,-1.6311352665667642e-16,1.285376529253383e-16)
sum e = 4.144510198275744
sum de = 1.4568966692773966e-18
Info: CFL hydro = 0.009696678689074973 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009696678689074973 cfl multiplier : 0.8473204834922985 [sph::Model][rank=0]
Info: Timestep 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.0795e+04 | 800 | 1 | 3.847e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 825.5575922231293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.211949202566496, dt = 0.009696678689074973 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (1.0%)
patch tree reduce : 892.00 ns (0.2%)
gen split merge : 551.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 712.00 ns (0.2%)
LB compute : 378.11 us (96.4%)
LB move op cnt : 0
LB apply : 2.85 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 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: 3.8762499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.1264931350548274e-18,-1.110639853222457e-17,-8.958512423632522e-18)
sum a = (2.3677673364451246e-17,-1.152369356001658e-16,1.2916074959282387e-16)
sum e = 4.144510229584535
sum de = 6.572975670693371e-19
Info: CFL hydro = 0.010281815234208269 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010281815234208269 cfl multiplier : 0.8982136556615323 [sph::Model][rank=0]
Info: Timestep 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.0876e+04 | 800 | 1 | 3.832e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 910.91610784802 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.22164588125557, dt = 0.010281815234208269 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.23 us (1.1%)
patch tree reduce : 1794.00 ns (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 381.05 us (95.7%)
LB move op cnt : 0
LB apply : 3.10 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 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: 3.8812499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.0978471644642955e-18,-1.2128666502318066e-17,-7.945980338968488e-18)
sum a = (-1.3082633491552566e-16,-9.397376182222111e-18,4.1987129285949984e-17)
sum e = 4.144510255283501
sum de = 5.082197683525802e-19
Info: CFL hydro = 0.010675077003154232 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010675077003154232 cfl multiplier : 0.9321424371076882 [sph::Model][rank=0]
Info: Timestep 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.0773e+04 | 800 | 1 | 3.851e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 961.1355382805704 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.231927696489779, dt = 0.010675077003154232 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.10 us (0.9%)
patch tree reduce : 1062.00 ns (0.2%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 431.08 us (96.6%)
LB move op cnt : 0
LB apply : 3.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8812499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.81347143129383e-18,-1.1781170283912657e-17,-7.447203439274519e-18)
sum a = (-1.0041442449094203e-17,-1.9657501596347302e-17,-7.074543701605272e-17)
sum e = 4.14451027570464
sum de = 6.505213034913027e-19
Info: CFL hydro = 0.01094133726919823 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01094133726919823 cfl multiplier : 0.9547616247384587 [sph::Model][rank=0]
Info: Timestep 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.1175e+04 | 800 | 1 | 3.778e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1017.1952186652264 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.242602773492933, dt = 0.01094133726919823 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (0.9%)
patch tree reduce : 851.00 ns (0.2%)
gen split merge : 581.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 384.06 us (96.5%)
LB move op cnt : 0
LB apply : 2.73 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 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: 3.8812499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.5181997535341085e-18,-1.1874035652624447e-17,-8.958512423632522e-18)
sum a = (-1.2953221106767105e-16,-5.783715076511389e-17,1.4608022064070098e-16)
sum e = 4.1445102912603
sum de = -7.995991022080595e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010144629112584779
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.5094122401890985e-18,-1.2242501470416389e-17,-7.680864689581604e-18)
sum a = (3.3239810684710406e-17,-2.251655668984835e-16,-5.117780513136198e-17)
sum e = 4.144510085551436
sum de = 4.2012834183813297e-19
Info: CFL hydro = 0.005562344820238898 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005562344820238898 cfl multiplier : 0.4849205415794862 [sph::Model][rank=0]
Info: Timestep 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.6014e+04 | 800 | 1 | 4.995e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 788.4886671232451 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.253544110762132, dt = 0.005562344820238898 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.93 us (1.0%)
patch tree reduce : 1032.00 ns (0.3%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 384.07 us (96.2%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 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: 3.8812499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.7758262602829455e-18,-1.4329725523640252e-17,-8.875382940350194e-18)
sum a = (-7.707226471667532e-17,-1.5893383615038205e-16,-1.335703567781063e-16)
sum e = 4.144510137878037
sum de = -7.047314121155779e-19
Info: CFL hydro = 0.007534281940482072 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007534281940482072 cfl multiplier : 0.6566136943863241 [sph::Model][rank=0]
Info: Timestep 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.1081e+04 | 800 | 1 | 3.795e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 527.6803358754672 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.259106455582371, dt = 0.007534281940482072 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (0.9%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 662.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 408.78 us (96.4%)
LB move op cnt : 0
LB apply : 3.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8812499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.889111771938111e-18,-1.5268864010451417e-17,-1.063757820308279e-17)
sum a = (1.4611616852536362e-16,-4.271132937904919e-17,1.6798446502846257e-16)
sum e = 4.144510183261168
sum de = 7.995991022080595e-19
Info: CFL hydro = 0.008841532516160348 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008841532516160348 cfl multiplier : 0.7710757962575494 [sph::Model][rank=0]
Info: Timestep 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.0790e+04 | 800 | 1 | 3.848e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 704.862996530558 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.266640737522852, dt = 0.008841532516160348 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (1.0%)
patch tree reduce : 692.00 ns (0.2%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 642.00 ns (0.2%)
LB compute : 391.14 us (96.6%)
LB move op cnt : 0
LB apply : 3.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.8812499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.082681650622249e-18,-1.5397677263825837e-17,-7.73853108789457e-18)
sum a = (-1.9680268589966968e-16,-2.1743415049609507e-17,-9.498629390688514e-17)
sum e = 4.144510221095625
sum de = 8.538092108323347e-19
Info: CFL hydro = 0.00970947601201511 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00970947601201511 cfl multiplier : 0.8473838641716996 [sph::Model][rank=0]
Info: Timestep 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.0907e+04 | 800 | 1 | 3.826e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 831.8304899267732 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.275482270039012, dt = 0.00970947601201511 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (0.9%)
patch tree reduce : 931.00 ns (0.2%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 393.75 us (96.3%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.8812499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7425240340530257e-18,-1.5552702516433422e-17,-9.804036627468095e-18)
sum a = (7.453194753384958e-18,1.1134333034264488e-16,-1.3766841562964594e-16)
sum e = 4.1445102490479
sum de = -1.0977546996415732e-18
Info: CFL hydro = 0.010285384064135398 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010285384064135398 cfl multiplier : 0.8982559094477999 [sph::Model][rank=0]
Info: Timestep 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.1133e+04 | 800 | 1 | 3.786e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 923.3516208502016 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.285191746051026, dt = 0.010285384064135398 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (0.9%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.3%)
LB compute : 389.59 us (96.4%)
LB move op cnt : 0
LB apply : 2.75 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (41.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8812499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.756553947244669e-18,-1.3648962457841726e-17,-1.10483576767797e-17)
sum a = (-7.06016454774022e-17,-2.325828137672058e-17,3.852414973011678e-17)
sum e = 4.144510267693834
sum de = 1.6805133673525319e-18
Info: CFL hydro = 0.010667520079700002 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010667520079700002 cfl multiplier : 0.9321706062985333 [sph::Model][rank=0]
Info: Timestep 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.0702e+04 | 800 | 1 | 3.864e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 958.1964342917233 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.295477130115161, dt = 0.010667520079700002 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (0.9%)
patch tree reduce : 992.00 ns (0.2%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 681.00 ns (0.2%)
LB compute : 405.02 us (96.4%)
LB move op cnt : 0
LB apply : 3.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.8812499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5058671266907222e-18,-1.4492988833149687e-17,-9.898774281839396e-18)
sum a = (-1.0368568199524121e-16,9.897650910443689e-17,7.023018400255504e-17)
sum e = 4.144510278631596
sum de = 5.285485590866834e-19
Info: CFL hydro = 0.010921385215556589 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010921385215556589 cfl multiplier : 0.9547804041990222 [sph::Model][rank=0]
Info: Timestep 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.0830e+04 | 800 | 1 | 3.841e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 999.9131469654752 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.306144650194861, dt = 0.010921385215556589 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (0.9%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 411.69 us (96.2%)
LB move op cnt : 0
LB apply : 3.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.88625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1143844245414807e-18,-1.2816169796490834e-17,-9.34045869817295e-18)
sum a = (5.355036551909546e-17,-7.768337875594e-17,-1.0920967360506511e-16)
sum e = 4.1445102836697485
sum de = 3.1170812458958252e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010361946364277714
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.084977310432448e-18,-1.3884870450940225e-17,-1.0064284334140248e-17)
sum a = (8.472317283570473e-17,5.054272583565555e-17,-4.066904018165361e-17)
sum e = 4.144510086184032
sum de = 1.2197274440461925e-19
Info: CFL hydro = 0.005545751236630893 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005545751236630893 cfl multiplier : 0.4849268013996741 [sph::Model][rank=0]
Info: Timestep 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.5773e+04 | 800 | 1 | 5.072e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 775.1627873158136 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.317066035410418, dt = 0.005545751236630893 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (1.0%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 392.99 us (95.8%)
LB move op cnt : 0
LB apply : 3.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.88625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7155631205560547e-18,-1.2947229792656666e-17,-9.64264560361817e-18)
sum a = (2.290419471279369e-16,8.747618166945102e-17,-9.538172063817405e-18)
sum e = 4.144510136696385
sum de = 1.6805133673525319e-18
Info: CFL hydro = 0.007508510868548664 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007508510868548664 cfl multiplier : 0.6566178675997828 [sph::Model][rank=0]
Info: Timestep 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.1114e+04 | 800 | 1 | 3.789e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 526.9163478255521 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.32261178664705, dt = 0.007508510868548664 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (1.0%)
patch tree reduce : 781.00 ns (0.2%)
gen split merge : 610.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 375.91 us (96.3%)
LB move op cnt : 0
LB apply : 3.04 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.88625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.662740206448427e-18,-1.2120428445416213e-17,-1.032902552639523e-17)
sum a = (-1.6555948064226276e-16,-1.6694796768735678e-16,-9.892857859155339e-17)
sum e = 4.144510176718979
sum de = 4.472333961502706e-19
Info: CFL hydro = 0.00881692191800831 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00881692191800831 cfl multiplier : 0.7710785783998553 [sph::Model][rank=0]
Info: Timestep 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.0901e+04 | 800 | 1 | 3.828e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 706.2143387637448 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.330120297515599, dt = 0.00881692191800831 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.84 us (1.1%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 415.83 us (95.8%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.88625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.625143952456326e-18,-1.446153443406989e-17,-1.1071199561825747e-17)
sum a = (1.2766217215095056e-16,6.360379059641053e-17,-1.306106476075499e-16)
sum e = 4.144510208089628
sum de = 2.168404344971009e-19
Info: CFL hydro = 0.009685805304141423 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009685805304141423 cfl multiplier : 0.8473857189332369 [sph::Model][rank=0]
Info: Timestep 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.0627e+04 | 800 | 1 | 3.878e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 818.3841744251034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.338937219433607, dt = 0.009685805304141423 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (1.1%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 396.67 us (95.8%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.88625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.5219443248531325e-18,-1.2783217568883423e-17,-1.2551990289933704e-17)
sum a = (4.687304594301223e-17,2.4264822147274176e-17,3.434221248103101e-17)
sum e = 4.144510229515168
sum de = -4.336808689942018e-19
Info: CFL hydro = 0.010262253742450688 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010262253742450688 cfl multiplier : 0.8982571459554913 [sph::Model][rank=0]
Info: Timestep 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.0810e+04 | 800 | 1 | 3.844e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 907.0225005885718 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.348623024737748, dt = 0.010262253742450688 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (1.0%)
patch tree reduce : 1463.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 397.52 us (91.9%)
LB move op cnt : 0
LB apply : 4.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.88625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.4425594128898276e-18,-1.2842756252855902e-17,-1.1606673260446148e-17)
sum a = (-6.167458745284947e-17,-1.6571974829471697e-17,1.7065659112171795e-16)
sum e = 4.144510242845634
sum de = -2.15485181781494e-18
Info: CFL hydro = 0.010645610679118714 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010645610679118714 cfl multiplier : 0.9321714306369943 [sph::Model][rank=0]
Info: Timestep 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.0880e+04 | 800 | 1 | 3.831e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 964.2234746202558 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.358885278480198, dt = 0.010645610679118714 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (0.8%)
patch tree reduce : 711.00 ns (0.2%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 722.00 ns (0.2%)
LB compute : 405.66 us (96.9%)
LB move op cnt : 0
LB apply : 3.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.88625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1469377365075956e-18,-1.3106748530847079e-17,-8.719983230610707e-18)
sum a = (-1.1691450355108846e-16,6.741426637064914e-17,-7.605374131790085e-17)
sum e = 4.14451025061248
sum de = 2.846030702774449e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010568044077463097
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0001505408018627e-18,-1.2587750946030383e-17,-1.0396427810137658e-17)
sum a = (8.252436055717396e-17,-1.4738632711677648e-18,1.696740156076061e-17)
sum e = 4.144510086609302
sum de = -1.2739375526704677e-18
Info: CFL hydro = 0.005450942255261124 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005450942255261124 cfl multiplier : 0.4773904768789981 [sph::Model][rank=0]
Info: Timestep 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.5754e+04 | 800 | 1 | 5.078e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 754.7014193966431 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.369530889159316, dt = 0.005450942255261124 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (0.9%)
patch tree reduce : 1203.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 426.46 us (96.5%)
LB move op cnt : 0
LB apply : 3.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.88625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.447052898472656e-18,-1.3022870133300946e-17,-9.691699487897381e-18)
sum a = (1.844186396333942e-16,-1.835079598886076e-16,6.253733668475256e-17)
sum e = 4.144510129203568
sum de = -1.9109063290057016e-18
Info: CFL hydro = 0.007439418678193544 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007439418678193544 cfl multiplier : 0.6515936512526653 [sph::Model][rank=0]
Info: Timestep 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.0548e+04 | 800 | 1 | 3.893e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 504.0264189259678 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.374981831414578, dt = 0.007439418678193544 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.76 us (1.2%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 380.22 us (95.6%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.88875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.9104313699471545e-18,-1.4923427306271474e-17,-9.483501322559657e-18)
sum a = (-1.6404218034379432e-17,7.812673600011242e-17,5.695343193382428e-17)
sum e = 4.144510164764176
sum de = -2.981555974335137e-19
Info: CFL hydro = 0.00876504593614875 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00876504593614875 cfl multiplier : 0.7677291008351101 [sph::Model][rank=0]
Info: Timestep 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.1001e+04 | 800 | 1 | 3.809e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 703.0528049165238 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.382421250092772, dt = 0.00876504593614875 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (0.9%)
patch tree reduce : 992.00 ns (0.2%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.2%)
LB compute : 400.80 us (96.5%)
LB move op cnt : 0
LB apply : 3.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.89375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.228919389884824e-18,-1.3416050121798445e-17,-8.940538481301208e-18)
sum a = (1.5779923104071785e-16,3.145439907979986e-17,-1.3601481293516502e-16)
sum e = 4.144510193800991
sum de = -1.8431436932253575e-18
Info: CFL hydro = 0.009649576667278241 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009649576667278241 cfl multiplier : 0.8451527338900734 [sph::Model][rank=0]
Info: Timestep 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.6346e+04 | 800 | 1 | 4.894e-02 | 0.0% | 1.0% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 644.7343187115347 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.391186296028922, dt = 0.009649576667278241 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (1.1%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 377.36 us (95.9%)
LB move op cnt : 0
LB apply : 3.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 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: 3.89375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.559540578845233e-18,-1.3248667783838082e-17,-1.0814321969340714e-17)
sum a = (-3.4282299339926626e-17,-4.2322642876134514e-17,8.336913584674573e-17)
sum e = 4.144510215509428
sum de = -4.946672411965114e-19
Info: CFL hydro = 0.01024093219737217 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01024093219737217 cfl multiplier : 0.8967684892600488 [sph::Model][rank=0]
Info: Timestep 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.0943e+04 | 800 | 1 | 3.820e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 909.4113042323871 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.4008358726962, dt = 0.01024093219737217 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (1.1%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1592.00 ns (0.4%)
LB compute : 391.54 us (95.9%)
LB move op cnt : 0
LB apply : 3.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 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: 3.8937500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.266165645254415e-18,-1.4011717804372154e-17,-9.114286590503912e-18)
sum a = (1.7180692343092205e-16,-3.5995815175511914e-17,1.8462833562725953e-16)
sum e = 4.144510231483519
sum de = 6.979551485375435e-19
Info: CFL hydro = 0.010637691930388488 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010637691930388488 cfl multiplier : 0.9311789928400325 [sph::Model][rank=0]
Info: Timestep 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.1094e+04 | 800 | 1 | 3.793e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 972.0973268818167 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.411076804893572, dt = 0.010637691930388488 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (0.9%)
patch tree reduce : 912.00 ns (0.2%)
gen split merge : 571.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 384.93 us (96.7%)
LB move op cnt : 0
LB apply : 2.73 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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: 3.8937500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.292528185289445e-18,-1.4396566121684824e-17,-6.5028225526167184e-18)
sum a = (-1.424135364051129e-16,-9.562137320259157e-18,3.7919027004962533e-17)
sum e = 4.144510243606727
sum de = 9.859463506040056e-19
Info: CFL hydro = 0.010902195768817801 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010902195768817801 cfl multiplier : 0.9541193285600217 [sph::Model][rank=0]
Info: Timestep 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.9939e+04 | 800 | 1 | 4.012e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 954.4935959956246 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.42171449682396, dt = 0.010902195768817801 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.54 us (1.1%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 397.59 us (95.9%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8937500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.7808692023089315e-18,-1.4230119926554217e-17,-6.74846643114468e-18)
sum a = (2.069399893745309e-16,3.241300933746995e-17,6.031605697830764e-17)
sum e = 4.144510253264453
sum de = 2.871441691192078e-19
Info: CFL hydro = 0.011079982935612354 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011079982935612354 cfl multiplier : 0.9694128857066812 [sph::Model][rank=0]
Info: Timestep 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.0931e+04 | 800 | 1 | 3.822e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1026.8508160353128 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.432616692592777, dt = 0.011079982935612354 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (1.1%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 370.02 us (95.8%)
LB move op cnt : 0
LB apply : 3.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.8937500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0044812563281325e-17,-1.3845926909222377e-17,-5.890959599088231e-18)
sum a = (-1.5519900071678773e-16,-4.2118938196379624e-17,2.454866065325618e-17)
sum e = 4.14451026147031
sum de = -2.380162581784584e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010311157313333437
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.333169013355549e-18,-1.4097187644728873e-17,-6.15682416273892e-18)
sum a = (-5.1285648785349865e-18,5.1297631413570744e-17,5.212031373236027e-17)
sum e = 4.144510092152558
sum de = -1.0418505251227894e-18
Info: CFL hydro = 0.0056001453579890064 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0056001453579890064 cfl multiplier : 0.48980429523556035 [sph::Model][rank=0]
Info: Timestep 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.5845e+04 | 800 | 1 | 5.049e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 790.035823572902 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.44369667552839, dt = 0.0056001453579890064 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.1%)
patch tree reduce : 1062.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.2%)
LB compute : 372.99 us (95.8%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 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: 3.8937500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.046135392497679e-18,-1.3350145666583626e-17,-5.6168569785356894e-18)
sum a = (2.8758307730102727e-18,1.0832295911672028e-17,-3.546483496247434e-18)
sum e = 4.1445101346082955
sum de = 2.4106557678857388e-18
Info: CFL hydro = 0.007544769138596704 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007544769138596704 cfl multiplier : 0.6598695301570402 [sph::Model][rank=0]
Info: Timestep 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.0926e+04 | 800 | 1 | 3.823e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 527.3613742293667 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.449296820886378, dt = 0.007544769138596704 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (1.2%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 372.38 us (95.5%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 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: 3.8937500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.129264875780007e-18,-1.33460266381327e-17,-6.005543481450359e-18)
sum a = (7.84862148467387e-17,-2.4662645404207267e-16,-1.723491373579167e-16)
sum e = 4.144510170936788
sum de = -2.0328790734103208e-20
Info: CFL hydro = 0.008841642815007711 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008841642815007711 cfl multiplier : 0.7732463534380267 [sph::Model][rank=0]
Info: Timestep 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.0875e+04 | 800 | 1 | 3.832e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 708.7410099366937 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.456841590024975, dt = 0.008841642815007711 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (0.9%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 722.00 ns (0.2%)
LB compute : 414.53 us (96.5%)
LB move op cnt : 0
LB apply : 3.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.89375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.712294630152012e-18,-1.629412763760013e-17,-7.725050631146085e-18)
sum a = (-1.6931453676097983e-16,-1.9304014063831457e-17,1.5100208518242587e-16)
sum e = 4.144510202228135
sum de = 2.846030702774449e-19
Info: CFL hydro = 0.009707340506558798 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009707340506558798 cfl multiplier : 0.8488309022920179 [sph::Model][rank=0]
Info: Timestep 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.0981e+04 | 800 | 1 | 3.813e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 834.7747630786587 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.465683232839982, dt = 0.009707340506558798 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (1.1%)
patch tree reduce : 992.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1332.00 ns (0.3%)
LB compute : 372.28 us (95.8%)
LB move op cnt : 0
LB apply : 3.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.89375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.176470932909099e-18,-1.5836541022415425e-17,-5.2603737889646245e-18)
sum a = (4.337711415957161e-18,-6.780969310193806e-17,1.7659398340516208e-17)
sum e = 4.14451022716853
sum de = -2.405573570202213e-18
Info: CFL hydro = 0.010286183960608913 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010286183960608913 cfl multiplier : 0.899220601528012 [sph::Model][rank=0]
Info: Timestep 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.0878e+04 | 800 | 1 | 3.832e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 912.0165742394048 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.475390573346541, dt = 0.010286183960608913 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.33 us (1.1%)
patch tree reduce : 1442.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 393.42 us (96.0%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.89375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.978932566575898e-18,-1.650007906014644e-17,-5.8040855444868785e-18)
sum a = (-6.921166060378057e-17,1.575715611045212e-17,-1.1866995858544682e-16)
sum e = 4.144510246386147
sum de = 7.115076756936123e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010136145569200216
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.710072345869989e-18,-1.6246197124716628e-17,-6.311849415346505e-18)
sum a = (1.6933850201742157e-16,6.232164937677679e-17,-1.1056970190813456e-16)
sum e = 4.144510094085744
sum de = -1.5449880957918438e-18
Info: CFL hydro = 0.005337405191703013 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005337405191703013 cfl multiplier : 0.466406867176004 [sph::Model][rank=0]
Info: Timestep 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.5884e+04 | 800 | 1 | 5.036e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 735.2581683653847 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.48567675730715, dt = 0.005337405191703013 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (1.2%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 1083.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 397.86 us (95.4%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 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: 3.893749999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.45541703766698e-18,-1.5328028237291994e-17,-6.663090205070937e-18)
sum a = (-2.3406865966659447e-16,8.960609383571175e-17,9.785014205167453e-17)
sum e = 4.144510134521034
sum de = -1.5517643593698782e-18
Info: CFL hydro = 0.007374418706959081 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007374418706959081 cfl multiplier : 0.6442712447840027 [sph::Model][rank=0]
Info: Timestep 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.1177e+04 | 800 | 1 | 3.778e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 508.6351096267991 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.491014162498853, dt = 0.007374418706959081 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (1.0%)
patch tree reduce : 992.00 ns (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 373.38 us (96.0%)
LB move op cnt : 0
LB apply : 3.36 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.893749999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.880275341574317e-18,-1.5032207103089114e-17,-5.664038577155389e-18)
sum a = (-3.90154374871727e-17,2.3461986056475478e-17,-1.9801293134997817e-17)
sum e = 4.144510172617582
sum de = -6.640738306473715e-19
Info: CFL hydro = 0.008733550307700497 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008733550307700497 cfl multiplier : 0.7628474965226685 [sph::Model][rank=0]
Info: Timestep 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.1004e+04 | 800 | 1 | 3.809e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 697.022924700144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.498388581205813, dt = 0.0016114187941873581 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (1.0%)
patch tree reduce : 922.00 ns (0.2%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 395.69 us (96.1%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (72.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.893749999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.804435543109389e-18,-1.5282344467199904e-17,-6.134356734824778e-18)
sum a = (8.179342023570051e-17,-1.2150385015968403e-16,-1.6476113803704688e-17)
sum e = 4.144510097412159
sum de = -7.589415207398531e-19
Info: CFL hydro = 0.009638064433239103 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009638064433239103 cfl multiplier : 0.8418983310151124 [sph::Model][rank=0]
Info: Timestep 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.1161e+04 | 800 | 1 | 3.781e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 153.44365798327695 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 1363 [SPH][rank=0]
Info: time since start : 918.1050551940001 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.1509831828705406 max=0.15128479537522643 delta=0.00030161250468582756
Number of particle pairs: 319600
Distance min=0.153231 max=2.292539 mean=0.934267
---------------- t = 10.5, dt = 0.009638064433239103 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.84 us (1.6%)
patch tree reduce : 1533.00 ns (0.2%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.1%)
LB compute : 600.39 us (96.2%)
LB move op cnt : 0
LB apply : 4.53 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (78.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: 3.893749999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.369116898018177e-18,-1.6706779396956555e-17,-6.262421073935391e-18)
sum a = (1.6835592650330973e-16,-4.283789588963219e-17,-1.436117992272005e-17)
sum e = 4.144510229388338
sum de = 1.0977546996415732e-18
Info: CFL hydro = 0.010236889997745007 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010236889997745007 cfl multiplier : 0.8945988873434082 [sph::Model][rank=0]
Info: Timestep 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.7274e+04 | 800 | 1 | 4.631e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 749.1764606943393 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.50963806443324, dt = 0.010236889997745007 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.73 us (1.1%)
patch tree reduce : 1694.00 ns (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 397.36 us (95.4%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.893749999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0765642542193405e-17,-1.6443161576097278e-17,-6.397225641420248e-18)
sum a = (-5.787609430683175e-17,-2.9944587923969466e-17,5.332269558289881e-18)
sum e = 4.144510248856674
sum de = -7.724940478959219e-19
Info: CFL hydro = 0.010635372239545119 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010635372239545119 cfl multiplier : 0.9297325915622722 [sph::Model][rank=0]
Info: Timestep 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.0580e+04 | 800 | 1 | 3.887e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 948.0520874951288 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.519874954430986, dt = 0.010635372239545119 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (1.0%)
patch tree reduce : 1594.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 407.92 us (96.1%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 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: 3.893749999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.844677455534199e-18,-1.6694796768735677e-17,-6.3949788986288335e-18)
sum a = (-8.423787639275925e-18,2.899796029452025e-17,7.044587131053081e-17)
sum e = 4.144510262328331
sum de = 0
Info: CFL hydro = 0.010899968290660771 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010899968290660771 cfl multiplier : 0.9531550610415147 [sph::Model][rank=0]
Info: Timestep 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.0808e+04 | 800 | 1 | 3.845e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 995.842298765601 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.53051032667053, dt = 0.010899968290660771 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (1.0%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.2%)
LB compute : 388.46 us (95.8%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (66.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.893749999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.151732303694149e-18,-1.6236461239287166e-17,-5.131560535590206e-18)
sum a = (-1.1009638809340994e-16,1.3245597235356483e-16,-7.057768022096045e-18)
sum e = 4.144510271643968
sum de = -5.963111948670274e-19
Info: CFL hydro = 0.011072176082475191 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011072176082475191 cfl multiplier : 0.9687700406943431 [sph::Model][rank=0]
Info: Timestep 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.0958e+04 | 800 | 1 | 3.817e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1027.968253774422 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.54141029496119, dt = 0.011072176082475191 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.0%)
patch tree reduce : 1143.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 397.95 us (95.9%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.893749999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.285437958292691e-18,-1.4353690780082002e-17,-5.819251058328925e-18)
sum a = (-3.000450106507385e-17,-1.130620885780768e-16,2.010685015463016e-17)
sum e = 4.144510277799131
sum de = 2.5343225781848666e-18
Info: CFL hydro = 0.011187008405229262 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011187008405229262 cfl multiplier : 0.9791800271295621 [sph::Model][rank=0]
Info: Timestep 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.0566e+04 | 800 | 1 | 3.890e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1024.7160667796486 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.552482471043666, dt = 0.011187008405229262 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (1.1%)
patch tree reduce : 2.42 us (0.6%)
gen split merge : 2.18 us (0.5%)
split / merge op : 0/0
apply split merge : 2.58 us (0.6%)
LB compute : 398.88 us (94.6%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 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: 3.893749999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.38429464111492e-18,-1.6911981905239058e-17,-5.326091015613492e-18)
sum a = (-7.956465138661755e-18,-6.882821650071253e-17,-1.858984942186724e-16)
sum e = 4.144510281906679
sum de = 6.776263578034403e-19
Info: CFL hydro = 0.011263598875036642 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011263598875036642 cfl multiplier : 0.9861200180863747 [sph::Model][rank=0]
Info: Timestep 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.0980e+04 | 800 | 1 | 3.813e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1056.1406429124102 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.563669479448896, dt = 0.011263598875036642 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.16 us (1.0%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 395.53 us (96.1%)
LB move op cnt : 0
LB apply : 3.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.893749999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.343853270869463e-18,-1.7039297330085868e-17,-8.462731180993772e-18)
sum a = (1.517000732762919e-17,1.4492988833149687e-17,-1.0170854833879665e-16)
sum e = 4.144510284708229
sum de = -3.7947076036992655e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010456870337922058
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.478657838354318e-18,-1.678616430891986e-17,-8.218070252437055e-18)
sum a = (1.6752912515606927e-16,8.60412619400011e-17,9.6160591472531e-17)
sum e = 4.1445101001877465
sum de = -1.8973538018496328e-19
Info: CFL hydro = 0.005655010853088339 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005655010853088339 cfl multiplier : 0.4953733393621249 [sph::Model][rank=0]
Info: Timestep 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.5896e+04 | 800 | 1 | 5.033e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 805.7160208114934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.574933078323932, dt = 0.005655010853088339 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.3%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 391.40 us (95.2%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 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: 3.893749999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.397376182222111e-18,-1.594887816198614e-17,-6.447777354227069e-18)
sum a = (1.4459437474131234e-16,-1.1576417124188437e-16,-2.7751766959549132e-17)
sum e = 4.144510146008741
sum de = 1.328147661294743e-18
Info: CFL hydro = 0.007573091689371171 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007573091689371171 cfl multiplier : 0.6635822262414166 [sph::Model][rank=0]
Info: Timestep 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.0833e+04 | 800 | 1 | 3.840e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 530.1522972992445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.58058808917702, dt = 0.007573091689371171 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (1.1%)
patch tree reduce : 1432.00 ns (0.3%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 414.38 us (95.7%)
LB move op cnt : 0
LB apply : 3.67 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (72.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.893749999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0445856151548773e-17,-1.7458689317816533e-17,-7.023130737395074e-18)
sum a = (-6.230966674855592e-19,5.452095840498642e-18,-1.9470572596101636e-16)
sum e = 4.144510182771245
sum de = 2.981555974335137e-19
Info: CFL hydro = 0.008850314896683762 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008850314896683762 cfl multiplier : 0.7757214841609444 [sph::Model][rank=0]
Info: Timestep 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.1076e+04 | 800 | 1 | 3.796e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 718.2636960134386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.588161180866392, dt = 0.008850314896683762 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (1.0%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 541.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 611.00 ns (0.2%)
LB compute : 369.87 us (96.2%)
LB move op cnt : 0
LB apply : 3.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.893749999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.779322456762537e-18,-1.702731470186499e-17,-9.252835729307791e-18)
sum a = (-8.200910754367628e-17,1.5687057735359996e-16,-1.2138402387747527e-17)
sum e = 4.144510213265139
sum de = -4.336808689942018e-19
Info: CFL hydro = 0.00970110087032478 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00970110087032478 cfl multiplier : 0.8504809894406297 [sph::Model][rank=0]
Info: Timestep 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.1239e+04 | 800 | 1 | 3.767e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 845.8668668868376 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.597011495763075, dt = 0.00970110087032478 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (1.1%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 981.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 381.92 us (95.7%)
LB move op cnt : 0
LB apply : 3.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.893749999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.21708730246581e-18,-1.4211397069959098e-17,-8.834192655840933e-18)
sum a = (-4.051326601478222e-17,-3.4629795558332035e-17,-1.917220515340182e-17)
sum e = 4.1445102365381326
sum de = -1.0977546996415732e-18
Info: CFL hydro = 0.010268536698512108 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010268536698512108 cfl multiplier : 0.9003206596270864 [sph::Model][rank=0]
Info: Timestep 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.0909e+04 | 800 | 1 | 3.826e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 912.7868449715531 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.6067125966334, dt = 0.010268536698512108 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (1.1%)
patch tree reduce : 1363.00 ns (0.3%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 391.93 us (95.8%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.893749999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.425285467803534e-18,-1.60372500451151e-17,-8.716613116423585e-18)
sum a = (1.0269711516701894e-16,-1.32608750863381e-16,1.8531134543584945e-16)
sum e = 4.14451025382162
sum de = 7.724940478959219e-19
Info: CFL hydro = 0.010647972018444429 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010647972018444429 cfl multiplier : 0.9335471064180577 [sph::Model][rank=0]
Info: Timestep 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.0898e+04 | 800 | 1 | 3.828e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 965.6846302144156 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.616981133331912, dt = 0.010647972018444429 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (1.0%)
patch tree reduce : 822.00 ns (0.2%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 377.87 us (96.1%)
LB move op cnt : 0
LB apply : 3.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 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: 3.8987499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0372462553695907e-17,-1.7632437427019237e-17,-5.70822451871987e-18)
sum a = (1.1645766585016758e-16,2.8666041492801983e-16,-1.0892209052776409e-17)
sum e = 4.144510266741342
sum de = 6.776263578034403e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010127689880336407
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0287086327622163e-17,-1.5619355885912044e-17,-7.152131219335445e-18)
sum a = (1.5853541376203794e-16,-7.282741866942994e-17,1.3720109312903177e-17)
sum e = 4.144510102852087
sum de = 4.0657581468206416e-20
Info: CFL hydro = 0.00545185730762644 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00545185730762644 cfl multiplier : 0.4778490354726859 [sph::Model][rank=0]
Info: Timestep 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.4744e+04 | 800 | 1 | 5.426e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 706.4549004153018 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.627629105350357, dt = 0.00545185730762644 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.2%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 392.30 us (94.7%)
LB move op cnt : 0
LB apply : 6.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.8987499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1203757386519188e-17,-1.8002401073338787e-17,-6.672826090500399e-18)
sum a = (-3.718298470506692e-17,-7.399123143538254e-17,3.8787767550976055e-17)
sum e = 4.14451014521566
sum de = 1.6263032587282567e-18
Info: CFL hydro = 0.007438159286660082 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007438159286660082 cfl multiplier : 0.6518993569817906 [sph::Model][rank=0]
Info: Timestep 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.1048e+04 | 800 | 1 | 3.801e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 516.3902742441421 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.633080962657983, dt = 0.007438159286660082 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (1.1%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 406.44 us (95.8%)
LB move op cnt : 0
LB apply : 3.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8987499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.073194140032219e-17,-1.851316060125363e-17,-5.902193313045302e-18)
sum a = (-1.698792181158886e-16,-1.0662142590935587e-16,-8.324331825042652e-17)
sum e = 4.1445101827602935
sum de = -9.486769009248164e-20
Info: CFL hydro = 0.008760369220179415 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008760369220179415 cfl multiplier : 0.767932904654527 [sph::Model][rank=0]
Info: Timestep 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.1276e+04 | 800 | 1 | 3.760e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 712.1363455199037 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.640519121944644, dt = 0.008760369220179415 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.83 us (1.2%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 396.77 us (95.8%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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: 3.8987499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.519648665042934e-18,-1.9552653599414636e-17,-7.614960234366786e-18)
sum a = (-2.688602207059083e-17,-1.2100132868867105e-16,-1.119776607240875e-16)
sum e = 4.144510214840356
sum de = 1.2332799712022613e-18
Info: CFL hydro = 0.009641917229859699 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009641917229859699 cfl multiplier : 0.8452886031030179 [sph::Model][rank=0]
Info: Timestep 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.1501e+04 | 800 | 1 | 3.721e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 847.5963902087472 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.649279491164823, dt = 0.009641917229859699 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.05 us (1.1%)
patch tree reduce : 1263.00 ns (0.3%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 369.03 us (95.7%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.8987499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.073845220258456e-18,-2.0857262246962528e-17,-8.480705123325086e-18)
sum a = (3.100205486446179e-17,5.946449465322015e-17,-2.0058919641746653e-17)
sum e = 4.144510240029434
sum de = 1.0842021724855044e-19
Info: CFL hydro = 0.01023084975401112 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01023084975401112 cfl multiplier : 0.8968590687353452 [sph::Model][rank=0]
Info: Timestep 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.1340e+04 | 800 | 1 | 3.749e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 925.9182491582301 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.658921408394683, dt = 0.01023084975401112 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (1.1%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 373.79 us (95.7%)
LB move op cnt : 0
LB apply : 3.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.8987499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.476761094185415e-18,-1.9407364232236515e-17,-8.664938032221057e-18)
sum a = (-1.1461383893268025e-17,-1.3499479170786296e-16,1.4594841173027135e-17)
sum e = 4.144510259147134
sum de = 3.6591823321385775e-19
Info: CFL hydro = 0.010625818305040276 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010625818305040276 cfl multiplier : 0.9312393791568967 [sph::Model][rank=0]
Info: Timestep 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.1207e+04 | 800 | 1 | 3.772e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 976.3670333157451 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.669152258148694, dt = 0.010625818305040276 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (1.1%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 368.96 us (95.7%)
LB move op cnt : 0
LB apply : 3.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.8987499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.24459767240594e-18,-2.170952667917234e-17,-8.016378279766136e-18)
sum a = (-1.0485997956088708e-16,-3.024115797243615e-18,-1.6919471047877106e-17)
sum e = 4.144510273461528
sum de = 1.6940658945086007e-19
Info: CFL hydro = 0.010892488019314174 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010892488019314174 cfl multiplier : 0.9541595861045978 [sph::Model][rank=0]
Info: Timestep 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.1361e+04 | 800 | 1 | 3.745e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1021.4012037493083 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.679778076453735, dt = 0.010892488019314174 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.2%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 382.34 us (95.6%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 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: 3.8987499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.815669257066461e-18,-2.159419388254641e-17,-8.357883184061106e-18)
sum a = (1.3887266976584398e-16,-4.3853423631351443e-17,-2.5163519263839887e-17)
sum e = 4.1445102840750625
sum de = -5.183841637196318e-19
Info: CFL hydro = 0.011074513306423013 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011074513306423013 cfl multiplier : 0.969439724069732 [sph::Model][rank=0]
Info: Timestep 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.0393e+04 | 800 | 1 | 3.923e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 999.5831654728107 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.690670564473049, dt = 0.011074513306423013 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.83 us (1.2%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 1112.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 389.83 us (95.5%)
LB move op cnt : 0
LB apply : 3.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (73.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8987499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0624097746334305e-17,-2.1691552736841027e-17,-8.733838144491095e-18)
sum a = (3.0939146066302186e-17,-1.5559442744807663e-16,-8.687405460135199e-17)
sum e = 4.1445102918038215
sum de = 3.2695471764015993e-19
Info: CFL hydro = 0.011200885767885171 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011200885767885171 cfl multiplier : 0.9796264827131548 [sph::Model][rank=0]
Info: Timestep 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.0659e+04 | 800 | 1 | 3.872e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1029.5292900687928 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.701745077779472, dt = 0.011200885767885171 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.86 us (1.2%)
patch tree reduce : 1413.00 ns (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 381.00 us (95.3%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.8987499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0212194901241688e-17,-2.4004199983470123e-17,-9.905140053081737e-18)
sum a = (1.7386793548491274e-17,1.6994662039963104e-16,1.128883404688741e-16)
sum e = 4.144510297211881
sum de = 2.1167353351884965e-18
Info: CFL hydro = 0.011273518957103826 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011273518957103826 cfl multiplier : 0.9864176551421032 [sph::Model][rank=0]
Info: Timestep 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.1105e+04 | 800 | 1 | 3.791e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1063.7860174852492 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.712945963547357, dt = 0.011273518957103826 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 us (1.1%)
patch tree reduce : 1363.00 ns (0.3%)
gen split merge : 1022.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.2%)
LB compute : 398.70 us (95.7%)
LB move op cnt : 0
LB apply : 3.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8987499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.020470575860364e-17,-2.0545713913219747e-17,-7.472666524243881e-18)
sum a = (2.2393135619173323e-16,-8.863250529276556e-17,4.426981996202689e-17)
sum e = 4.144510300124121
sum de = 3.8285889215894375e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010797330833343182
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.138649246688755e-17,-2.145938931506155e-17,-8.321935299398477e-18)
sum a = (1.1995809111919101e-16,8.995359005411716e-17,-1.6386843223459162e-16)
sum e = 4.14451011062936
sum de = 4.946672411965114e-19
Info: CFL hydro = 0.005659279062782809 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005659279062782809 cfl multiplier : 0.49547255171403437 [sph::Model][rank=0]
Info: Timestep 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.5397e+04 | 800 | 1 | 5.196e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 781.1048460974871 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.724219482504461, dt = 0.005659279062782809 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (1.1%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 395.42 us (95.5%)
LB move op cnt : 0
LB apply : 4.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.8987499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1692049486519891e-17,-2.02236807797837e-17,-9.921616166885442e-18)
sum a = (1.7215441964932745e-16,1.2110842342839511e-16,1.7067456506404926e-16)
sum e = 4.144510157706174
sum de = -5.488773498207866e-19
Info: CFL hydro = 0.007577969036941084 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007577969036941084 cfl multiplier : 0.6636483678093562 [sph::Model][rank=0]
Info: Timestep 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.1448e+04 | 800 | 1 | 3.730e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 546.2087683578216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.729878761567244, dt = 0.007577969036941084 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.10 us (0.9%)
patch tree reduce : 802.00 ns (0.2%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 722.00 ns (0.2%)
LB compute : 429.04 us (96.5%)
LB move op cnt : 0
LB apply : 3.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.898749999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3052077789589332e-17,-1.9494238286837867e-17,-7.649410290501805e-18)
sum a = (-1.0113338218419459e-17,-1.2989168991429733e-16,-1.548634871266032e-16)
sum e = 4.144510195034581
sum de = 8.402566836762659e-19
Info: CFL hydro = 0.008855760801100602 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008855760801100602 cfl multiplier : 0.7757655785395707 [sph::Model][rank=0]
Info: Timestep 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.1905e+04 | 800 | 1 | 3.652e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 746.9735474808242 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.737456730604185, dt = 0.008855760801100602 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.32 us (1.1%)
patch tree reduce : 792.00 ns (0.2%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 391.90 us (96.1%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.898749999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2292678726091307e-17,-2.1424939258926535e-17,-1.0439864837438334e-17)
sum a = (-1.0436869180383116e-16,-6.504769729702611e-17,5.2435981094553976e-17)
sum e = 4.144510225320544
sum de = 2.846030702774449e-19
Info: CFL hydro = 0.009707365179864721 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009707365179864721 cfl multiplier : 0.8505103856930472 [sph::Model][rank=0]
Info: Timestep 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.1349e+04 | 800 | 1 | 3.747e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 850.7931736895417 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.746312491405286, dt = 0.009707365179864721 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (1.0%)
patch tree reduce : 1012.00 ns (0.2%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 403.57 us (96.1%)
LB move op cnt : 0
LB apply : 3.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.898749999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0941637394187523e-17,-2.2072001182853846e-17,-9.286536871179006e-18)
sum a = (-2.06736284694776e-16,9.553150349093501e-17,2.295871567119868e-17)
sum e = 4.14451024728631
sum de = 1.6805133673525319e-18
Info: CFL hydro = 0.010273412203604535 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010273412203604535 cfl multiplier : 0.9003402571286981 [sph::Model][rank=0]
Info: Timestep 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.1205e+04 | 800 | 1 | 3.773e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 926.2829389712418 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.756019856585151, dt = 0.010273412203604535 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 us (1.1%)
patch tree reduce : 882.00 ns (0.2%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1342.00 ns (0.3%)
LB compute : 401.05 us (95.9%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.899999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.15717416136143e-18,-1.9862704104629808e-17,-8.980979851546664e-18)
sum a = (-1.4423489589468606e-16,1.2887316651552285e-16,-6.770184944795018e-19)
sum e = 4.144510261972888
sum de = 2.1141942363467336e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010044421047353187
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.551851978386538e-18,-1.984772581935371e-17,-8.849170941117027e-18)
sum a = (-5.467673257185781e-17,-1.482850242333422e-17,-1.1176796473022218e-16)
sum e = 4.144510111261192
sum de = 6.776263578034403e-20
Info: CFL hydro = 0.005321918045048701 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005321918045048701 cfl multiplier : 0.4667800857095661 [sph::Model][rank=0]
Info: Timestep 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.6087e+04 | 800 | 1 | 4.973e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 743.6991702235049 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.766293268788756, dt = 0.005321918045048701 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (1.1%)
patch tree reduce : 1403.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 386.26 us (95.7%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 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: 3.899999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.68440980307998e-18,-2.0803340419968582e-17,-1.010884473283663e-17)
sum a = (-2.9573126449122307e-17,-1.786609867732632e-17,1.263628059032493e-16)
sum e = 4.144510151305631
sum de = -1.0706496453294356e-18
Info: CFL hydro = 0.007345210220488289 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007345210220488289 cfl multiplier : 0.6445200571397107 [sph::Model][rank=0]
Info: Timestep 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.1090e+04 | 800 | 1 | 3.793e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 505.07453510320556 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.771615186833804, dt = 0.007345210220488289 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.92 us (1.2%)
patch tree reduce : 1132.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 394.48 us (95.7%)
LB move op cnt : 0
LB apply : 3.48 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.899999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.623747747711796e-18,-2.0834794819048383e-17,-8.597535748478629e-18)
sum a = (3.8104757742386116e-18,-7.311200608967575e-17,-4.918868884669654e-18)
sum e = 4.144510186779377
sum de = -2.981555974335137e-19
Info: CFL hydro = 0.008690798572395617 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008690798572395617 cfl multiplier : 0.7630133714264739 [sph::Model][rank=0]
Info: Timestep 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.1384e+04 | 800 | 1 | 3.741e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 706.819508926003 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.778960397054293, dt = 0.008690798572395617 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (1.2%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 382.40 us (95.6%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 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: 3.899999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.626743404767014e-18,-2.155824599788378e-17,-9.589098233756128e-18)
sum a = (1.380878076173766e-16,1.544860343376456e-16,3.6403224535021707e-17)
sum e = 4.144510215776106
sum de = 8.809142651444724e-19
Info: CFL hydro = 0.00958494667144014 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00958494667144014 cfl multiplier : 0.842008914284316 [sph::Model][rank=0]
Info: Timestep 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.1035e+04 | 800 | 1 | 3.803e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 822.6566998243724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.787651195626689, dt = 0.00958494667144014 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (0.9%)
patch tree reduce : 901.00 ns (0.2%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.2%)
LB compute : 414.29 us (96.2%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.899999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0490042093113254e-17,-1.9241105265671858e-17,-8.333917927619353e-18)
sum a = (2.0338114879293068e-16,7.659295958784027e-17,1.2392733671735624e-16)
sum e = 4.144510236887246
sum de = 1.531435568635775e-18
Info: CFL hydro = 0.010178794263070508 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010178794263070508 cfl multiplier : 0.8946726095228774 [sph::Model][rank=0]
Info: Timestep 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.1096e+04 | 800 | 1 | 3.792e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 909.9336083679048 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.797236142298129, dt = 0.010178794263070508 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.42 us (1.1%)
patch tree reduce : 1392.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 373.56 us (95.4%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 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: 3.899999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3044588646951284e-17,-1.8835193734689677e-17,-7.114685506145206e-18)
sum a = (-2.897878808936685e-16,-9.710122778786978e-17,1.961466370045767e-16)
sum e = 4.14451025142383
sum de = -3.1170812458958252e-19
Info: CFL hydro = 0.010573192043242892 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010573192043242892 cfl multiplier : 0.9297817396819182 [sph::Model][rank=0]
Info: Timestep 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.0966e+04 | 800 | 1 | 3.816e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 960.3215662374441 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.8074149365612, dt = 0.010573192043242892 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (0.9%)
patch tree reduce : 932.00 ns (0.2%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 403.50 us (96.4%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.899999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.452820296253056e-18,-2.0770388192361175e-17,-4.619303179147751e-18)
sum a = (2.5642824392674932e-18,-5.2226285100688644e-17,7.874084569643231e-17)
sum e = 4.1445102613384925
sum de = -1.6127507315721878e-18
Info: CFL hydro = 0.01083538487580144 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01083538487580144 cfl multiplier : 0.9531878264546121 [sph::Model][rank=0]
Info: Timestep 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.1029e+04 | 800 | 1 | 3.804e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1000.5359014783444 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.817988128604442, dt = 0.01083538487580144 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.2%)
patch tree reduce : 1372.00 ns (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 409.02 us (95.6%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 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: 3.8949999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.22100687309609e-18,-2.100105378561304e-17,-4.625294493258189e-18)
sum a = (1.727894989450339e-17,6.855261605163238e-17,-1.018733094768337e-16)
sum e = 4.144510268414761
sum de = 1.0570971181733668e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010003593823825327
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.111665390580595e-18,-2.032553311966115e-17,-5.308304301848129e-18)
sum a = (1.9399875089598467e-17,8.303961357067163e-17,1.7276253803153693e-16)
sum e = 4.144510113592919
sum de = 1.883801274693564e-18
Info: CFL hydro = 0.005505463482185743 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005505463482185743 cfl multiplier : 0.48439594215153736 [sph::Model][rank=0]
Info: Timestep 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.5660e+04 | 800 | 1 | 5.109e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 763.547605811188 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.828823513480243, dt = 0.005505463482185743 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (1.0%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 416.71 us (96.0%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.8949999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.142838946811468e-18,-1.9843232333770885e-17,-2.7020826638075687e-18)
sum a = (-1.8154880017449436e-16,-8.458537261116466e-17,-3.858705852827638e-17)
sum e = 4.144510152996475
sum de = 1.1655173354219173e-18
Info: CFL hydro = 0.0074582680316286655 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0074582680316286655 cfl multiplier : 0.6562639614343583 [sph::Model][rank=0]
Info: Timestep 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.1540e+04 | 800 | 1 | 3.714e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 533.6423377659418 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.834328976962428, dt = 0.0074582680316286655 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (1.0%)
patch tree reduce : 722.00 ns (0.2%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 375.26 us (96.1%)
LB move op cnt : 0
LB apply : 3.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 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: 3.8949999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.242703038114332e-18,-2.1025767956318597e-17,-3.489940469330175e-18)
sum a = (8.540019133018423e-17,1.2196518134618775e-16,2.310250720984919e-17)
sum e = 4.144510186464254
sum de = -3.672734859294646e-18
Info: CFL hydro = 0.008760101617169258 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008760101617169258 cfl multiplier : 0.7708426409562389 [sph::Model][rank=0]
Info: Timestep 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.1359e+04 | 800 | 1 | 3.745e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 716.869343927799 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.841787244994057, dt = 0.008760101617169258 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.73 us (1.1%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 402.61 us (95.7%)
LB move op cnt : 0
LB apply : 3.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.8949999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.85759622658483e-18,-1.9120530069199292e-17,-3.1993617349739287e-18)
sum a = (-2.0426786328127552e-16,-2.6406716941755785e-16,1.7442213204012828e-17)
sum e = 4.144510214939542
sum de = -1.7618285302889447e-19
Info: CFL hydro = 0.009628667163905447 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009628667163905447 cfl multiplier : 0.8472284273041591 [sph::Model][rank=0]
Info: Timestep 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.0950e+04 | 800 | 1 | 3.819e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 825.8494213401646 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.850547346611226, dt = 0.009628667163905447 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (1.0%)
patch tree reduce : 1342.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 424.71 us (96.0%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8949999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.948719611684173e-18,-2.33713674305551e-17,-3.0076396834399104e-18)
sum a = (1.0664539116579763e-17,8.918071053387065e-17,-8.357284052650062e-17)
sum e = 4.144510237607566
sum de = -5.014435047745458e-19
Info: CFL hydro = 0.010209172873721133 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010209172873721133 cfl multiplier : 0.8981522848694393 [sph::Model][rank=0]
Info: Timestep 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.1243e+04 | 800 | 1 | 3.766e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 920.4420834000064 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.860176013775131, dt = 0.010209172873721133 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (1.2%)
patch tree reduce : 1652.00 ns (0.4%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 383.35 us (95.5%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8949999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.834217114350324e-18,-2.0691752194661676e-17,-4.6462640926447225e-18)
sum a = (1.8159673068737786e-17,1.3606873476215897e-16,9.744909846340709e-17)
sum e = 4.144510255604202
sum de = -2.168404344971009e-19
Info: CFL hydro = 0.01059838911822853 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01059838911822853 cfl multiplier : 0.9321015232462928 [sph::Model][rank=0]
Info: Timestep 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.1242e+04 | 800 | 1 | 3.766e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 975.8832310181847 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.870385186648852, dt = 0.01059838911822853 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.2%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.2%)
LB compute : 374.85 us (95.6%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 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: 3.8949999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.1135621347495e-18,-1.8734090309076037e-17,-2.2826906760769043e-18)
sum a = (4.696591131172402e-17,-5.520396821357636e-17,-7.777647816035922e-17)
sum e = 4.144510270314777
sum de = 2.72405795836983e-18
Info: CFL hydro = 0.010860763712034425 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010860763712034425 cfl multiplier : 0.9547343488308618 [sph::Model][rank=0]
Info: Timestep 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.0757e+04 | 800 | 1 | 3.854e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 989.9528340220954 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.88098357576708, dt = 0.010860763712034425 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (1.3%)
patch tree reduce : 1393.00 ns (0.4%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 375.94 us (95.3%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.8974999999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.786461600778075e-18,-2.0804089334232387e-17,-4.071097938042667e-18)
sum a = (-5.454492366142818e-17,1.0376356907867691e-16,2.144493526977012e-16)
sum e = 4.144510282814372
sum de = -8.131516293641283e-20
Info: CFL hydro = 0.011039190191471124 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011039190191471124 cfl multiplier : 0.9698228992205745 [sph::Model][rank=0]
Info: Timestep 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.0995e+04 | 800 | 1 | 3.810e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1026.0833310061735 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.891844339479116, dt = 0.011039190191471124 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (1.1%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 398.54 us (95.9%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.8974999999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.66196683367523e-18,-1.8752813165671155e-17,-1.0784365398788523e-19)
sum a = (3.6618911842997475e-17,1.1189378232654136e-16,1.2337763364772354e-16)
sum e = 4.144510293767535
sum de = 2.846030702774449e-19
Info: CFL hydro = 0.011162194900501932 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011162194900501932 cfl multiplier : 0.9798819328137164 [sph::Model][rank=0]
Info: Timestep 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.0977e+04 | 800 | 1 | 3.814e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1042.0614414881438 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.902883529670587, dt = 0.011162194900501932 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.86 us (1.2%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 1122.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 390.07 us (95.6%)
LB move op cnt : 0
LB apply : 3.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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: 3.8974999999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.40638761189716e-18,-1.695167436122071e-17,4.37365930061979e-19)
sum a = (-1.8003898901866396e-17,5.5102115873698914e-17,3.1969652093297534e-17)
sum e = 4.144510303485881
sum de = -7.589415207398531e-19
Info: CFL hydro = 0.011248727331260124 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011248727331260124 cfl multiplier : 0.9865879552091442 [sph::Model][rank=0]
Info: Timestep 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.1232e+04 | 800 | 1 | 3.768e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1066.4666012943906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.91404572457109, dt = 0.011248727331260124 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.05 us (1.0%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 377.71 us (96.0%)
LB move op cnt : 0
LB apply : 3.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8974999999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.046908765270876e-18,-1.719881606827628e-17,7.069750650316921e-19)
sum a = (1.951071440064157e-17,-1.0352990782836983e-16,2.0353242947421923e-16)
sum e = 4.144510312043989
sum de = 6.505213034913027e-19
Info: CFL hydro = 0.011311352743052373 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011311352743052373 cfl multiplier : 0.9910586368060962 [sph::Model][rank=0]
Info: Timestep 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.1254e+04 | 800 | 1 | 3.764e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1075.8377518083607 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.92529445190235, dt = 0.011311352743052373 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (1.1%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 381.19 us (95.7%)
LB move op cnt : 0
LB apply : 3.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 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: 3.9
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.559540578845233e-18,-1.9302516235303848e-17,3.5618362386554316e-18)
sum a = (8.382447571913902e-17,2.2950327831444064e-16,-4.072745549423038e-17)
sum e = 4.144510319354423
sum de = -5.285485590866834e-19
Info: CFL hydro = 0.01135837863866276 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01135837863866276 cfl multiplier : 0.9940390912040641 [sph::Model][rank=0]
Info: Timestep 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.0990e+04 | 800 | 1 | 3.811e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1068.4029560175695 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.936605804645401, dt = 0.01135837863866276 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.46 us (1.1%)
patch tree reduce : 1313.00 ns (0.3%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1292.00 ns (0.3%)
LB compute : 371.54 us (95.7%)
LB move op cnt : 0
LB apply : 3.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.909832996485213e-18,-1.4756606654008964e-17,1.8003898901866396e-18)
sum a = (-5.990415413321503e-17,-1.641320500554509e-16,-1.1268164013206398e-16)
sum e = 4.144510325253956
sum de = 2.981555974335137e-19
Info: CFL hydro = 0.011395271796910555 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011395271796910555 cfl multiplier : 0.9960260608027095 [sph::Model][rank=0]
Info: Timestep 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.0949e+04 | 800 | 1 | 3.819e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1070.757687511625 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.947964183284064, dt = 0.011395271796910555 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.3%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 392.42 us (95.4%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (66.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.140148591114568e-18,-1.8716116366744723e-17,-4.193919877306648e-20)
sum a = (-7.555721116099828e-17,1.3630239601246606e-17,1.1882573275231822e-16)
sum e = 4.144510329574323
sum de = -1.0537089863843496e-18
Info: CFL hydro = 0.011411667470894112 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011411667470894112 cfl multiplier : 0.9973507072018064 [sph::Model][rank=0]
Info: Timestep 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.1357e+04 | 800 | 1 | 3.746e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1095.1799368226368 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.959359455080975, dt = 0.011411667470894112 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.1%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 397.61 us (95.8%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.8949999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.2796461020029005e-18,-1.7531521229971545e-17,2.8249046030715494e-18)
sum a = (8.744397835610741e-17,-8.039744404796844e-17,-9.915624852775003e-19)
sum e = 4.144510331700592
sum de = 1.0062751413381088e-18
Info: CFL hydro = 0.011419900942795791 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011419900942795791 cfl multiplier : 0.9982338048012043 [sph::Model][rank=0]
Info: Timestep 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.1284e+04 | 800 | 1 | 3.759e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1093.0070063499813 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.970771122551868, dt = 0.011419900942795791 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.81 us (1.1%)
patch tree reduce : 1443.00 ns (0.3%)
gen split merge : 1092.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 406.21 us (95.7%)
LB move op cnt : 0
LB apply : 3.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (72.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8949999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.163914389735673e-18,-1.9572499827405464e-17,2.183833993254676e-18)
sum a = (1.4663741285297174e-18,9.95277100025972e-17,-1.8132712155240816e-16)
sum e = 4.144510331939512
sum de = -7.033549835762896e-19
Info: CFL hydro = 0.011416576924265752 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011416576924265752 cfl multiplier : 0.9988225365341362 [sph::Model][rank=0]
Info: Timestep 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.1678e+04 | 800 | 1 | 3.690e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1114.0331839650464 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.982191023494664, dt = 0.011416576924265752 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (1.1%)
patch tree reduce : 812.00 ns (0.2%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 387.90 us (96.1%)
LB move op cnt : 0
LB apply : 3.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.8949999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.585003663814595e-18,-1.6919283819311155e-17,-7.429229496943205e-19)
sum a = (1.134904675369731e-16,-1.825313756886062e-16,-7.886965894980673e-17)
sum e = 4.144510330205194
sum de = 2.337810934421869e-19
Info: CFL hydro = 0.011408100089936098 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011408100089936098 cfl multiplier : 0.9992150243560909 [sph::Model][rank=0]
Info: Timestep 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.1059e+04 | 800 | 1 | 3.799e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1081.8744236994353 (tsim/hr) [sph::Model][rank=0]
---------------- t = 10.99360760041893, dt = 0.006392399581070407 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (1.1%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 396.32 us (95.8%)
LB move op cnt : 0
LB apply : 3.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 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: 3.8949999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.093316991117379e-18,-1.979698687798094e-17,-1.132358366872795e-18)
sum a = (4.820311767552948e-17,7.127267265777127e-17,-1.62355625421706e-16)
sum e = 4.144510194221549
sum de = -1.1756817307889689e-18
Info: CFL hydro = 0.01140626643193551 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01140626643193551 cfl multiplier : 0.9994766829040606 [sph::Model][rank=0]
Info: Timestep 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.1080e+04 | 800 | 1 | 3.795e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 606.3953938167796 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 1415 [SPH][rank=0]
Info: time since start : 920.953961508 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15101783505866417 max=0.15130243012383515 delta=0.0002845950651709783
Number of particle pairs: 319600
Distance min=0.151610 max=2.291754 mean=0.934052
---------------- t = 11, dt = 0.01140626643193551 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.85 us (1.4%)
patch tree reduce : 1593.00 ns (0.2%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.1%)
LB compute : 669.75 us (96.5%)
LB move op cnt : 0
LB apply : 4.25 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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: 3.8949999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.10455070507445e-18,-1.7700448203601006e-17,-2.881822087120711e-18)
sum a = (-9.169706246025464e-17,-1.500644445241423e-16,-1.125288616222478e-16)
sum e = 4.144510324390263
sum de = -1.0232158002831948e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010066389273281061
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.568328092190243e-18,-1.9198417152634987e-17,-2.687104378531474e-18)
sum a = (-5.17949104847371e-17,-8.474713809214648e-17,-2.257587069954169e-16)
sum e = 4.144510133979546
sum de = 2.1006417091906648e-19
Info: CFL hydro = 0.005700432199914711 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005700432199914711 cfl multiplier : 0.49982556096802017 [sph::Model][rank=0]
Info: Timestep 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.3065e+04 | 800 | 1 | 6.123e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 670.6080560447039 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.011406266431935, dt = 0.005700432199914711 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.6%)
patch tree reduce : 1363.00 ns (0.3%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 376.58 us (95.1%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.8949999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.813223056454399e-18,-1.9563419241956832e-17,-4.8439774582891784e-18)
sum a = (-2.9264573772434744e-17,-1.3031108190202799e-17,2.9986527122742533e-18)
sum e = 4.144510181040884
sum de = 8.334804200982315e-19
Info: CFL hydro = 0.0075998302800287885 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0075998302800287885 cfl multiplier : 0.6665503739786801 [sph::Model][rank=0]
Info: Timestep 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.0209e+04 | 800 | 1 | 3.959e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 518.4068715454594 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.01710669863185, dt = 0.0075998302800287885 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.2%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 395.67 us (95.5%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 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: 3.8949999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.548856321331319e-18,-1.9238203222899613e-17,-3.563334067183041e-18)
sum a = (7.905838534428554e-17,1.566728639879555e-17,1.0730443571794581e-17)
sum e = 4.144510215969913
sum de = -1.0028870095490916e-18
Info: CFL hydro = 0.008864450500634757 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008864450500634757 cfl multiplier : 0.77770024931912 [sph::Model][rank=0]
Info: Timestep 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.9198e+04 | 800 | 1 | 4.167e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 656.5621276453346 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.024706528911878, dt = 0.008864450500634757 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (0.7%)
patch tree reduce : 1533.00 ns (0.2%)
gen split merge : 812.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.1%)
LB compute : 709.14 us (97.4%)
LB move op cnt : 0
LB apply : 3.71 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 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: 3.8949999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.567754177237694e-18,-1.875206425140735e-17,-4.110041479760515e-18)
sum a = (2.993919574127007e-16,7.124271608721907e-17,2.2443462657701005e-17)
sum e = 4.144510243086508
sum de = -1.565316886525947e-18
Info: CFL hydro = 0.00970191425042915 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00970191425042915 cfl multiplier : 0.8518001662127466 [sph::Model][rank=0]
Info: Timestep 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.9112e+04 | 800 | 1 | 4.186e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 762.3960722362885 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.033570979412513, dt = 0.00970191425042915 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.36 us (1.0%)
patch tree reduce : 1082.00 ns (0.2%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 416.09 us (96.0%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8949999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3337788581230847e-17,-1.803760004373761e-17,-3.1903747638082713e-18)
sum a = (4.03215439632482e-18,1.194068902210307e-16,3.863798469821511e-17)
sum e = 4.1445102614881
sum de = 8.267041565201971e-19
Info: CFL hydro = 0.010257990569385677 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010257990569385677 cfl multiplier : 0.9012001108084977 [sph::Model][rank=0]
Info: Timestep 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.0724e+04 | 800 | 1 | 3.860e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 904.7752449268156 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.043272893662943, dt = 0.010257990569385677 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (1.0%)
patch tree reduce : 1412.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 410.09 us (95.8%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.894999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1709274514587401e-17,-1.662702002786135e-17,-2.9177699717833394e-18)
sum a = (1.016696047970788e-16,-1.0408110872653012e-16,-5.4329236353452404e-17)
sum e = 4.144510272930595
sum de = 1.111307226797642e-18
Info: CFL hydro = 0.010626571260958641 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010626571260958641 cfl multiplier : 0.9341334072056652 [sph::Model][rank=0]
Info: Timestep 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.1043e+04 | 800 | 1 | 3.802e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 971.359842158048 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.053530884232329, dt = 0.010626571260958641 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.93 us (1.2%)
patch tree reduce : 1322.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 379.39 us (95.5%)
LB move op cnt : 0
LB apply : 3.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.894999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3825706224099648e-17,-1.8789509964597588e-17,-4.202906848472305e-18)
sum a = (-4.8493696409885724e-17,1.5090322849960362e-16,-5.894254821848972e-17)
sum e = 4.144510279582742
sum de = 1.0164395367051604e-18
Info: CFL hydro = 0.0108714256858008 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0108714256858008 cfl multiplier : 0.9560889381371102 [sph::Model][rank=0]
Info: Timestep 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.1358e+04 | 800 | 1 | 3.746e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1021.3530962086387 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.064157455493287, dt = 0.0108714256858008 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.70 us (1.2%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 379.17 us (95.5%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.894999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2249616155922533e-17,-1.5610368914746387e-17,-4.875431857368978e-18)
sum a = (1.709142176284668e-16,3.749963501723187e-17,-7.19556824663612e-17)
sum e = 4.144510283450525
sum de = 2.574980159653073e-19
Info: CFL hydro = 0.01103532148488929 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01103532148488929 cfl multiplier : 0.9707259587580733 [sph::Model][rank=0]
Info: Timestep 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.0942e+04 | 800 | 1 | 3.820e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1024.5205701024688 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.075028881179088, dt = 0.01103532148488929 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (1.0%)
patch tree reduce : 1804.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 415.00 us (95.8%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.894999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5430629491433247e-17,-1.586687205009952e-17,-5.872985656756917e-18)
sum a = (-7.171602990194368e-18,1.8644969511683268e-17,-2.4684214135004844e-18)
sum e = 4.144510286118122
sum de = 3.7947076036992655e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010204366022183789
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.426831455400826e-17,-1.6064959872875875e-17,-5.5180002957134615e-18)
sum a = (-1.650007906014644e-17,-1.294483326701249e-16,3.5869997579192715e-17)
sum e = 4.144510135378502
sum de = -6.2341624917916505e-19
Info: CFL hydro = 0.005573827211049886 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005573827211049886 cfl multiplier : 0.49024198625269105 [sph::Model][rank=0]
Info: Timestep 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.5786e+04 | 800 | 1 | 5.068e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 783.9012639472622 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.086064202663978, dt = 0.005573827211049886 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (1.2%)
patch tree reduce : 1423.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 375.58 us (95.5%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.8974999999999986
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4427458835066772e-17,-1.7566158514672515e-17,-5.248391160743748e-18)
sum a = (1.8794752364444222e-17,-1.5381201150022132e-16,4.149584152889406e-17)
sum e = 4.144510173301981
sum de = -6.369687763352339e-19
Info: CFL hydro = 0.007506225505299855 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007506225505299855 cfl multiplier : 0.6601613241684606 [sph::Model][rank=0]
Info: Timestep 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.0901e+04 | 800 | 1 | 3.828e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 524.2423479006858 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.091638029875028, dt = 0.007506225505299855 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (1.0%)
patch tree reduce : 1352.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 416.80 us (95.9%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8974999999999986
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.452481768936139e-17,-1.8926935732005762e-17,-4.4425594128898276e-18)
sum a = (8.33032313915309e-17,9.58610257670091e-20,-4.1459893644231435e-17)
sum e = 4.144510204332138
sum de = 3.3881317890172014e-19
Info: CFL hydro = 0.008795996168692689 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008795996168692689 cfl multiplier : 0.7734408827789737 [sph::Model][rank=0]
Info: Timestep 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.1249e+04 | 800 | 1 | 3.765e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 717.7536596878341 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.099144255380327, dt = 0.008795996168692689 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.11 us (1.0%)
patch tree reduce : 951.00 ns (0.2%)
gen split merge : 692.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 406.09 us (96.2%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.8974999999999986
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5567306344577613e-17,-1.8315072778477274e-17,-5.237906361050481e-18)
sum a = (-1.0916773440629205e-16,-1.344181277247333e-16,-1.1226524380138854e-16)
sum e = 4.144510230571557
sum de = 6.911788849595091e-19
Info: CFL hydro = 0.009658487010211997 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009658487010211997 cfl multiplier : 0.8489605885193159 [sph::Model][rank=0]
Info: Timestep 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.1424e+04 | 800 | 1 | 3.734e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 847.997006217423 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.10794025154902, dt = 0.009658487010211997 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (0.8%)
patch tree reduce : 491.00 ns (0.1%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.2%)
LB compute : 393.35 us (96.9%)
LB move op cnt : 0
LB apply : 3.05 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8974999999999986
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3642035000901531e-17,-2.004880929918529e-17,-6.554497636819247e-18)
sum a = (-1.3738083255234491e-17,-8.302463528539554e-17,9.820362958419038e-17)
sum e = 4.144510251557177
sum de = 6.776263578034403e-20
Info: CFL hydro = 0.010237239103366866 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010237239103366866 cfl multiplier : 0.8993070590128772 [sph::Model][rank=0]
Info: Timestep 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.1552e+04 | 800 | 1 | 3.712e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 936.7066638833476 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.117598738559233, dt = 0.010237239103366866 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (1.1%)
patch tree reduce : 861.00 ns (0.2%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1323.00 ns (0.3%)
LB compute : 381.82 us (95.9%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8974999999999986
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3789922164432226e-17,-2.072432996513718e-17,-4.739129461356512e-18)
sum a = (-5.320286930069005e-18,3.5079144116614895e-18,-1.1053375402347193e-16)
sum e = 4.144510268543233
sum de = -9.215718466126788e-19
Info: CFL hydro = 0.010627807650814584 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010627807650814584 cfl multiplier : 0.9328713726752514 [sph::Model][rank=0]
Info: Timestep 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.1515e+04 | 800 | 1 | 3.718e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 991.1652603609319 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.127835977662599, dt = 0.010627807650814584 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (0.8%)
patch tree reduce : 541.00 ns (0.1%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 711.00 ns (0.2%)
LB compute : 400.66 us (96.9%)
LB move op cnt : 0
LB apply : 3.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.8974999999999986
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3680931735477891e-17,-2.0271611292667206e-17,-6.934946082832064e-18)
sum a = (1.8394532581866958e-16,4.510111479485017e-17,7.224626120071745e-17)
sum e = 4.144510282901361
sum de = 8.538092108323347e-19
Info: CFL hydro = 0.010893736947030056 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010893736947030056 cfl multiplier : 0.955247581783501 [sph::Model][rank=0]
Info: Timestep 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.1206e+04 | 800 | 1 | 3.773e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1014.1744541871437 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.138463785313414, dt = 0.010893736947030056 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.36 us (1.0%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 397.94 us (95.8%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.8974999999999986
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.698949453154285e-17,-1.956538514189932e-17,-5.061162594792558e-18)
sum a = (3.050058187341812e-16,4.509961696632256e-18,1.3630239601246606e-17)
sum e = 4.144510295623307
sum de = 2.303929616531697e-19
Info: CFL hydro = 0.011077234270036493 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011077234270036493 cfl multiplier : 0.9701650545223339 [sph::Model][rank=0]
Info: Timestep 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.1203e+04 | 800 | 1 | 3.773e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1039.4046895914776 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.149357522260445, dt = 0.011077234270036493 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (1.0%)
patch tree reduce : 871.00 ns (0.2%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 374.36 us (95.8%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 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: 3.8974999999999986
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.096810155800563e-17,-1.9670233138831985e-17,-5.425134927001671e-18)
sum a = (-9.508215493265215e-18,-3.7306789594302143e-17,1.3096413514006574e-16)
sum e = 4.144510307265258
sum de = -4.0657581468206416e-20
Info: CFL hydro = 0.011200048820559406 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011200048820559406 cfl multiplier : 0.9801100363482226 [sph::Model][rank=0]
Info: Timestep 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.1015e+04 | 800 | 1 | 3.807e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.5297212956502 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.160434756530481, dt = 0.011200048820559406 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.81 us (1.1%)
patch tree reduce : 1833.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 410.79 us (95.5%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 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: 3.8974999999999986
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9001452701254334e-17,-2.0347251633311485e-17,-3.2862357895752805e-18)
sum a = (-1.4569078522352252e-16,-6.040705006135992e-17,4.683410240129438e-17)
sum e = 4.144510317825689
sum de = -1.0842021724855044e-18
Info: CFL hydro = 0.011286900744285264 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011286900744285264 cfl multiplier : 0.9867400242321483 [sph::Model][rank=0]
Info: Timestep 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.0800e+04 | 800 | 1 | 3.846e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.3255361605047 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.17163480535104, dt = 0.011286900744285264 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.3%)
patch tree reduce : 1062.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 381.70 us (95.4%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8974999999999986
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.661653522816808e-17,-2.0942638473036268e-17,-3.2577770475506997e-18)
sum a = (-2.2890414690339685e-16,9.175847342988663e-17,6.369665596512232e-17)
sum e = 4.1445103274242765
sum de = -1.2739375526704677e-18
Info: CFL hydro = 0.011337833450953398 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011337833450953398 cfl multiplier : 0.9911600161547657 [sph::Model][rank=0]
Info: Timestep 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.1336e+04 | 800 | 1 | 3.750e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1083.6565010127986 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.182921706095325, dt = 0.011337833450953398 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.62 us (1.1%)
patch tree reduce : 1002.00 ns (0.2%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 406.68 us (96.0%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.8974999999999986
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.358680257394593e-17,-1.9181192124567477e-17,-2.236257991721009e-18)
sum a = (8.364473629582588e-17,-1.6425187633765964e-17,-1.5591196709592986e-16)
sum e = 4.144510335469332
sum de = -8.199278929421627e-19
Info: CFL hydro = 0.011363476025298497 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011363476025298497 cfl multiplier : 0.9941066774365105 [sph::Model][rank=0]
Info: Timestep 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.0207e+04 | 800 | 1 | 3.959e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1030.948442991143 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.194259539546279, dt = 0.011363476025298497 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (1.1%)
patch tree reduce : 1463.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 420.74 us (95.8%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 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: 3.8974999999999986
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.636152992134256e-17,-1.9957816216133012e-17,-5.523991609823899e-18)
sum a = (-8.974988537436226e-17,-1.4901596455481563e-16,-2.143242840156458e-17)
sum e = 4.14451034176209
sum de = -2.995108501491206e-18
Info: CFL hydro = 0.011378812992715424 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011378812992715424 cfl multiplier : 0.9960711182910069 [sph::Model][rank=0]
Info: Timestep 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.0561e+04 | 800 | 1 | 3.891e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1051.3976512674515 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.205623015571577, dt = 0.011378812992715424 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.90 us (1.1%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 18.38 us (4.0%)
LB compute : 419.98 us (92.0%)
LB move op cnt : 0
LB apply : 4.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8974999999999986
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4278050439437723e-17,-2.261384065271659e-17,-4.890410142645073e-18)
sum a = (1.8944535217205174e-17,1.2517652570938256e-16,-1.8182140496651927e-17)
sum e = 4.1445103463964275
sum de = 9.0801931945661e-19
Info: CFL hydro = 0.011387671301640466 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011387671301640466 cfl multiplier : 0.9973807455273379 [sph::Model][rank=0]
Info: Timestep 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.2180e+04 | 800 | 1 | 3.607e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1135.7051934787376 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.217001828564293, dt = 0.011387671301640466 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.21 us (1.0%)
patch tree reduce : 1342.00 ns (0.3%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.2%)
LB compute : 389.80 us (95.8%)
LB move op cnt : 0
LB apply : 3.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.8974999999999986
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5337764122721456e-17,-1.9579614512911607e-17,-5.207949790498291e-18)
sum a = (-4.0501283386561346e-18,6.093765581726559e-17,-3.0561693277344585e-17)
sum e = 4.144510349253349
sum de = -9.554531645028508e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010265054928922185
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.487568402195392e-17,-1.9756732736301435e-17,-5.500026353382147e-18)
sum a = (1.8644969511683268e-17,2.0904593628434987e-16,5.773155385391742e-17)
sum e = 4.144510155394461
sum de = -4.743384504624082e-20
Info: CFL hydro = 0.005696552970261542 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005696552970261542 cfl multiplier : 0.4991269151757793 [sph::Model][rank=0]
Info: Timestep 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.6275e+04 | 800 | 1 | 4.915e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 834.0098524571525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.228389499865933, dt = 0.005696552970261542 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (1.1%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 386.03 us (95.7%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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: 3.902499999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.542838274864183e-17,-1.769609513944264e-17,-4.649259749699941e-18)
sum a = (-1.8823510672174323e-16,1.3212645007749073e-16,9.292528185289444e-17)
sum e = 4.14451020315762
sum de = 6.437450399132683e-20
Info: CFL hydro = 0.007600562075339994 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007600562075339994 cfl multiplier : 0.6660846101171862 [sph::Model][rank=0]
Info: Timestep 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.1482e+04 | 800 | 1 | 3.724e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 550.674658203707 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.234086052836195, dt = 0.007600562075339994 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (1.0%)
patch tree reduce : 1002.00 ns (0.2%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 407.97 us (96.1%)
LB move op cnt : 0
LB apply : 3.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.902499999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3284990125632612e-17,-1.696740156076061e-17,-3.3925816150355565e-18)
sum a = (-2.5355241315373905e-17,-1.4322236381002202e-16,1.5513403240440266e-16)
sum e = 4.14451024081897
sum de = -7.148958074826295e-19
Info: CFL hydro = 0.008868720526343075 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008868720526343075 cfl multiplier : 0.7773897400781241 [sph::Model][rank=0]
Info: Timestep 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.1274e+04 | 800 | 1 | 3.760e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 727.633969718411 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.241686614911535, dt = 0.008868720526343075 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.67 us (3.0%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 390.25 us (93.9%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.902499999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3590547145264954e-17,-1.921938675202152e-17,-2.236257991721009e-18)
sum a = (-2.1455494960889768e-16,5.677369251051114e-17,-1.9755085124921064e-16)
sum e = 4.144510271320095
sum de = 3.55486493072829e-18
Info: CFL hydro = 0.00971336718598176 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00971336718598176 cfl multiplier : 0.8515931600520826 [sph::Model][rank=0]
Info: Timestep 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.0748e+04 | 800 | 1 | 3.856e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 828.0457933690622 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.250555335437877, dt = 0.00971336718598176 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.64 us (1.1%)
patch tree reduce : 1362.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 408.07 us (95.9%)
LB move op cnt : 0
LB apply : 3.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9024999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0785114313052328e-17,-1.8164166554320613e-17,-5.077638708596263e-18)
sum a = (-5.230417218412434e-18,-7.915724202710776e-17,-1.2163341232732226e-16)
sum e = 4.144510293142991
sum de = -2.795208725939191e-19
Info: CFL hydro = 0.010276158919508827 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010276158919508827 cfl multiplier : 0.9010621067013883 [sph::Model][rank=0]
Info: Timestep 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.1082e+04 | 800 | 1 | 3.795e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 921.5124354342521 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.26026870262386, dt = 0.010276158919508827 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.42 us (1.1%)
patch tree reduce : 1322.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 391.34 us (96.0%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.9024999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1671079887133358e-17,-1.9506220915058742e-17,-6.192023133137744e-18)
sum a = (-7.9684477668826315e-19,9.28713600259005e-17,-9.303612116393754e-17)
sum e = 4.144510307189829
sum de = 2.9002408113987244e-18
Info: CFL hydro = 0.010651528694994273 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010651528694994273 cfl multiplier : 0.9340414044675921 [sph::Model][rank=0]
Info: Timestep 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.0955e+04 | 800 | 1 | 3.818e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 968.9978729564093 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.270544861543367, dt = 0.010651528694994273 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.3%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 392.64 us (95.6%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.9024999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1645616802163996e-17,-1.771182233898254e-17,-6.858556827923979e-18)
sum a = (-1.0952122193880789e-17,2.729642708715584e-17,-1.408258381658468e-16)
sum e = 4.1445103150951805
sum de = -5.759824041329242e-19
Info: CFL hydro = 0.010902398230468503 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010902398230468503 cfl multiplier : 0.9560276029783946 [sph::Model][rank=0]
Info: Timestep 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.0995e+04 | 800 | 1 | 3.810e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1006.3283114499548 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.281196390238362, dt = 0.010902398230468503 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (1.2%)
patch tree reduce : 1223.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 374.69 us (95.5%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 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: 3.8974999999999986
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1301116240813806e-17,-1.7738127952498683e-17,-9.359930469031873e-18)
sum a = (-3.618753722704593e-17,2.6050233752184723e-17,-2.4213895977335455e-17)
sum e = 4.1445103185615695
sum de = 3.5236570605778894e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010014104628430758
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1221731328850502e-17,-1.7596349120932144e-17,-8.470220323631819e-18)
sum a = (3.307265302102918e-16,-5.134556192645425e-18,1.344181277247333e-16)
sum e = 4.144510155588581
sum de = -1.6601845766184287e-18
Info: CFL hydro = 0.005535569415687463 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005535569415687463 cfl multiplier : 0.4853425343261315 [sph::Model][rank=0]
Info: Timestep 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.5611e+04 | 800 | 1 | 5.125e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 765.8760734968189 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.29209878846883, dt = 0.005535569415687463 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.4%)
patch tree reduce : 1532.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 407.15 us (95.2%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.8974999999999986
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5223929154623132e-17,-1.818382555374549e-17,-6.893006884058998e-18)
sum a = (1.0467424882346349e-16,-5.825953840989978e-17,7.499627437740852e-17)
sum e = 4.144510197239953
sum de = 5.21772295508649e-19
Info: CFL hydro = 0.007492767850644262 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007492767850644262 cfl multiplier : 0.6568950228840876 [sph::Model][rank=0]
Info: Timestep 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.8683e+04 | 800 | 1 | 4.282e-02 | 0.1% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 465.3835403369816 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.297634357884519, dt = 0.007492767850644262 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.4%)
patch tree reduce : 1462.00 ns (0.4%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 383.98 us (95.2%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 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: 3.8924999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5379703321494523e-17,-1.8585149984861866e-17,-6.4002212984754665e-18)
sum a = (-6.620402092034066e-18,-1.1143844245414807e-17,-1.0569876353634841e-16)
sum e = 4.144510230228573
sum de = 1.0503208545953324e-18
Info: CFL hydro = 0.008798535038637971 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008798535038637971 cfl multiplier : 0.7712633485893917 [sph::Model][rank=0]
Info: Timestep 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.0470e+04 | 800 | 1 | 3.908e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 690.2069918086323 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.305127125735163, dt = 0.008798535038637971 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.2%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 394.63 us (95.5%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (74.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8924999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.495432001965342e-17,-1.8320689635455808e-17,-7.72430171688228e-18)
sum a = (-1.7632437427019236e-16,-9.717911487130547e-18,-8.58854877731297e-18)
sum e = 4.144510256308998
sum de = -3.0086610286472748e-18
Info: CFL hydro = 0.009669006081944662 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009669006081944662 cfl multiplier : 0.8475088990595946 [sph::Model][rank=0]
Info: Timestep 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.0578e+04 | 800 | 1 | 3.888e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 814.7471706189648 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.313925660773801, dt = 0.009669006081944662 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.4%)
patch tree reduce : 1974.00 ns (0.5%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.3%)
LB compute : 388.36 us (95.1%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 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: 3.8924999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2530833461981221e-17,-1.8781084679129784e-17,-7.72280388835467e-18)
sum a = (-7.901345048845725e-17,5.127366615712899e-17,-5.306806473320519e-17)
sum e = 4.144510274663396
sum de = -3.1848438816761693e-19
Info: CFL hydro = 0.010248833482112805 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010248833482112805 cfl multiplier : 0.8983392660397298 [sph::Model][rank=0]
Info: Timestep 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.0571e+04 | 800 | 1 | 3.889e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 895.059847787691 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.323594666855746, dt = 0.010248833482112805 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (1.2%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 401.09 us (95.4%)
LB move op cnt : 0
LB apply : 4.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (75.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8924999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2181839415048203e-17,-1.7912531361682217e-17,-8.28149392915302e-18)
sum a = (-4.898498416694165e-17,9.026513838785994e-17,-5.796596401848831e-18)
sum e = 4.144510286891757
sum de = -7.318364664277155e-19
Info: CFL hydro = 0.010631734831178675 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010631734831178675 cfl multiplier : 0.9322261773598198 [sph::Model][rank=0]
Info: Timestep 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.0709e+04 | 800 | 1 | 3.863e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 955.1156024787707 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.333843500337858, dt = 0.010631734831178675 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.2%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 420.78 us (95.6%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 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: 3.8924999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1955667307379166e-17,-1.6736735967508744e-17,-8.116732791115973e-18)
sum a = (1.1572822335722173e-16,2.452963823095554e-16,1.7468574986098756e-16)
sum e = 4.14451029497241
sum de = 6.911788849595091e-19
Info: CFL hydro = 0.010881732292564839 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010881732292564839 cfl multiplier : 0.9548174515732132 [sph::Model][rank=0]
Info: Timestep 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.0840e+04 | 800 | 1 | 3.839e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 997.0578825262448 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.344475235169037, dt = 0.010881732292564839 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.2%)
patch tree reduce : 1483.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1203.00 ns (0.3%)
LB compute : 415.29 us (93.5%)
LB move op cnt : 0
LB apply : 9.19 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.895
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3854913880388034e-17,-1.3261773783454665e-17,-5.284339045406377e-18)
sum a = (-3.194269117980056e-17,6.147088277309458e-18,1.2202809014434735e-16)
sum e = 4.144510300663111
sum de = -6.640738306473715e-19
Info: CFL hydro = 0.011046859903826615 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011046859903826615 cfl multiplier : 0.9698783010488089 [sph::Model][rank=0]
Info: Timestep 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.0432e+04 | 800 | 1 | 3.915e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1000.5179873459376 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.355356967461603, dt = 0.011046859903826615 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.4%)
patch tree reduce : 1562.00 ns (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 383.75 us (95.3%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 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: 3.895
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.240950935124485e-17,-1.448999317609447e-17,-3.966249941110001e-18)
sum a = (-1.4806634126831121e-16,5.21723632736947e-17,6.566480265040123e-18)
sum e = 4.144510305393951
sum de = -1.9244588561617704e-18
Info: CFL hydro = 0.011156112341716509 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011156112341716509 cfl multiplier : 0.9799188673658726 [sph::Model][rank=0]
Info: Timestep 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.0091e+04 | 800 | 1 | 3.982e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 998.7581704595268 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.36640382736543, dt = 0.011156112341716509 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.2%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 396.23 us (95.3%)
LB move op cnt : 0
LB apply : 4.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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: 3.8949999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0305060269953478e-17,-1.3707377770418496e-17,-4.933847169945749e-18)
sum a = (1.1896053731980306e-16,-1.3499628953639056e-16,5.0524751893324235e-17)
sum e = 4.144510310004399
sum de = 4.743384504624082e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010065820103867694
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.190923462302327e-17,-1.465700105692293e-17,-4.40511369969959e-18)
sum a = (1.8962509159536488e-17,9.346450012283387e-17,-9.101105699460948e-17)
sum e = 4.144510159778951
sum de = -2.4665599424045226e-18
Info: CFL hydro = 0.0056148167587838915 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0056148167587838915 cfl multiplier : 0.4933062891219575 [sph::Model][rank=0]
Info: Timestep 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.5914e+04 | 800 | 1 | 5.027e-02 | 0.0% | 1.8% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 798.9286859285488 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.377559939707146, dt = 0.0056148167587838915 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (1.2%)
patch tree reduce : 1804.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 391.55 us (95.3%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 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: 3.8949999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1510812234679139e-17,-1.2791455625785276e-17,-5.968846682523926e-18)
sum a = (7.836638856452993e-18,-9.606473044676399e-17,1.7317294304810194e-16)
sum e = 4.144510197133965
sum de = -1.4907779871675686e-19
Info: CFL hydro = 0.0075362597823975435 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0075362597823975435 cfl multiplier : 0.6622041927479717 [sph::Model][rank=0]
Info: Timestep 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.0778e+04 | 800 | 1 | 3.850e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 524.9813146009436 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.38317475646593, dt = 0.0075362597823975435 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.5%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 390.15 us (95.0%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 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: 3.8949999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.131909018314512e-17,-1.4033155475173567e-17,-3.8104757742386116e-18)
sum a = (9.224751444415114e-17,-5.071048263074781e-17,-1.0763695365107512e-16)
sum e = 4.144510228580289
sum de = 2.168404344971009e-19
Info: CFL hydro = 0.008816676023760196 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008816676023760196 cfl multiplier : 0.7748027951653146 [sph::Model][rank=0]
Info: Timestep 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.1132e+04 | 800 | 1 | 3.786e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 716.6656399847465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.390711016248328, dt = 0.008816676023760196 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.91 us (1.1%)
patch tree reduce : 1954.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1203.00 ns (0.3%)
LB compute : 428.74 us (95.7%)
LB move op cnt : 0
LB apply : 3.63 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (74.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.8949999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2578763974864726e-17,-1.418144049940691e-17,-5.780120288045127e-18)
sum a = (-1.5330930280064236e-17,-3.5097118058946206e-17,8.135904996269375e-17)
sum e = 4.144510255837794
sum de = -7.318364664277155e-19
Info: CFL hydro = 0.009670482577953762 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009670482577953762 cfl multiplier : 0.8498685301102098 [sph::Model][rank=0]
Info: Timestep 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.0720e+04 | 800 | 1 | 3.861e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 822.0766370816958 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.39952769227209, dt = 0.009670482577953762 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.3%)
patch tree reduce : 1273.00 ns (0.3%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 401.79 us (95.4%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 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: 3.8949999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1826854054004748e-17,-1.4832995908917048e-17,-3.795497488962516e-18)
sum a = (8.7913547599513e-17,-8.980979851546665e-17,-1.5128068128856123e-17)
sum e = 4.144510278059638
sum de = -2.4123498337802474e-18
Info: CFL hydro = 0.010240668272059134 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010240668272059134 cfl multiplier : 0.8999123534068065 [sph::Model][rank=0]
Info: Timestep 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.0070e+04 | 800 | 1 | 3.986e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 873.3945923544994 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.409198174850044, dt = 0.010240668272059134 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.4%)
patch tree reduce : 1282.00 ns (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 392.31 us (95.3%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 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: 3.8949999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3293228182534464e-17,-1.572420388284471e-17,-4.5399182671844465e-18)
sum a = (-2.9087830006176824e-18,3.4414108250356267e-17,3.1005050521517006e-17)
sum e = 4.144510295949808
sum de = 1.2265037076242269e-18
Info: CFL hydro = 0.01062252901330205 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01062252901330205 cfl multiplier : 0.9332749022712044 [sph::Model][rank=0]
Info: Timestep 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.0010e+04 | 800 | 1 | 3.998e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 922.1425633673475 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.419438843122103, dt = 0.01062252901330205 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.3%)
patch tree reduce : 1502.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 416.08 us (95.3%)
LB move op cnt : 0
LB apply : 4.05 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.8949999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3037099504313238e-17,-1.4608321629775622e-17,-4.577363980374684e-18)
sum a = (-5.506916364609151e-17,2.367527683880707e-16,-1.3737484123823448e-16)
sum e = 4.144510310410906
sum de = 2.913793338554793e-19
Info: CFL hydro = 0.010879532368862539 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010879532368862539 cfl multiplier : 0.9555166015141362 [sph::Model][rank=0]
Info: Timestep 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.0334e+04 | 800 | 1 | 3.934e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 971.9800391944557 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.430061372135405, dt = 0.010879532368862539 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.2%)
patch tree reduce : 1683.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 394.46 us (95.4%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 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: 3.8949999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.206500878989466e-17,-1.1191774758298312e-17,-7.185083446942853e-18)
sum a = (6.238156251788116e-17,-8.356684921239019e-17,6.755506225224444e-17)
sum e = 4.144510322139213
sum de = 7.724940478959219e-19
Info: CFL hydro = 0.011048675446456782 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011048675446456782 cfl multiplier : 0.9703444010094241 [sph::Model][rank=0]
Info: Timestep 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.0175e+04 | 800 | 1 | 3.965e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 987.7193160714381 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.440940904504268, dt = 0.011048675446456782 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.2%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 411.28 us (95.3%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 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: 3.897499999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3423539264436493e-17,-1.3670680971492062e-17,-4.760099060743046e-18)
sum a = (2.3060568011076127e-17,5.827152103812066e-17,9.21464110185375e-17)
sum e = 4.144510331430043
sum de = -9.622294280808852e-19
Info: CFL hydro = 0.011162670502901642 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011162670502901642 cfl multiplier : 0.9802296006729495 [sph::Model][rank=0]
Info: Timestep 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.0710e+04 | 800 | 1 | 3.863e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1029.6897794388708 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.451989579950725, dt = 0.011162670502901642 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.3%)
patch tree reduce : 1753.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 404.76 us (95.4%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 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: 3.897499999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.343102840707454e-17,-1.2180341586520593e-17,-3.762545261355107e-18)
sum a = (-6.2309666748555914e-18,9.51840072725296e-17,-6.49683123850628e-17)
sum e = 4.144510338685193
sum de = 4.87890977618477e-19
Info: CFL hydro = 0.011239322788574205 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011239322788574205 cfl multiplier : 0.9868197337819664 [sph::Model][rank=0]
Info: Timestep 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.0255e+04 | 800 | 1 | 3.950e-02 | 0.1% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1017.4605259436296 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.463152250453627, dt = 0.011239322788574205 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.3%)
patch tree reduce : 1382.00 ns (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 414.47 us (95.3%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 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: 3.9024999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3326180410141875e-17,-1.1080935447255208e-17,-5.1630149346700055e-18)
sum a = (-2.4168961121507167e-17,1.4977087013273083e-16,3.958985472751095e-17)
sum e = 4.144510344068423
sum de = 1.9651164376299768e-19
Info: CFL hydro = 0.011287664399120267 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011287664399120267 cfl multiplier : 0.9912131558546443 [sph::Model][rank=0]
Info: Timestep 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.0587e+04 | 800 | 1 | 3.886e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.2166942246597 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.474391573242201, dt = 0.011287664399120267 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.81 us (1.2%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 398.99 us (95.6%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9024999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2980182020264075e-17,-9.529185092651748e-18,-4.202906848472305e-18)
sum a = (3.3587306903115815e-17,5.903840924425673e-17,-5.048412329451282e-17)
sum e = 4.144510347637118
sum de = -7.979050363135509e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010195961797270153
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3231817212902474e-17,-9.52319377854131e-18,-4.733138147246074e-18)
sum a = (5.55874123166444e-17,9.896452647621602e-17,-5.392182699394261e-19)
sum e = 4.14451017126366
sum de = 8.267041565201971e-19
Info: CFL hydro = 0.0056604865232242705 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0056604865232242705 cfl multiplier : 0.49707105195154816 [sph::Model][rank=0]
Info: Timestep 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.5521e+04 | 800 | 1 | 5.154e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 788.3932631245672 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.485679237641321, dt = 0.0056604865232242705 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.3%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 403.91 us (95.5%)
LB move op cnt : 0
LB apply : 4.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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: 3.9024999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3875883479774566e-17,-8.948027623939256e-18,-4.626792321785799e-18)
sum a = (1.892056996076342e-17,-1.625143952456326e-16,-6.6091683780769944e-18)
sum e = 4.144510214917891
sum de = 1.9481757786848908e-19
Info: CFL hydro = 0.00756954450473714 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00756954450473714 cfl multiplier : 0.6647140346343655 [sph::Model][rank=0]
Info: Timestep 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.0662e+04 | 800 | 1 | 3.872e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 526.3014460864479 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.491339724164545, dt = 0.00756954450473714 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.4%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 374.63 us (95.1%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 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: 3.9024999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3687157085295767e-17,-1.0613612946641039e-17,-4.823007858902645e-18)
sum a = (-5.005143807859963e-17,-1.002526590099602e-16,-2.0183239409538242e-17)
sum e = 4.144510249858587
sum de = 7.072725109573408e-19
Info: CFL hydro = 0.008842641854220762 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008842641854220762 cfl multiplier : 0.7764760230895771 [sph::Model][rank=0]
Info: Timestep 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.0667e+04 | 800 | 1 | 3.871e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 703.990979761488 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.498909268669282, dt = 0.001090731330718242 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.2%)
patch tree reduce : 1362.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 382.65 us (95.7%)
LB move op cnt : 0
LB apply : 3.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.9024999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3375608751552988e-17,-1.0532730206150124e-17,-4.493485582828552e-18)
sum a = (4.169954620864896e-18,2.0540621296225874e-16,-5.926907483750859e-17)
sum e = 4.144510172490694
sum de = 7.61482619581616e-19
Info: CFL hydro = 0.009691465633944123 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009691465633944123 cfl multiplier : 0.8509840153930514 [sph::Model][rank=0]
Info: Timestep 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.0767e+04 | 800 | 1 | 3.852e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.928698596782 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 1468 [SPH][rank=0]
Info: time since start : 924.046662348 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.1510058295592857 max=0.1512899440303535 delta=0.00028411447106779786
Number of particle pairs: 319600
Distance min=0.149281 max=2.290575 mean=0.933938
---------------- t = 11.5, dt = 0.009691465633944123 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.68 us (1.4%)
patch tree reduce : 1693.00 ns (0.2%)
gen split merge : 501.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.1%)
LB compute : 748.51 us (96.5%)
LB move op cnt : 0
LB apply : 5.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (81.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9024999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3502924176399797e-17,-8.682911974552371e-18,-5.254382474854186e-18)
sum a = (3.022018837304962e-17,1.0404815649892271e-16,9.186481925534691e-17)
sum e = 4.1445102999448595
sum de = -1.4746843611697369e-18
Info: CFL hydro = 0.0102582378576862 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0102582378576862 cfl multiplier : 0.9006560102620341 [sph::Model][rank=0]
Info: Timestep 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.6927e+04 | 800 | 1 | 4.726e-02 | 0.0% | 1.1% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 738.2150698528831 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.509691465633944, dt = 0.0102582378576862 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.4%)
patch tree reduce : 1443.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 405.62 us (95.4%)
LB move op cnt : 0
LB apply : 3.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.9024999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3937294449406558e-17,-8.25003953007322e-18,-2.952220027918358e-18)
sum a = (1.5177196904561716e-16,-9.159221446332197e-17,-5.341256529455538e-17)
sum e = 4.14451031512236
sum de = 2.947674656444965e-19
Info: CFL hydro = 0.010637745799349197 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010637745799349197 cfl multiplier : 0.9337706735080227 [sph::Model][rank=0]
Info: Timestep 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.0803e+04 | 800 | 1 | 3.846e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 960.3050029800238 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.51994970349163, dt = 0.010637745799349197 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.4%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 394.99 us (95.3%)
LB move op cnt : 0
LB apply : 3.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9024999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.628289392364306e-17,-9.941087937744365e-18,-4.6911989484730076e-18)
sum a = (-1.5062163673641303e-17,-1.5315296694807314e-16,-6.920566928967013e-17)
sum e = 4.144510324895134
sum de = -7.724940478959219e-19
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010375320096547987
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5169258413365386e-17,-1.0403916952775706e-17,-4.893405799700293e-18)
sum a = (1.4314447672658632e-16,-2.9944587923969466e-17,-1.6831099164748143e-16)
sum e = 4.144510172160981
sum de = 7.589415207398531e-19
Info: CFL hydro = 0.005446508501533336 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.005446508501533336 cfl multiplier : 0.47792355783600754 [sph::Model][rank=0]
Info: Timestep 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.5645e+04 | 800 | 1 | 5.113e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 748.9399039759215 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.530587449290978, dt = 0.005446508501533336 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (0.8%)
patch tree reduce : 1503.00 ns (0.2%)
gen split merge : 791.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.1%)
LB compute : 613.34 us (97.0%)
LB move op cnt : 0
LB apply : 3.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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: 3.9024999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.659444225738584e-17,-9.905140053081737e-18,-6.102153421481173e-18)
sum a = (1.1003647495230557e-16,1.8145443697725495e-16,4.964702437614505e-17)
sum e = 4.144510211754845
sum de = 1.0842021724855044e-19
Info: CFL hydro = 0.007431058498702502 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007431058498702502 cfl multiplier : 0.6519490385573383 [sph::Model][rank=0]
Info: Timestep 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.8154e+04 | 800 | 1 | 4.407e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 444.9356029713977 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.536033957792512, dt = 0.007431058498702502 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (0.9%)
patch tree reduce : 27.76 us (3.8%)
gen split merge : 781.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.2%)
LB compute : 686.98 us (93.5%)
LB move op cnt : 0
LB apply : 3.95 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (74.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9024999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7627943941436407e-17,-7.84562582761865e-18,-5.374208757062948e-18)
sum a = (3.5959867290849286e-17,1.0719584314969411e-16,-1.0610018158174776e-16)
sum e = 4.1445102455010066
sum de = 2.4936649967166602e-18
Info: CFL hydro = 0.00875588340235527 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00875588340235527 cfl multiplier : 0.7679660257048923 [sph::Model][rank=0]
Info: Timestep 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.9041e+04 | 800 | 1 | 4.201e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 636.7355048661152 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.543465016291215, dt = 0.00875588340235527 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.2%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 399.50 us (95.5%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.9024999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7835393192510326e-17,-7.471168695716272e-18,-6.9154743119731405e-18)
sum a = (9.931202269462143e-17,4.6349367644046754e-17,-7.615559365777828e-17)
sum e = 4.144510273328287
sum de = -1.1926223897340549e-18
Info: CFL hydro = 0.009641319560979649 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.009641319560979649 cfl multiplier : 0.8453106838032616 [sph::Model][rank=0]
Info: Timestep 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.1255e+04 | 800 | 1 | 3.764e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 837.4746591298621 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.55222089969357, dt = 0.009641319560979649 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.2%)
patch tree reduce : 1372.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 403.47 us (95.6%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.9024999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.869027882464346e-17,-7.447203439274519e-18,-7.700336460440527e-18)
sum a = (1.2981979414497207e-16,-1.2913977999343735e-16,3.0046440263846914e-17)
sum e = 4.144510294099521
sum de = -8.334804200982315e-19
Info: CFL hydro = 0.01023380396634523 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01023380396634523 cfl multiplier : 0.8968737892021744 [sph::Model][rank=0]
Info: Timestep 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.1309e+04 | 800 | 1 | 3.754e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 924.4999035786394 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.561862219254548, dt = 0.01023380396634523 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.64 us (1.1%)
patch tree reduce : 1352.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 401.43 us (95.7%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.9024999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0406790317283964e-17,-9.329973898479682e-18,-6.526038894794666e-18)
sum a = (1.0734038360260844e-16,2.397424341291793e-17,3.483350023808693e-17)
sum e = 4.144510309032798
sum de = 1.4907779871675686e-19
Info: CFL hydro = 0.010620245979426337 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010620245979426337 cfl multiplier : 0.9312491928014497 [sph::Model][rank=0]
Info: Timestep 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.1542e+04 | 800 | 1 | 3.714e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 992.0396058402603 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.572096023220894, dt = 0.010620245979426337 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.0%)
patch tree reduce : 1513.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.2%)
LB compute : 433.58 us (96.0%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.9074999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1468189057661257e-17,-7.998404337434821e-18,-5.98682062485524e-18)
sum a = (1.3209649350693853e-16,-1.982825404849479e-17,1.0158273074247745e-16)
sum e = 4.1445103195585045
sum de = 8.809142651444724e-20
Info: CFL hydro = 0.010877425382836396 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010877425382836396 cfl multiplier : 0.9541661285342998 [sph::Model][rank=0]
Info: Timestep 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.1530e+04 | 800 | 1 | 3.716e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1028.9212572392069 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.58271626920032, dt = 0.010877425382836396 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.72 us (1.2%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 391.51 us (95.8%)
LB move op cnt : 0
LB apply : 3.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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: 3.9124999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.310231998128324e-17,-8.597535748478629e-18,-4.875431857368978e-18)
sum a = (-9.775428102590752e-17,1.3257579863577358e-16,-6.097959501603866e-17)
sum e = 4.144510327523215
sum de = 6.572975670693371e-19
Info: CFL hydro = 0.01104944012688144 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01104944012688144 cfl multiplier : 0.9694440856895333 [sph::Model][rank=0]
Info: Timestep 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.1080e+04 | 800 | 1 | 3.795e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1031.840541906982 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.593593694583157, dt = 0.01104944012688144 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.90 us (1.1%)
patch tree reduce : 1403.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 422.51 us (95.9%)
LB move op cnt : 0
LB apply : 3.67 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9124999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0514259514139946e-17,-6.084179479149859e-18,-6.102153421481173e-18)
sum a = (5.57911169963993e-17,-1.3339061735479316e-16,5.410156641725576e-17)
sum e = 4.1445103341009455
sum de = 2.574980159653073e-19
Info: CFL hydro = 0.011165632634839334 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011165632634839334 cfl multiplier : 0.979629390459689 [sph::Model][rank=0]
Info: Timestep 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.1272e+04 | 800 | 1 | 3.761e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1057.7151789466145 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.604643134710038, dt = 0.011165632634839334 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.71 us (1.0%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 429.72 us (95.8%)
LB move op cnt : 0
LB apply : 3.78 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9174999999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2144645866442907e-17,-9.379402239890796e-18,-4.490489925773332e-18)
sum a = (-3.1562242733787744e-16,2.44661303013849e-16,-4.687604160006745e-17)
sum e = 4.144510340049841
sum de = 3.049318610115481e-19
Info: CFL hydro = 0.011245500756651998 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011245500756651998 cfl multiplier : 0.9864195936397927 [sph::Model][rank=0]
Info: Timestep 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.1117e+04 | 800 | 1 | 3.788e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1061.0209393507978 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.615808767344877, dt = 0.011245500756651998 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.2%)
patch tree reduce : 1863.00 ns (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 393.92 us (95.4%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 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: 3.9174999999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.642481317663406e-17,-4.5144551822150845e-18,-5.810076858597317e-18)
sum a = (-1.8056622466038252e-16,-1.9459788230702848e-17,2.4228874262611548e-17)
sum e = 4.144510345785656
sum de = -2.642742795433417e-19
Info: CFL hydro = 0.011301673694644805 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011301673694644805 cfl multiplier : 0.9909463957598618 [sph::Model][rank=0]
Info: Timestep 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.0832e+04 | 800 | 1 | 3.840e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1054.1782595362129 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.62705426810153, dt = 0.011301673694644805 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (0.8%)
patch tree reduce : 1243.00 ns (0.2%)
gen split merge : 731.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1073.00 ns (0.2%)
LB compute : 531.84 us (96.9%)
LB move op cnt : 0
LB apply : 3.70 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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: 3.9174999999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5210448697874645e-17,-5.938890111971735e-18,-5.8040855444868785e-18)
sum a = (-2.7631940677340373e-17,-1.0604625975475382e-16,-8.053524427250852e-17)
sum e = 4.144510351438946
sum de = -1.6940658945086007e-19
Info: CFL hydro = 0.011336050011541598 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011336050011541598 cfl multiplier : 0.9939642638399079 [sph::Model][rank=0]
Info: Timestep 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.9133e+04 | 800 | 1 | 4.181e-02 | 0.1% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 973.0425178783548 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.638355941796174, dt = 0.011336050011541598 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.3%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 409.44 us (95.5%)
LB move op cnt : 0
LB apply : 3.62 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.9174999999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.576164959603495e-17,-7.689851660747261e-18,-6.9117297406541165e-18)
sum a = (-2.4923866699422366e-17,-1.5471370427384225e-16,-1.5205955212291818e-17)
sum e = 4.144510356742472
sum de = -1.0232158002831948e-18
Info: CFL hydro = 0.011360992216109006 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011360992216109006 cfl multiplier : 0.9959761758932718 [sph::Model][rank=0]
Info: Timestep 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.0767e+04 | 800 | 1 | 3.852e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1059.390929263475 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.649691991807716, dt = 0.011360992216109006 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.78 us (1.1%)
patch tree reduce : 1854.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 402.19 us (95.6%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.9174999999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.57069788547772e-17,-1.0210697072714079e-17,-6.7387305457152174e-18)
sum a = (-9.05886693498236e-18,-3.9476768673676437e-17,-7.821061439765854e-17)
sum e = 4.144510361696984
sum de = 1.2197274440461925e-18
Info: CFL hydro = 0.011380256404475516 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011380256404475516 cfl multiplier : 0.9973174505955145 [sph::Model][rank=0]
Info: Timestep 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.8927e+04 | 800 | 1 | 4.227e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 967.6322667901374 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.661052984023824, dt = 0.011380256404475516 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (1.1%)
patch tree reduce : 2.61 us (0.6%)
gen split merge : 1783.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1824.00 ns (0.4%)
LB compute : 393.92 us (94.7%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.922499999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.556842971597332e-17,-9.857209540198233e-18,-8.047083764582132e-18)
sum a = (-1.1853215836090674e-16,1.5281445770083338e-16,4.960808083442721e-18)
sum e = 4.144510366038645
sum de = -1.8973538018496328e-19
Info: CFL hydro = 0.011392748517746448 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011392748517746448 cfl multiplier : 0.9982116337303429 [sph::Model][rank=0]
Info: Timestep 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.1373e+04 | 800 | 1 | 3.743e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1094.5413373501908 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.6724332404283, dt = 0.011392748517746448 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (1.1%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 397.83 us (95.6%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.922499999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.349094154817892e-17,-6.975387453077521e-18,-7.75575611596208e-18)
sum a = (3.709222565772208e-17,1.7834344712541e-16,-1.0382947353389173e-16)
sum e = 4.144510369372566
sum de = -1.3010426069826053e-18
Info: CFL hydro = 0.011389665389902623 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011389665389902623 cfl multiplier : 0.9988077558202285 [sph::Model][rank=0]
Info: Timestep 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.0813e+04 | 800 | 1 | 3.844e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1067.0473641798562 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.683825988946046, dt = 0.011389665389902623 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (1.1%)
patch tree reduce : 1863.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 433.92 us (95.8%)
LB move op cnt : 0
LB apply : 3.70 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (73.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.922499999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5023220131923457e-17,-5.007240767798616e-18,-9.035650592804412e-18)
sum a = (7.13895032829248e-17,6.299267655714585e-17,-1.2351693170079123e-16)
sum e = 4.144510371109599
sum de = 4.0657581468206416e-19
Info: CFL hydro = 0.011384938396091159 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011384938396091159 cfl multiplier : 0.9992051705468189 [sph::Model][rank=0]
Info: Timestep 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.0823e+04 | 800 | 1 | 3.842e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1067.2267838078023 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.695215654335948, dt = 0.011384938396091159 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (1.0%)
patch tree reduce : 1392.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.2%)
LB compute : 430.50 us (95.9%)
LB move op cnt : 0
LB apply : 3.75 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.922499999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.579010833805953e-17,-4.9772841972464254e-18,-1.0730818028926484e-17)
sum a = (1.8749817508615934e-17,1.5948878161986138e-16,6.349594694242265e-17)
sum e = 4.144510371470075
sum de = -6.877907531704919e-19
Info: CFL hydro = 0.011379436253715264 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011379436253715264 cfl multiplier : 0.9994701136978792 [sph::Model][rank=0]
Info: Timestep 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.1108e+04 | 800 | 1 | 3.790e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1081.4141854817728 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.70660059273204, dt = 0.011379436253715264 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.36 us (1.0%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 424.81 us (96.1%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.922499999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5563936230390493e-17,-2.6571478079792833e-18,-8.82295894188386e-18)
sum a = (2.2590062624840785e-16,7.831246673753599e-17,9.324282150074766e-17)
sum e = 4.144510370389989
sum de = -1.3654171109739321e-18
Info: CFL hydro = 0.011373766076729632 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011373766076729632 cfl multiplier : 0.9996467424652528 [sph::Model][rank=0]
Info: Timestep 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.1097e+04 | 800 | 1 | 3.792e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1080.3109848891886 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.717980028985755, dt = 0.011373766076729632 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (0.9%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 386.71 us (96.3%)
LB move op cnt : 0
LB apply : 2.98 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.922499999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9085331098800468e-17,-1.4963306990819075e-18,-7.87071445545611e-18)
sum a = (5.657148565928385e-17,9.574719079891077e-17,-9.976137125290428e-17)
sum e = 4.144510367906183
sum de = -9.605353621863766e-19
Info: CFL hydro = 0.01136835601005432 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01136835601005432 cfl multiplier : 0.9997644949768351 [sph::Model][rank=0]
Info: Timestep 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.0390e+04 | 800 | 1 | 3.924e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.5922480599293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.729353795062485, dt = 0.01136835601005432 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.74 us (1.1%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1051.00 ns (0.2%)
LB compute : 419.32 us (95.8%)
LB move op cnt : 0
LB apply : 3.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.922499999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.867642391076307e-17,-6.253434102769734e-19,-9.80178988467668e-18)
sum a = (5.368517008658031e-17,-1.7526391167264483e-16,1.16716790185444e-16)
sum e = 4.144510364174174
sum de = -9.56300197450105e-19
Info: CFL hydro = 0.011363512132234268 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011363512132234268 cfl multiplier : 0.9998429966512233 [sph::Model][rank=0]
Info: Timestep 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.0604e+04 | 800 | 1 | 3.883e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1054.070212850507 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.74072215107254, dt = 0.011363512132234268 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.2%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 393.44 us (95.5%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9778825707083673e-17,-4.4605333552211424e-18,-7.449075724934032e-18)
sum a = (6.70308222675811e-17,1.3516404633148282e-17,4.18792856319621e-17)
sum e = 4.144510359466543
sum de = -3.094211356319959e-18
Info: CFL hydro = 0.011359451634275347 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011359451634275347 cfl multiplier : 0.9998953311008156 [sph::Model][rank=0]
Info: Timestep 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.1000e+04 | 800 | 1 | 3.809e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1073.862836473785 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.752085663204774, dt = 0.011359451634275347 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.73 us (1.2%)
patch tree reduce : 1403.00 ns (0.4%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 381.50 us (95.5%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0237161236532187e-17,-3.052574539268196e-18,-7.445424767897983e-18)
sum a = (7.385492903937008e-17,-6.510161912402005e-17,6.893006884058998e-17)
sum e = 4.144510354141556
sum de = 9.893344823930228e-19
Info: CFL hydro = 0.011356331607824706 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011356331607824706 cfl multiplier : 0.999930220733877 [sph::Model][rank=0]
Info: Timestep 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.1056e+04 | 800 | 1 | 3.799e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1076.331298727655 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.76344511483905, dt = 0.011356331607824706 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (1.1%)
patch tree reduce : 1383.00 ns (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 375.06 us (95.6%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1629392852945233e-17,-4.453793126846899e-18,-6.483303974616307e-18)
sum a = (-2.101513337377257e-16,-2.820411117488721e-17,-7.354637636268251e-17)
sum e = 4.144510348626095
sum de = -1.6059744679941534e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010063895486704808
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.002222284282022e-17,-4.319737473625847e-18,-7.182555861302513e-18)
sum a = (5.459285417431168e-17,-6.138700437554845e-17,-5.52728683258464e-17)
sum e = 4.144510191208477
sum de = -1.6940658945086007e-20
Info: CFL hydro = 0.0056774407508495385 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0056774407508495385 cfl multiplier : 0.49997674024462563 [sph::Model][rank=0]
Info: Timestep 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.5873e+04 | 800 | 1 | 5.040e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 811.1761037058441 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.774801446446874, dt = 0.0056774407508495385 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (1.1%)
patch tree reduce : 1372.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 391.64 us (95.8%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1728998450031264e-17,-4.782566488657188e-18,-7.616165518260096e-18)
sum a = (2.3120481152180508e-17,-5.3757065855905573e-17,1.6011786960145738e-17)
sum e = 4.1445102301979535
sum de = 3.6591823321385775e-19
Info: CFL hydro = 0.007569522566143975 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.007569522566143975 cfl multiplier : 0.6666511601630837 [sph::Model][rank=0]
Info: Timestep 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.0862e+04 | 800 | 1 | 3.835e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 532.9820806748166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.780478887197724, dt = 0.007569522566143975 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.2%)
patch tree reduce : 1293.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1313.00 ns (0.3%)
LB compute : 406.78 us (95.7%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1532033998650614e-17,-5.275352074240719e-18,-7.260238163494198e-18)
sum a = (-1.3321087793148e-16,1.6275105215299492e-16,-7.118205403185089e-17)
sum e = 4.144510258727671
sum de = 2.1006417091906648e-19
Info: CFL hydro = 0.008830739575103101 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.008830739575103101 cfl multiplier : 0.7777674401087223 [sph::Model][rank=0]
Info: Timestep 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.0971e+04 | 800 | 1 | 3.815e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 714.3316769516252 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.788048409763867, dt = 0.008830739575103101 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (1.0%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 409.17 us (96.1%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9961935244583937e-17,-2.8488698595133017e-18,-8.456219137434282e-18)
sum a = (2.0327330513894278e-16,1.0960809599340924e-16,-2.9976042323049267e-17)
sum e = 4.144510280976296
sum de = -1.2197274440461925e-18
Info: CFL hydro = 0.00967185183181123 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00967185183181123 cfl multiplier : 0.8518449600724814 [sph::Model][rank=0]
Info: Timestep 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.1218e+04 | 800 | 1 | 3.770e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 843.1666235819312 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.79687914933897, dt = 0.00967185183181123 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (0.9%)
patch tree reduce : 1113.00 ns (0.3%)
gen split merge : 1142.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 408.72 us (96.2%)
LB move op cnt : 0
LB apply : 3.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3186011150263423e-17,-1.837086689113073e-18,-8.133793994188276e-18)
sum a = (-2.2819717183836516e-16,-2.3246298748499706e-18,-3.477059143992733e-17)
sum e = 4.14451029672348
sum de = -5.89534931288993e-19
Info: CFL hydro = 0.010233420332406942 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010233420332406942 cfl multiplier : 0.9012299733816542 [sph::Model][rank=0]
Info: Timestep 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.0961e+04 | 800 | 1 | 3.817e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 912.3092496351716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.806551001170781, dt = 0.010233420332406942 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.97 us (1.2%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.3%)
LB compute : 382.89 us (95.3%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9186060067282206e-17,-2.5148540978563793e-18,-8.839949934243931e-18)
sum a = (-7.656899433139851e-18,1.0236909071947244e-16,1.335074479799467e-16)
sum e = 4.144510307674625
sum de = -1.7957098481791167e-18
Info: CFL hydro = 0.0106091312719853 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0106091312719853 cfl multiplier : 0.9341533155877695 [sph::Model][rank=0]
Info: Timestep 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.1223e+04 | 800 | 1 | 3.769e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 977.3422527347109 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.816784421503188, dt = 0.0106091312719853 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (1.0%)
patch tree reduce : 511.00 ns (0.1%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 373.21 us (96.3%)
LB move op cnt : 0
LB apply : 2.96 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.99716711300134e-17,-7.4442077822193e-19,-6.663183819353913e-18)
sum a = (1.0976087450322542e-17,6.290879815959972e-18,6.716263117801075e-18)
sum e = 4.144510315794323
sum de = -5.759824041329242e-19
Info: CFL hydro = 0.010861402040423853 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.010861402040423853 cfl multiplier : 0.9561022103918463 [sph::Model][rank=0]
Info: Timestep 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.1274e+04 | 800 | 1 | 3.760e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1015.6445517586104 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.827393552775174, dt = 0.010861402040423853 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (0.9%)
patch tree reduce : 551.00 ns (0.1%)
gen split merge : 541.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.2%)
LB compute : 373.04 us (96.6%)
LB move op cnt : 0
LB apply : 2.85 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (66.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9963620301677497e-17,-1.2484400777625326e-18,-6.667583690653766e-18)
sum a = (-2.027101216125616e-16,-1.8424414260992767e-16,1.5537274882599043e-16)
sum e = 4.144510322713714
sum de = -4.336808689942018e-19
Info: CFL hydro = 0.011031801885469853 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011031801885469853 cfl multiplier : 0.9707348069278975 [sph::Model][rank=0]
Info: Timestep 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.1030e+04 | 800 | 1 | 3.804e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1027.8542984721098 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.838254954815598, dt = 0.011031801885469853 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.48 us (1.1%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1342.00 ns (0.3%)
LB compute : 393.61 us (95.7%)
LB move op cnt : 0
LB apply : 3.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.658171071490116e-17,-4.4193430707118806e-18,-4.6316602645005295e-18)
sum a = (8.524441716331283e-17,-1.0873710870460432e-16,-6.10634734135848e-17)
sum e = 4.144510329574305
sum de = 5.149960319306146e-19
Info: CFL hydro = 0.011148002742310712 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011148002742310712 cfl multiplier : 0.9804898712852651 [sph::Model][rank=0]
Info: Timestep 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.1060e+04 | 800 | 1 | 3.799e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1045.484323026305 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.849286756701067, dt = 0.011148002742310712 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.46 us (1.1%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 1763.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 2.98 us (0.7%)
LB compute : 397.80 us (94.8%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9462783887758066e-17,-5.162266020406201e-18,-5.9913141104380684e-18)
sum a = (3.917121165404409e-17,-2.0144491287636108e-16,4.8679427147309307e-17)
sum e = 4.144510337054594
sum de = -1.734723475976807e-18
Info: CFL hydro = 0.011228413152844272 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011228413152844272 cfl multiplier : 0.9869932475235101 [sph::Model][rank=0]
Info: Timestep 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.0988e+04 | 800 | 1 | 3.812e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1052.8775616758246 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.860434759443377, dt = 0.011228413152844272 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.86 us (1.1%)
patch tree reduce : 902.00 ns (0.2%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 409.88 us (96.1%)
LB move op cnt : 0
LB apply : 3.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9305137435227164e-17,-8.255281929919853e-18,-5.512757895866828e-18)
sum a = (1.1558443181857121e-16,-2.251685625555387e-16,1.7626446112908798e-17)
sum e = 4.144510345444958
sum de = -1.2061749168901237e-18
Info: CFL hydro = 0.011285267433684028 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011285267433684028 cfl multiplier : 0.9913288316823401 [sph::Model][rank=0]
Info: Timestep 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.0963e+04 | 800 | 1 | 3.816e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1059.2166430423722 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.871663172596222, dt = 0.011285267433684028 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.0%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 419.00 us (95.9%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1437670801411214e-17,-1.0842780711365294e-17,-5.4243860127378666e-18)
sum a = (1.335703567781063e-16,-5.2620962917713754e-17,9.539370326639493e-17)
sum e = 4.144510354724326
sum de = -1.7618285302889447e-18
Info: CFL hydro = 0.011326682109115858 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011326682109115858 cfl multiplier : 0.99421922112156 [sph::Model][rank=0]
Info: Timestep 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.0997e+04 | 800 | 1 | 3.810e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1066.304835046412 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.882948440029905, dt = 0.011326682109115858 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.2%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 388.33 us (95.7%)
LB move op cnt : 0
LB apply : 3.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2719812021044962e-17,-1.000474565016777e-17,-3.749813718870426e-18)
sum a = (2.4025169582856655e-17,4.116182576723714e-17,-5.3250799813573556e-17)
sum e = 4.1445103646458215
sum de = 9.0801931945661e-19
Info: CFL hydro = 0.011357244470101141 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011357244470101141 cfl multiplier : 0.9961461474143732 [sph::Model][rank=0]
Info: Timestep 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.0854e+04 | 800 | 1 | 3.836e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1062.9475057462741 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.894275122139021, dt = 0.011357244470101141 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.41 us (1.1%)
patch tree reduce : 962.00 ns (0.2%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 387.78 us (96.0%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.259549225325337e-17,-9.130013790043811e-18,-5.542714466419018e-18)
sum a = (1.1698639932041372e-16,3.16176623893093e-17,1.5607373257691168e-16)
sum e = 4.1445103747855
sum de = 1.3552527156068805e-20
Info: CFL hydro = 0.011362809282655126 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011362809282655126 cfl multiplier : 0.9974307649429154 [sph::Model][rank=0]
Info: Timestep 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.0724e+04 | 800 | 1 | 3.860e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1059.15416197121 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.905632366609122, dt = 0.011362809282655126 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (1.1%)
patch tree reduce : 881.00 ns (0.2%)
gen split merge : 682.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 404.79 us (96.0%)
LB move op cnt : 0
LB apply : 3.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4079091409850597e-17,-9.13300944709903e-18,-2.3231320463223613e-18)
sum a = (-1.141824643167287e-16,-2.0526616599492726e-16,-6.69349612418141e-17)
sum e = 4.14451038409461
sum de = 1.4162390878091902e-18
Info: CFL hydro = 0.01136390431406898 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01136390431406898 cfl multiplier : 0.9982871766286102 [sph::Model][rank=0]
Info: Timestep 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.1035e+04 | 800 | 1 | 3.803e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1075.550450121807 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.916995175891778, dt = 0.01136390431406898 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.34 us (1.0%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.2%)
LB compute : 412.65 us (96.3%)
LB move op cnt : 0
LB apply : 3.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1383000060153468e-17,-1.2948727621184275e-17,-4.587848780067951e-18)
sum a = (-4.678018057430044e-17,9.83174645522887e-17,8.040343536207888e-18)
sum e = 4.144510392529372
sum de = -6.708500942254059e-19
Info: CFL hydro = 0.01136229199361303 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01136229199361303 cfl multiplier : 0.9988581177524068 [sph::Model][rank=0]
Info: Timestep 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.1039e+04 | 800 | 1 | 3.802e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1075.8830948922166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.928359080205846, dt = 0.01136229199361303 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (1.0%)
patch tree reduce : 822.00 ns (0.2%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 398.97 us (96.1%)
LB move op cnt : 0
LB apply : 3.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1630141767209037e-17,-9.81601925568897e-18,-3.903341142950402e-18)
sum a = (-3.0915180809860434e-18,-2.7160124691143375e-17,2.4396631057703817e-17)
sum e = 4.144510399609226
sum de = -1.3823577699190182e-18
Info: CFL hydro = 0.011359178504945746 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011359178504945746 cfl multiplier : 0.9992387451682712 [sph::Model][rank=0]
Info: Timestep 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.1324e+04 | 800 | 1 | 3.752e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1090.3232586297022 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.93972137219946, dt = 0.011359178504945746 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.54 us (1.1%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 384.67 us (95.6%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1767941991749113e-17,-1.1189528015506898e-17,-3.2487900763850427e-18)
sum a = (1.8084182510946267e-16,-1.1201360860875013e-16,1.366858401155341e-16)
sum e = 4.144510404924688
sum de = 1.7414997395548415e-18
Info: CFL hydro = 0.011355394897245796 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011355394897245796 cfl multiplier : 0.9994924967788474 [sph::Model][rank=0]
Info: Timestep 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.0634e+04 | 800 | 1 | 3.877e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1054.7561246310868 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.951080550704406, dt = 0.011355394897245796 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.3%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1173.00 ns (0.3%)
LB compute : 393.26 us (95.4%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.490289710003583e-17,-1.2934498250171985e-17,-1.2177345929465374e-18)
sum a = (-8.052326164428764e-17,1.137866631283079e-16,6.083580347738815e-17)
sum e = 4.144510408179758
sum de = 1.0367683274392636e-18
Info: CFL hydro = 0.011351516076829549 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011351516076829549 cfl multiplier : 0.9996616645192317 [sph::Model][rank=0]
Info: Timestep 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.0917e+04 | 800 | 1 | 3.825e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1068.8530921192582 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.962435945601651, dt = 0.011351516076829549 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.3%)
patch tree reduce : 1442.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 381.08 us (95.4%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2444960486228614e-17,-9.897650910443689e-18,-4.134006736202267e-19)
sum a = (-2.145429669806768e-16,-5.198897289334551e-17,1.2150385015968404e-17)
sum e = 4.14451040921592
sum de = 4.2690460541616737e-19
Info: CFL hydro = 0.011358752610155707 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011358752610155707 cfl multiplier : 0.9997744430128211 [sph::Model][rank=0]
Info: Timestep 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.0959e+04 | 800 | 1 | 3.817e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1070.648374052353 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.97378746167848, dt = 0.011358752610155707 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.54 us (1.1%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 411.46 us (95.7%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9094318069966125e-17,-1.1718261485753058e-17,-1.343552189265737e-18)
sum a = (-4.6145101278594004e-17,2.3997085297963978e-18,1.0448851808603991e-17)
sum e = 4.1445104083862425
sum de = -1.2705494208814505e-19
Info: CFL hydro = 0.01135581497004453 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01135581497004453 cfl multiplier : 0.999849628675214 [sph::Model][rank=0]
Info: Timestep 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.1298e+04 | 800 | 1 | 3.756e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1088.6291490623464 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.985146214288635, dt = 0.01135581497004453 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (1.1%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1353.00 ns (0.3%)
LB compute : 428.92 us (95.9%)
LB move op cnt : 0
LB apply : 3.64 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9799795306470208e-17,-1.1466626293114658e-17,-8.223078616576249e-19)
sum a = (-1.17250017141273e-17,1.6017928057108937e-16,-7.03020797718803e-17)
sum e = 4.144510405117702
sum de = 2.3395050003163775e-18
Info: CFL hydro = 0.011353877212277666 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011353877212277666 cfl multiplier : 0.9998997524501426 [sph::Model][rank=0]
Info: Timestep 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.0786e+04 | 800 | 1 | 3.849e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1062.2101842001432 (tsim/hr) [sph::Model][rank=0]
---------------- t = 11.99650202925868, dt = 0.0034979707413196337 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (1.1%)
patch tree reduce : 1282.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1253.00 ns (0.3%)
LB compute : 394.78 us (91.4%)
LB move op cnt : 0
LB apply : 21.94 us (5.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.98776823899059e-17,-1.0121576275321312e-17,-2.1733491935614092e-18)
sum a = (1.7446706689595655e-17,4.984548665605332e-17,9.931202269462143e-17)
sum e = 4.144510237130621
sum de = 8.106105305223654e-19
Info: CFL hydro = 0.011354320839608549 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011354320839608549 cfl multiplier : 0.9999331683000952 [sph::Model][rank=0]
Info: Timestep 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.1017e+04 | 800 | 1 | 3.807e-02 | 0.1% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 330.8195639015872 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 1516 [SPH][rank=0]
Info: time since start : 926.734226893 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15103334615204048 max=0.15129369874045542 delta=0.00026035258841494713
Number of particle pairs: 319600
Distance min=0.147377 max=2.289563 mean=0.933648
---------------- t = 12, dt = 0.011354320839608549 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.53 us (1.7%)
patch tree reduce : 1573.00 ns (0.3%)
gen split merge : 551.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.1%)
LB compute : 589.57 us (96.0%)
LB move op cnt : 0
LB apply : 4.64 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (79.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9274999999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0060417470274262e-17,-9.792802913511023e-18,-4.823007858902645e-19)
sum a = (-4.287683943135004e-17,2.401019129758056e-17,4.824206121724733e-17)
sum e = 4.144510399089491
sum de = -9.16489648929153e-19
Info: CFL hydro = 0.011353222020225553 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011353222020225553 cfl multiplier : 0.9999554455333968 [sph::Model][rank=0]
Info: Timestep 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.9106e+04 | 800 | 1 | 4.187e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 976.1931754047552 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.011354320839608, dt = 0.011353222020225553 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.18 us (1.0%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 387.15 us (95.8%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.9274999999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9121278983463096e-17,-9.435570809676153e-18,-1.7674376625792303e-19)
sum a = (-1.4418996103885777e-16,3.263618578808377e-17,1.4176647448118559e-16)
sum e = 4.144510391977762
sum de = 3.8963515573697816e-20
Info: CFL hydro = 0.011353941619199396 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011353941619199396 cfl multiplier : 0.9999702970222645 [sph::Model][rank=0]
Info: Timestep 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.0905e+04 | 800 | 1 | 3.827e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1068.0239928541614 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.022707542859834, dt = 0.011353941619199396 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.97 us (1.1%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 418.34 us (95.8%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.9299999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.714863881260136e-17,-8.736084887282508e-18,1.6955418932539734e-18)
sum a = (-1.4161669162842464e-16,4.875581640221739e-17,-4.477309034730369e-17)
sum e = 4.144510384515027
sum de = -1.7957098481791167e-18
Info: CFL hydro = 0.011355927505359487 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011355927505359487 cfl multiplier : 0.999980198014843 [sph::Model][rank=0]
Info: Timestep 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.0297e+04 | 800 | 1 | 3.941e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1037.0363880794148 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.034061484479034, dt = 0.011355927505359487 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.94 us (0.7%)
patch tree reduce : 1283.00 ns (0.2%)
gen split merge : 671.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.2%)
LB compute : 673.01 us (97.4%)
LB move op cnt : 0
LB apply : 3.77 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.929999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5581910172721807e-17,-8.274753700778778e-18,-2.186829650309895e-19)
sum a = (-2.024427592203833e-17,3.483949155219737e-18,-5.571922122707404e-19)
sum e = 4.1445103770020415
sum de = -1.734723475976807e-18
Info: CFL hydro = 0.01135916553647458 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01135916553647458 cfl multiplier : 0.999986798676562 [sph::Model][rank=0]
Info: Timestep 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.0262e+04 | 800 | 1 | 3.948e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1035.4285034023185 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.045417411984394, dt = 0.01135916553647458 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.17 us (5.4%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 712.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 390.63 us (91.5%)
LB move op cnt : 0
LB apply : 3.63 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 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: 3.929999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5740679996648415e-17,-8.5144062651963e-18,8.327926613508915e-19)
sum a = (-7.930253139428589e-17,-2.620900357611133e-17,-7.682362518109214e-17)
sum e = 4.144510369987411
sum de = 1.1180834903756764e-18
Info: CFL hydro = 0.01136361753323118 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01136361753323118 cfl multiplier : 0.9999911991177081 [sph::Model][rank=0]
Info: Timestep 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.0530e+04 | 800 | 1 | 3.897e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1049.3971138512063 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.056776577520868, dt = 0.01136361753323118 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.3%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1443.00 ns (0.4%)
LB compute : 385.49 us (95.2%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.929999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.472964574051199e-17,-9.158472532068393e-18,-8.74731860123958e-19)
sum a = (6.001199778720292e-17,1.42620236741923e-16,3.741575661968574e-17)
sum e = 4.144510364022578
sum de = -1.3145951341386741e-18
Info: CFL hydro = 0.011359240001973104 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011359240001973104 cfl multiplier : 0.9999941327451388 [sph::Model][rank=0]
Info: Timestep 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.1071e+04 | 800 | 1 | 3.797e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1077.4685779016859 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.068140195054099, dt = 0.011359240001973104 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.2%)
patch tree reduce : 1423.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.3%)
LB compute : 422.15 us (95.7%)
LB move op cnt : 0
LB apply : 3.75 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.929999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.609866101474709e-17,-6.610666206604604e-18,7.638925490808538e-20)
sum a = (7.59518889780234e-17,1.2262422589833595e-16,6.233718934775074e-17)
sum e = 4.144510359336735
sum de = -1.2807138162485021e-18
Info: CFL hydro = 0.01135481993715975 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01135481993715975 cfl multiplier : 0.9999960884967593 [sph::Model][rank=0]
Info: Timestep 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.0719e+04 | 800 | 1 | 3.861e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1059.098221411329 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.079499435056071, dt = 0.01135481993715975 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (1.0%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 426.28 us (96.0%)
LB move op cnt : 0
LB apply : 3.58 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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: 3.929999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.712167789910439e-17,-5.13380727838162e-18,5.556943837431309e-19)
sum a = (1.2455942035600745e-17,2.2253238434694594e-16,7.915424637005254e-17)
sum e = 4.144510356529707
sum de = 1.5924219408380846e-18
Info: CFL hydro = 0.011349619009365135 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011349619009365135 cfl multiplier : 0.9999973923311728 [sph::Model][rank=0]
Info: Timestep 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.0769e+04 | 800 | 1 | 3.852e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1061.2089243944304 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.09085425499323, dt = 0.011349619009365135 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (1.1%)
patch tree reduce : 1592.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 406.78 us (95.8%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 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: 3.929999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.696440590370539e-17,-2.379300616107718e-18,1.9217140009230104e-18)
sum a = (-3.616357197060418e-17,1.4602030749959662e-16,-8.085577957741695e-17)
sum e = 4.14451035579657
sum de = 7.386127300057499e-19
Info: CFL hydro = 0.011366732557973009 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011366732557973009 cfl multiplier : 0.9999982615541153 [sph::Model][rank=0]
Info: Timestep 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.1034e+04 | 800 | 1 | 3.803e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1074.3003386477267 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.102203874002596, dt = 0.011366732557973009 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.2%)
patch tree reduce : 1293.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 404.60 us (95.7%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9299999999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.576314742456256e-17,-1.189650308053859e-18,-1.30311081902028e-19)
sum a = (-1.6059717473029243e-16,-1.0345801205904457e-16,1.776844025732618e-16)
sum e = 4.14451035775165
sum de = 1.9786689647860456e-18
Info: CFL hydro = 0.011368224110565841 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011368224110565841 cfl multiplier : 0.999998841036077 [sph::Model][rank=0]
Info: Timestep 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.0657e+04 | 800 | 1 | 3.873e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1056.6252084499479 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.113570606560568, dt = 0.011368224110565841 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.2%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 380.15 us (91.1%)
LB move op cnt : 0
LB apply : 21.90 us (5.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.9299999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.355834383192135e-17,-3.2053530490843666e-18,3.964752112582392e-18)
sum a = (-5.0482812694551164e-17,-4.831994830068302e-17,-9.583706051056735e-17)
sum e = 4.144510361415647
sum de = 1.2807138162485021e-18
Info: CFL hydro = 0.01137148284513676 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01137148284513676 cfl multiplier : 0.9999992273573847 [sph::Model][rank=0]
Info: Timestep 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.0875e+04 | 800 | 1 | 3.832e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1067.911533355413 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.124938830671134, dt = 0.01137148284513676 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.3%)
patch tree reduce : 1664.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 381.12 us (95.2%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 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: 3.9299999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3787511596645605e-17,-3.905213428609913e-18,9.421341438663863e-19)
sum a = (8.265017815349315e-17,-6.35019382565331e-17,-4.3251296563252414e-17)
sum e = 4.144510366955594
sum de = -1.9786689647860456e-18
Info: CFL hydro = 0.011376447219805042 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011376447219805042 cfl multiplier : 0.9999994849049232 [sph::Model][rank=0]
Info: Timestep 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.0708e+04 | 800 | 1 | 3.863e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1059.6553913924276 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.13631031351627, dt = 0.011376447219805042 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.4%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 391.94 us (95.3%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.9299999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5336266294193847e-17,-4.5724960376599536e-18,8.4477528957176765e-19)
sum a = (-1.4240155377689202e-16,1.0896702538359237e-16,-8.48130425473613e-17)
sum e = 4.1445103740060585
sum de = -4.2690460541616737e-19
Info: CFL hydro = 0.011383035904198889 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011383035904198889 cfl multiplier : 0.9999996566032822 [sph::Model][rank=0]
Info: Timestep 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.0870e+04 | 800 | 1 | 3.833e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1068.415298483342 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.147686760736075, dt = 0.011383035904198889 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.3%)
patch tree reduce : 1392.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 382.06 us (95.4%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9299999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2216289471183222e-17,-2.6316847230099216e-18,-7.039794079764731e-19)
sum a = (-1.3296523405295206e-16,-2.937241742642263e-17,6.484399261727122e-17)
sum e = 4.144510382098044
sum de = 1.8973538018496328e-19
Info: CFL hydro = 0.011390922873467166 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011390922873467166 cfl multiplier : 0.9999997710688548 [sph::Model][rank=0]
Info: Timestep 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.0797e+04 | 800 | 1 | 3.847e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1065.2798132731457 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.159069796640274, dt = 0.011390922873467166 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (1.1%)
patch tree reduce : 1773.00 ns (0.5%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 373.36 us (95.4%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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: 3.9299999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0787361055843743e-17,-3.2158378487776334e-18,1.4528936717812316e-18)
sum a = (2.1424939258926535e-17,3.231714831170294e-17,1.508013761597262e-16)
sum e = 4.144510390686436
sum de = 1.3552527156068805e-19
Info: CFL hydro = 0.01139655522797642 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01139655522797642 cfl multiplier : 0.9999998473792365 [sph::Model][rank=0]
Info: Timestep 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.0949e+04 | 800 | 1 | 3.819e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1073.850556448078 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.170460719513741, dt = 0.01139655522797642 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (1.0%)
patch tree reduce : 1834.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.2%)
LB compute : 434.02 us (95.8%)
LB move op cnt : 0
LB apply : 4.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.9299999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.191223028007849e-17,-2.615957523470022e-18,3.2457944193298236e-18)
sum a = (1.935014718248183e-16,7.674274244060122e-17,-1.7749867183583823e-16)
sum e = 4.144510399110072
sum de = -5.89534931288993e-19
Info: CFL hydro = 0.011395420038890176 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011395420038890176 cfl multiplier : 0.9999998982528243 [sph::Model][rank=0]
Info: Timestep 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.0636e+04 | 800 | 1 | 3.877e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1058.3097765201592 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.181857274741718, dt = 0.011395420038890176 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.3%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 394.15 us (95.6%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9299999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.507414630186218e-17,-1.7271835208997244e-18,-5.002747282215787e-19)
sum a = (-1.1590197146642444e-16,1.6747520332907532e-16,-4.336513153135074e-17)
sum e = 4.144510406676167
sum de = 1.633079522306291e-18
Info: CFL hydro = 0.011390778686150084 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011390778686150084 cfl multiplier : 0.9999999321685497 [sph::Model][rank=0]
Info: Timestep 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.0839e+04 | 800 | 1 | 3.839e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1068.6218742654569 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.19325269478061, dt = 0.011390778686150084 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.4%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 380.12 us (95.2%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9299999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.203505221934247e-17,1.2581759631919943e-18,-1.1083931104310426e-19)
sum a = (2.9327482570594346e-17,-4.706776365160147e-17,1.3963356665786962e-16)
sum e = 4.144510412973418
sum de = 1.6805133673525319e-18
Info: CFL hydro = 0.011387095271401165 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011387095271401165 cfl multiplier : 0.9999999547790331 [sph::Model][rank=0]
Info: Timestep 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.0496e+04 | 800 | 1 | 3.903e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1050.6035387254778 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.20464347346676, dt = 0.011387095271401165 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (1.1%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1071.00 ns (0.3%)
LB compute : 396.40 us (95.7%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9299999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3114986587748932e-17,-6.223477532217544e-19,2.213790563806866e-18)
sum a = (-8.12571976228163e-17,-1.6412755656986807e-16,-9.862901288603148e-17)
sum e = 4.144510417752285
sum de = -7.860465750519907e-19
Info: CFL hydro = 0.01138285090089903 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01138285090089903 cfl multiplier : 0.9999999698526887 [sph::Model][rank=0]
Info: Timestep 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.0720e+04 | 800 | 1 | 3.861e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1061.7286825635988 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.21603056873816, dt = 0.01138285090089903 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.2%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 418.02 us (95.7%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 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: 3.9299999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.151231006320675e-17,-2.8874389440992466e-18,-9.810776855842338e-20)
sum a = (6.025764166573088e-17,4.515129205052509e-17,-5.5144055072471984e-17)
sum e = 4.144510420720012
sum de = 1.4704491964334654e-18
Info: CFL hydro = 0.011378820386061474 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011378820386061474 cfl multiplier : 0.9999999799017925 [sph::Model][rank=0]
Info: Timestep 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.0397e+04 | 800 | 1 | 3.922e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.767674365526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.22741341963906, dt = 0.011378820386061474 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.65 us (1.1%)
patch tree reduce : 1482.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 390.58 us (95.6%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.9299999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2930753678852961e-17,-1.949798285815689e-18,-3.549853610434556e-19)
sum a = (8.508265168233101e-17,-1.7376327471654605e-16,-8.35069360712858e-17)
sum e = 4.144510421797826
sum de = 5.590417451878382e-19
Info: CFL hydro = 0.011376385915363942 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011376385915363942 cfl multiplier : 0.9999999866011949 [sph::Model][rank=0]
Info: Timestep 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.0286e+04 | 800 | 1 | 3.944e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1038.7258727197463 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.238792240025122, dt = 0.011376385915363942 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.4%)
patch tree reduce : 1452.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1363.00 ns (0.3%)
LB compute : 393.02 us (95.3%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.929999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4223379698179973e-17,-4.612750179339459e-18,-1.5862004107384787e-18)
sum a = (-1.6018602079946361e-16,-2.2311728638697747e-16,-3.1406468566916357e-17)
sum e = 4.144510421081363
sum de = -1.1180834903756764e-19
Info: CFL hydro = 0.011375607307996876 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011375607307996876 cfl multiplier : 0.9999999910674632 [sph::Model][rank=0]
Info: Timestep 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.0487e+04 | 800 | 1 | 3.905e-02 | 0.1% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.793623131059 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.250168625940486, dt = 0.011375607307996876 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.3%)
patch tree reduce : 1854.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.2%)
LB compute : 420.06 us (95.6%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.929999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0890711224248799e-17,-7.71025957443594e-18,-1.5277850981617075e-18)
sum a = (9.466276294492148e-19,-1.3982079522382082e-16,1.0732240966027712e-16)
sum e = 4.1445104187633275
sum de = 4.635387803849159e-19
Info: CFL hydro = 0.01137195262586106 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01137195262586106 cfl multiplier : 0.9999999940449754 [sph::Model][rank=0]
Info: Timestep 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.0600e+04 | 800 | 1 | 3.884e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1054.4996395654837 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.261544233248483, dt = 0.01137195262586106 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.3%)
patch tree reduce : 1843.00 ns (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1462.00 ns (0.4%)
LB compute : 387.97 us (95.3%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.929999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.188077588099869e-17,-9.244784900971892e-18,9.6160591472531e-19)
sum a = (3.5198970398823654e-17,-4.476410337613803e-17,-7.103302009335374e-17)
sum e = 4.144510415026219
sum de = -2.202285662861181e-18
Info: CFL hydro = 0.01136374490718315 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01136374490718315 cfl multiplier : 0.9999999960299837 [sph::Model][rank=0]
Info: Timestep 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.0791e+04 | 800 | 1 | 3.848e-02 | 0.1% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1063.929197006515 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.272916185874344, dt = 0.01136374490718315 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.93 us (1.2%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 408.69 us (95.7%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.929999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.284537745277922e-17,-8.766790372098503e-18,-1.4588849858916697e-18)
sum a = (-2.8604630523169994e-16,5.335564781050622e-17,2.1834146012669453e-16)
sum e = 4.144510410243075
sum de = 9.402065714522734e-19
Info: CFL hydro = 0.011357423561614314 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011357423561614314 cfl multiplier : 0.9999999973533225 [sph::Model][rank=0]
Info: Timestep 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.0711e+04 | 800 | 1 | 3.863e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1059.1183665298443 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.284279930781526, dt = 0.011357423561614314 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.4%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 1072.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 383.54 us (95.1%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9299999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.13415727700413e-18,-7.652405947557023e-18,2.996405969482839e-18)
sum a = (-9.537572932406361e-17,7.282442301237473e-18,2.5702737533779314e-17)
sum e = 4.144510405088942
sum de = -8.300922883092143e-19
Info: CFL hydro = 0.011353097849518564 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011353097849518564 cfl multiplier : 0.9999999982355483 [sph::Model][rank=0]
Info: Timestep 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.0797e+04 | 800 | 1 | 3.847e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1062.8850962399197 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.29563735434314, dt = 0.011353097849518564 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.3%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 383.73 us (95.4%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9299999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.465177381605833e-18,-7.593990634980252e-18,1.890634058975113e-18)
sum a = (-2.062809448223827e-16,-2.025663300739111e-17,1.0710073103819092e-16)
sum e = 4.144510400063167
sum de = 4.2690460541616737e-19
Info: CFL hydro = 0.011350846998070756 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011350846998070756 cfl multiplier : 0.9999999988236988 [sph::Model][rank=0]
Info: Timestep 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.0317e+04 | 800 | 1 | 3.938e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1037.9945124290136 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.30699045219266, dt = 0.011350846998070756 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.97 us (1.1%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.2%)
LB compute : 422.74 us (95.7%)
LB move op cnt : 0
LB apply : 3.71 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (73.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9299999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.3541875297608664e-18,-7.873335655379427e-18,3.7292185766157954e-18)
sum a = (1.2391834974619056e-16,6.003895870069988e-17,4.828999173013083e-18)
sum e = 4.144510395644151
sum de = -2.744386749103933e-19
Info: CFL hydro = 0.01135071817609756 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01135071817609756 cfl multiplier : 0.9999999992157992 [sph::Model][rank=0]
Info: Timestep 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.0669e+04 | 800 | 1 | 3.871e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1055.75047685576 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.31834129919073, dt = 0.01135071817609756 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.3%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 378.27 us (95.2%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.9299999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.647912461974194e-18,-7.000850538046883e-18,2.6908489498504975e-18)
sum a = (-2.578062461721501e-17,-6.941536528353547e-17,-5.742974140560411e-17)
sum e = 4.144510392253209
sum de = -6.979551485375435e-19
Info: CFL hydro = 0.011352725682642808 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011352725682642808 cfl multiplier : 0.9999999994771995 [sph::Model][rank=0]
Info: Timestep 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.0570e+04 | 800 | 1 | 3.889e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1050.6845958261356 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.329692017366828, dt = 0.011352725682642808 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.1%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 403.12 us (95.8%)
LB move op cnt : 0
LB apply : 3.56 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.9299999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.385243013199371e-18,-8.300965700011945e-18,2.0883474246195694e-18)
sum a = (-6.689901335715148e-17,-1.043746831179416e-16,-1.0623330109213905e-16)
sum e = 4.144510390223267
sum de = -1.6263032587282567e-19
Info: CFL hydro = 0.011356850711973376 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011356850711973376 cfl multiplier : 0.9999999996514664 [sph::Model][rank=0]
Info: Timestep 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.1239e+04 | 800 | 1 | 3.767e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1085.0233871138055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.341044743049471, dt = 0.011356850711973376 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.91 us (1.2%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 993.00 ns (0.2%)
LB compute : 401.79 us (95.7%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.9299999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.556943837431308e-18,-1.0416648495260387e-17,6.03250439494733e-19)
sum a = (3.676270338164799e-17,-3.231714831170294e-17,3.993210854606973e-18)
sum e = 4.144510389774152
sum de = -4.472333961502706e-19
Info: CFL hydro = 0.01136263155662902 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01136263155662902 cfl multiplier : 0.9999999997676442 [sph::Model][rank=0]
Info: Timestep 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.8966e+04 | 800 | 1 | 4.218e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 969.2716323632512 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.352401593761444, dt = 0.01136263155662902 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (1.1%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 381.94 us (95.5%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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: 3.9299999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.597934664119923e-18,-9.814521427161361e-18,1.4293028724713818e-18)
sum a = (-9.025315575963907e-17,1.6529436499287587e-16,-1.764442005524011e-18)
sum e = 4.14451039098777
sum de = 5.624298769768554e-19
Info: CFL hydro = 0.011359279238818498 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011359279238818498 cfl multiplier : 0.999999999845096 [sph::Model][rank=0]
Info: Timestep 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.0552e+04 | 800 | 1 | 3.893e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1050.8758714259836 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.363764225318073, dt = 0.011359279238818498 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.3%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 1021.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 380.24 us (95.2%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.9299999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.773579517491531e-18,-6.93419716856826e-18,6.272156959364853e-19)
sum a = (2.0578965706532677e-16,-3.443268132409862e-16,-3.13825033104746e-17)
sum e = 4.144510393551714
sum de = 2.358139725155972e-18
Info: CFL hydro = 0.011356964284050464 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011356964284050464 cfl multiplier : 0.9999999998967306 [sph::Model][rank=0]
Info: Timestep 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.0492e+04 | 800 | 1 | 3.904e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.489572269381 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.375123504556893, dt = 0.011356964284050464 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.3%)
patch tree reduce : 1833.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 411.22 us (95.6%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.934999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.799742599705914e-18,-1.3834693195265305e-17,6.2459449601316865e-19)
sum a = (-4.965601134731071e-17,-1.9897154160764827e-17,3.885966332030131e-17)
sum e = 4.144510397535964
sum de = -1.328147661294743e-18
Info: CFL hydro = 0.011355711698487956 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011355711698487956 cfl multiplier : 0.9999999999311537 [sph::Model][rank=0]
Info: Timestep 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.0810e+04 | 800 | 1 | 3.844e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1063.515457080422 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.386480468840944, dt = 0.011355711698487956 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.2%)
patch tree reduce : 1443.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 398.83 us (95.5%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.934999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.797145858291989e-18,-1.2178843757992984e-17,1.697039721781583e-18)
sum a = (1.4279698050818092e-16,-4.3125478966933216e-17,1.1434422979771053e-16)
sum e = 4.144510402647175
sum de = -1.0570971181733668e-18
Info: CFL hydro = 0.011355538196604537 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011355538196604537 cfl multiplier : 0.9999999999541025 [sph::Model][rank=0]
Info: Timestep 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.0467e+04 | 800 | 1 | 3.909e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1045.8637199611665 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.397836180539432, dt = 0.011355538196604537 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.4%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 390.17 us (95.0%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (73.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.934999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.867694339891499e-18,-1.3054324532380746e-17,3.1439420794523765e-18)
sum a = (2.102951252763762e-17,-3.7984931460177354e-17,-5.332868689700925e-17)
sum e = 4.144510408505226
sum de = 8.944667923005412e-19
Info: CFL hydro = 0.011356450729436219 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011356450729436219 cfl multiplier : 0.9999999999694017 [sph::Model][rank=0]
Info: Timestep 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.0561e+04 | 800 | 1 | 3.891e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1050.6454683655468 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.409191718736036, dt = 0.011356450729436219 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.3%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 402.97 us (95.4%)
LB move op cnt : 0
LB apply : 3.59 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.934999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.076840877313674e-18,-1.3046086475478895e-17,1.703031035892021e-18)
sum a = (-1.68715405349936e-17,-1.3553550780633e-16,-9.400371839277329e-18)
sum e = 4.144510414670552
sum de = 1.938011383317839e-18
Info: CFL hydro = 0.011358447931702109 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011358447931702109 cfl multiplier : 0.9999999999796012 [sph::Model][rank=0]
Info: Timestep 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.0768e+04 | 800 | 1 | 3.852e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1061.3403684157433 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.420548169465473, dt = 0.011358447931702109 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (1.1%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 396.97 us (95.6%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.934999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.466276294492148e-18,-1.522992046873357e-17,1.911229201229744e-18)
sum a = (2.535404305255182e-16,-4.749314695344257e-17,-2.0921668873649736e-17)
sum e = 4.144510420685437
sum de = -3.9302328752599536e-19
Info: CFL hydro = 0.011361518858153516 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011361518858153516 cfl multiplier : 0.9999999999864008 [sph::Model][rank=0]
Info: Timestep 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.0983e+04 | 800 | 1 | 3.813e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1072.4961965752016 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.431906617397175, dt = 0.011361518858153516 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (1.1%)
patch tree reduce : 1372.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 392.14 us (95.8%)
LB move op cnt : 0
LB apply : 3.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.9349999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3405565322105179e-17,-1.5216440011985084e-17,1.6745722938674402e-18)
sum a = (1.4452847028609752e-16,1.1988619534986576e-17,1.5951274687630315e-16)
sum e = 4.144510426106757
sum de = 2.6156377411212794e-18
Info: CFL hydro = 0.011365641894435181 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011365641894435181 cfl multiplier : 0.9999999999909338 [sph::Model][rank=0]
Info: Timestep 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.0414e+04 | 800 | 1 | 3.919e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.6940188132403 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.443268136255329, dt = 0.011365641894435181 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.4%)
patch tree reduce : 1914.00 ns (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 387.05 us (94.7%)
LB move op cnt : 0
LB apply : 4.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (73.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.929999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.463977602885542e-17,-1.5038198417199553e-17,4.6949435197920316e-18)
sum a = (-4.821809596080558e-17,3.025014494360181e-17,-8.312349196821777e-17)
sum e = 4.14451043054328
sum de = -1.8973538018496328e-19
Info: CFL hydro = 0.011370785839944655 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011370785839944655 cfl multiplier : 0.999999999993956 [sph::Model][rank=0]
Info: Timestep 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.0354e+04 | 800 | 1 | 3.930e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.0090439573048 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.454633778149764, dt = 0.011370785839944655 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.3%)
patch tree reduce : 1483.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1362.00 ns (0.3%)
LB compute : 431.82 us (95.3%)
LB move op cnt : 0
LB apply : 4.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 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: 3.929999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2605724888361697e-17,-1.4371664722413316e-17,2.3096515895738753e-18)
sum a = (4.40361587117198e-17,3.563633632888563e-17,-2.0454346373035565e-17)
sum e = 4.144510433689505
sum de = -1.0570971181733668e-18
Info: CFL hydro = 0.011368125489040539 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011368125489040539 cfl multiplier : 0.9999999999959707 [sph::Model][rank=0]
Info: Timestep 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.0475e+04 | 800 | 1 | 3.907e-02 | 0.1% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.6561816272754 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.46600456398971, dt = 0.011368125489040539 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.4%)
patch tree reduce : 1874.00 ns (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 391.25 us (95.0%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (72.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.929999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3501426347872188e-17,-1.3904342221799148e-17,2.0984577671809336e-18)
sum a = (-7.699437763323961e-17,-3.5465583876738147e-17,4.857757480743186e-17)
sum e = 4.1445104350834505
sum de = -2.973085644862594e-19
Info: CFL hydro = 0.011360316836737829 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011360316836737829 cfl multiplier : 0.9999999999973138 [sph::Model][rank=0]
Info: Timestep 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.0195e+04 | 800 | 1 | 3.961e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1033.106453374203 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.47737268947875, dt = 0.011360316836737829 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.3%)
patch tree reduce : 1593.00 ns (0.3%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.2%)
LB compute : 443.97 us (95.6%)
LB move op cnt : 0
LB apply : 3.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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: 3.929999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.234809838161286e-17,-1.448400186198403e-17,3.0660549960166817e-18)
sum a = (2.5416352719300376e-16,-9.679567076823744e-17,1.9084731967389424e-16)
sum e = 4.144510434740072
sum de = 1.3302652436628787e-18
Info: CFL hydro = 0.011353444027166829 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011353444027166829 cfl multiplier : 0.9999999999982091 [sph::Model][rank=0]
Info: Timestep 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.0344e+04 | 800 | 1 | 3.932e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.034584769487 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.488733006315488, dt = 0.011266993684511561 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.5%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 389.54 us (95.1%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.9299999999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.682061436505488e-17,-1.5965354275789844e-17,6.067703365346154e-18)
sum a = (-8.328825310625482e-17,5.739379352094148e-17,1.0544712834371e-17)
sum e = 4.144510430391052
sum de = -1.1553529400548657e-18
Info: CFL hydro = 0.011347660625187212 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011347660625187212 cfl multiplier : 0.999999999998806 [sph::Model][rank=0]
Info: Timestep 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.0355e+04 | 800 | 1 | 3.930e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1032.0480094046366 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 1560 [SPH][rank=0]
Info: time since start : 929.3824556330001 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.1510223054677622 max=0.15129877905670147 delta=0.0002764735889392578
Number of particle pairs: 319600
Distance min=0.145228 max=2.287741 mean=0.933445
---------------- t = 12.5, dt = 0.011347660625187212 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.95 us (1.5%)
patch tree reduce : 1563.00 ns (0.2%)
gen split merge : 601.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.1%)
LB compute : 621.22 us (96.1%)
LB move op cnt : 0
LB apply : 4.61 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (77.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: 3.9274999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3941787934989385e-17,-1.4564884602474946e-17,5.206451961970682e-18)
sum a = (-1.4166686888409954e-16,7.744372619152247e-17,5.775626802462298e-18)
sum e = 4.144510429844842
sum de = 7.572474548453445e-19
Info: CFL hydro = 0.011342940916097544 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011342940916097544 cfl multiplier : 0.9999999999992039 [sph::Model][rank=0]
Info: Timestep 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.7924e+04 | 800 | 1 | 4.463e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 915.2645270096552 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.511347660625187, dt = 0.011342940916097544 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.3%)
patch tree reduce : 1313.00 ns (0.3%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 407.99 us (95.5%)
LB move op cnt : 0
LB apply : 3.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9274999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1934697707992632e-17,-1.3360630466276894e-17,5.140547506755863e-18)
sum a = (1.4392035190388805e-16,1.1395479438053207e-17,-2.192820964420333e-18)
sum e = 4.144510425813398
sum de = -1.094366567852556e-18
Info: CFL hydro = 0.011339424395457164 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011339424395457164 cfl multiplier : 0.9999999999994692 [sph::Model][rank=0]
Info: Timestep 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.0223e+04 | 800 | 1 | 3.956e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1032.2376445631053 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.522690601541285, dt = 0.011339424395457164 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.4%)
patch tree reduce : 1392.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 399.40 us (95.2%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 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: 3.9274999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5277850981617074e-17,-1.3543365546645253e-17,5.389187042339043e-18)
sum a = (1.1669731841458509e-16,-4.691198948473008e-17,-5.932000100744732e-17)
sum e = 4.144510421215595
sum de = -6.742382260144231e-19
Info: CFL hydro = 0.011337149708976044 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011337149708976044 cfl multiplier : 0.9999999999996462 [sph::Model][rank=0]
Info: Timestep 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.0044e+04 | 800 | 1 | 3.991e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1022.7979419442454 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.534030025936742, dt = 0.011337149708976044 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.3%)
patch tree reduce : 1914.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.2%)
LB compute : 440.91 us (95.5%)
LB move op cnt : 0
LB apply : 4.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (74.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9274999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6649861912907392e-17,-1.4412106092658774e-17,3.713116919943993e-18)
sum a = (-3.7859113863858155e-17,2.2220286207087188e-17,5.3903853051611303e-17)
sum e = 4.144510416503504
sum de = -9.215718466126788e-19
Info: CFL hydro = 0.011336146095556405 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011336146095556405 cfl multiplier : 0.9999999999997641 [sph::Model][rank=0]
Info: Timestep 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.0266e+04 | 800 | 1 | 3.947e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1033.9259260652295 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.545367175645719, dt = 0.011336146095556405 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.53 us (3.1%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 414.53 us (93.8%)
LB move op cnt : 0
LB apply : 3.68 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (74.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9274999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5364725036218427e-17,-1.4149986100327108e-17,5.58390475092828e-18)
sum a = (7.809677942956022e-18,9.35783350909322e-17,-1.911229201229744e-17)
sum e = 4.1445104121359355
sum de = -5.488773498207866e-19
Info: CFL hydro = 0.011336420684989306 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011336420684989306 cfl multiplier : 0.9999999999998428 [sph::Model][rank=0]
Info: Timestep 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.0057e+04 | 800 | 1 | 3.989e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1023.1741316905799 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.556703321741276, dt = 0.011336420684989306 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.2%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 462.95 us (95.9%)
LB move op cnt : 0
LB apply : 3.70 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (75.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: 3.9274999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5427633834378026e-17,-1.2481405120570106e-17,5.031206024240368e-18)
sum a = (8.034951353508493e-17,6.520646712095272e-17,-1.1775927884066024e-17)
sum e = 4.144510408548951
sum de = 3.774378812965162e-18
Info: CFL hydro = 0.011337954191706015 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011337954191706015 cfl multiplier : 0.9999999999998952 [sph::Model][rank=0]
Info: Timestep 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.0158e+04 | 800 | 1 | 3.969e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1028.3131779449882 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.568039742426265, dt = 0.011337954191706015 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.3%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 762.00 ns (0.2%)
LB compute : 415.62 us (95.4%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 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: 3.9274999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7165114926405066e-17,-1.187778022394347e-17,4.6567488923379885e-18)
sum a = (6.660543896574e-17,-7.730293030992718e-17,1.0949276319678331e-16)
sum e = 4.1445104061221665
sum de = -2.913793338554793e-19
Info: CFL hydro = 0.011340705569745497 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011340705569745497 cfl multiplier : 0.9999999999999302 [sph::Model][rank=0]
Info: Timestep 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.9949e+04 | 800 | 1 | 4.010e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1017.8126940618912 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.579377696617971, dt = 0.011340705569745497 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.4%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 390.17 us (95.4%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.9274999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.774327673806234e-17,-1.377403113989712e-17,6.660843462279523e-18)
sum a = (-1.4086777736461987e-16,8.080485340747822e-17,6.782167573015893e-17)
sum e = 4.144510405151222
sum de = -9.825582188149884e-19
Info: CFL hydro = 0.011344612626175995 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011344612626175995 cfl multiplier : 0.9999999999999535 [sph::Model][rank=0]
Info: Timestep 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.0359e+04 | 800 | 1 | 3.929e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1039.0066705169022 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.590718402187717, dt = 0.011344612626175995 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.3%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 419.58 us (95.6%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (74.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9274999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.47625979681194e-17,-1.1557244919035035e-17,7.01283316626776e-18)
sum a = (-1.4353990345787525e-16,3.1634138503113003e-18,-6.139599134671411e-18)
sum e = 4.144510405817901
sum de = 4.2690460541616737e-19
Info: CFL hydro = 0.011349593334407736 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011349593334407736 cfl multiplier : 0.9999999999999689 [sph::Model][rank=0]
Info: Timestep 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.9952e+04 | 800 | 1 | 4.010e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1018.545138930305 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.602063014813893, dt = 0.011349593334407736 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.5%)
patch tree reduce : 1253.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 382.38 us (95.0%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 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: 3.9274999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2995160305540171e-17,-1.2300167868729355e-17,6.63837603436538e-18)
sum a = (-2.4742929013287133e-16,2.0975590700643678e-17,-4.966799397553159e-17)
sum e = 4.144510408176075
sum de = -2.290377089375628e-18
Info: CFL hydro = 0.01135554768872578 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01135554768872578 cfl multiplier : 0.9999999999999792 [sph::Model][rank=0]
Info: Timestep 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.0460e+04 | 800 | 1 | 3.910e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.9434625656525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.613412608148302, dt = 0.01135554768872578 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.5%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 385.18 us (95.3%)
LB move op cnt : 0
LB apply : 3.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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: 3.9274999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.67597228835748e-18,-1.1948178164741118e-17,6.163564391113163e-18)
sum a = (3.7637435241771945e-17,9.978533650934603e-17,2.1955470123405823e-16)
sum e = 4.144510412145569
sum de = 1.4704491964334654e-18
Info: CFL hydro = 0.011362361092379786 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011362361092379786 cfl multiplier : 0.9999999999999861 [sph::Model][rank=0]
Info: Timestep 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.0051e+04 | 800 | 1 | 3.990e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1024.6259462140886 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.624768155837028, dt = 0.011362361092379786 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.3%)
patch tree reduce : 1313.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 404.05 us (95.4%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (74.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9274999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1668084230078138e-17,-1.0230168843573002e-17,1.005042942025986e-17)
sum a = (-7.724002151176759e-17,8.678418488969543e-17,5.042889086755722e-17)
sum e = 4.144510417520537
sum de = 1.0977546996415732e-18
Info: CFL hydro = 0.011369901558668315 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011369901558668315 cfl multiplier : 0.9999999999999908 [sph::Model][rank=0]
Info: Timestep 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.0320e+04 | 800 | 1 | 3.937e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1038.9897297782702 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.636130516929407, dt = 0.011369901558668315 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.5%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 385.01 us (95.1%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.9274999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0131312160750775e-17,-8.828950255994298e-18,9.409358810442986e-18)
sum a = (-6.443059194365099e-17,3.0603632476117655e-17,1.8249542780394356e-16)
sum e = 4.144510423977983
sum de = -1.782157321023048e-18
Info: CFL hydro = 0.01137500955216611 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01137500955216611 cfl multiplier : 0.9999999999999938 [sph::Model][rank=0]
Info: Timestep 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.0365e+04 | 800 | 1 | 3.928e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.9526688725562 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.647500418488075, dt = 0.01137500955216611 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.4%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 394.46 us (95.4%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (74.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9274999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.575617777007643e-18,-9.652007031915729e-18,1.219082638621386e-17)
sum a = (-1.147935783559934e-16,4.522243890558654e-17,-5.208249356203813e-17)
sum e = 4.144510431022787
sum de = -8.944667923005412e-19
Info: CFL hydro = 0.011378259709674859 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011378259709674859 cfl multiplier : 0.9999999999999959 [sph::Model][rank=0]
Info: Timestep 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.0241e+04 | 800 | 1 | 3.952e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1036.0649317362308 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.658875428040242, dt = 0.011378259709674859 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.3%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 389.64 us (95.4%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (74.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9274999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.851617141729089e-18,-8.40731152547222e-18,1.0439864837438334e-17)
sum a = (-1.7422741433153905e-17,-1.2452946378545525e-16,1.1257080082102087e-16)
sum e = 4.14451043818715
sum de = -1.531435568635775e-18
Info: CFL hydro = 0.011376728697223068 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011376728697223068 cfl multiplier : 0.9999999999999973 [sph::Model][rank=0]
Info: Timestep 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.0168e+04 | 800 | 1 | 3.967e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1032.6659538690014 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.670253687749916, dt = 0.011376728697223068 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.3%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 1053.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 389.41 us (95.5%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.9274999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.232065587741906e-18,-1.0855512253849975e-17,1.3167410586215265e-17)
sum a = (1.5134059442966562e-17,-7.71801083706632e-17,2.497179721230587e-17)
sum e = 4.144510444894345
sum de = 4.54009659728305e-19
Info: CFL hydro = 0.011374752729059958 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011374752729059958 cfl multiplier : 0.9999999999999982 [sph::Model][rank=0]
Info: Timestep 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.0373e+04 | 800 | 1 | 3.927e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1042.9890225215247 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.68163041644714, dt = 0.011374752729059958 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.3%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 385.66 us (95.5%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.925
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.81172522792679e-18,-1.1384245724096135e-17,1.283938613866878e-17)
sum a = (-1.2040144836336342e-16,-3.7397782677354427e-17,-4.181937249085772e-18)
sum e = 4.144510450780605
sum de = -9.554531645028508e-19
Info: CFL hydro = 0.011374474649630914 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011374474649630914 cfl multiplier : 0.9999999999999988 [sph::Model][rank=0]
Info: Timestep 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.0736e+04 | 800 | 1 | 3.858e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1061.3914328897765 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.6930051691762, dt = 0.011374474649630914 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.3%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 403.10 us (95.6%)
LB move op cnt : 0
LB apply : 3.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.925
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.449649639886581e-18,-1.2214042728391807e-17,1.2217787299710831e-17)
sum a = (1.4931553026033755e-16,-2.438464842948294e-18,9.048082569583571e-17)
sum e = 4.144510455501677
sum de = 1.0367683274392636e-18
Info: CFL hydro = 0.011375903480961368 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011375903480961368 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.0061e+04 | 800 | 1 | 3.988e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1026.8258864122465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.704379643825831, dt = 0.011375903480961368 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.3%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 385.61 us (95.2%)
LB move op cnt : 0
LB apply : 3.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 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: 3.925
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.764344171486443e-18,-1.17564561132071e-17,1.4015181532842253e-17)
sum a = (2.7062765836848757e-17,2.1149338809846382e-17,-3.5959867290849286e-17)
sum e = 4.144510458745521
sum de = -7.453889935837843e-19
Info: CFL hydro = 0.011379027679248033 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011379027679248033 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.0193e+04 | 800 | 1 | 3.962e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1033.7030481837971 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.715755547306793, dt = 0.011379027679248033 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.2%)
patch tree reduce : 1253.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 399.16 us (95.6%)
LB move op cnt : 0
LB apply : 3.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.925
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.544163377927843e-18,-1.1406713152010277e-17,1.2584755288975163e-17)
sum a = (5.972741036695711e-17,-1.8914578646652982e-17,-7.308204951912357e-17)
sum e = 4.14451046031487
sum de = 2.211179508807351e-18
Info: CFL hydro = 0.011383616924539923 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011383616924539923 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0636e+04 | 800 | 1 | 3.877e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1056.663239989426 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.727134574986042, dt = 0.011383616924539923 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.2%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 422.78 us (95.8%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (74.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.925
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0308055927008697e-17,-1.2279198269342821e-17,1.138649246688755e-17)
sum a = (-4.998553362338481e-17,6.985572687065266e-17,-3.468970869943642e-17)
sum e = 4.144510460134889
sum de = 9.73240856395191e-19
Info: CFL hydro = 0.011383510090850797 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011383510090850797 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0312e+04 | 800 | 1 | 3.939e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.522437117657 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.738518191910583, dt = 0.011383510090850797 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.81 us (1.1%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 1012.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.2%)
LB compute : 426.96 us (95.7%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (72.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9199999999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.154727960749369e-18,-1.0150035017345893e-17,1.1352791325016335e-17)
sum a = (1.984922364788132e-17,1.6763696881005715e-17,2.3653708108009496e-17)
sum e = 4.1445104580954295
sum de = 1.3721933745519665e-19
Info: CFL hydro = 0.01137640119188422 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01137640119188422 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0398e+04 | 800 | 1 | 3.922e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.9226732782251 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.749901702001432, dt = 0.01137640119188422 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.4%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 981.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 382.80 us (95.1%)
LB move op cnt : 0
LB apply : 3.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 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: 3.9199999999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.693946230688794e-18,-1.0633833631763768e-17,1.2043290276244322e-17)
sum a = (4.7385303299454684e-17,8.750613824000321e-17,-1.274951642701221e-17)
sum e = 4.144510454346013
sum de = 1.277325684459485e-18
Info: CFL hydro = 0.011368725336987429 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011368725336987429 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0718e+04 | 800 | 1 | 3.861e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1060.6173506447717 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.761278103193316, dt = 0.011368725336987429 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.2%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1293.00 ns (0.3%)
LB compute : 403.58 us (95.5%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.919999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0311051584063917e-17,-9.133758361362835e-18,1.1897251994802395e-17)
sum a = (-4.1435928387789685e-17,-3.557043187367081e-17,7.323782368599495e-17)
sum e = 4.144510449422945
sum de = 7.962109704190423e-19
Info: CFL hydro = 0.011362844534646517 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011362844534646517 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0253e+04 | 800 | 1 | 3.950e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1036.1431046708385 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.772646828530304, dt = 0.011362844534646517 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.3%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 373.71 us (95.3%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 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: 3.9249999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.350943497866216e-18,-1.0175123645183353e-17,1.3376732122948695e-17)
sum a = (4.456938566754879e-17,2.2106451238988862e-17,1.578711268100431e-17)
sum e = 4.144510443821134
sum de = -2.642742795433417e-19
Info: CFL hydro = 0.011358848202414343 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011358848202414343 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0513e+04 | 800 | 1 | 3.900e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.878118410158 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.78400967306495, dt = 0.011358848202414343 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.2%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 401.49 us (95.5%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.9249999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0606872718266795e-17,-9.989392907759772e-18,1.2390786494649731e-17)
sum a = (-9.433923198295783e-17,1.7926386275562603e-17,-2.069399893745309e-17)
sum e = 4.144510438020753
sum de = -1.0842021724855044e-19
Info: CFL hydro = 0.011356796297924594 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011356796297924594 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0254e+04 | 800 | 1 | 3.950e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1035.2757455303667 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.795368521267365, dt = 0.011356796297924594 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.2%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 409.60 us (95.7%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 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: 3.9249999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.492687751545963e-18,-9.322484755841634e-18,1.2235761242042145e-17)
sum a = (-1.0073196413879525e-16,9.645416586394246e-17,1.9040396242972183e-17)
sum e = 4.144510432523168
sum de = 9.283481101907132e-19
Info: CFL hydro = 0.011356719671037163 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011356719671037163 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8836e+04 | 800 | 1 | 4.247e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 962.6179318889554 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.80672531756529, dt = 0.011356719671037163 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.67 us (5.3%)
patch tree reduce : 1833.00 ns (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 405.19 us (91.4%)
LB move op cnt : 0
LB apply : 4.18 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (75.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9274999999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.287684701084106e-18,-7.912653654229177e-18,1.3006394019497241e-17)
sum a = (-1.1953869913146035e-16,7.898199608937744e-17,3.505817451722836e-17)
sum e = 4.14451042780819
sum de = 9.961107459710572e-19
Info: CFL hydro = 0.01135861175127914 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01135861175127914 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0414e+04 | 800 | 1 | 3.919e-02 | 0.1% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.2748781386622 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.818082037236326, dt = 0.01135861175127914 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.2%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.2%)
LB compute : 423.04 us (95.7%)
LB move op cnt : 0
LB apply : 4.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9274999999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.8924574276158405e-18,-6.96415373912045e-18,1.3340035324022262e-17)
sum a = (-1.0195718787437984e-16,-1.2309154839895012e-17,3.7143151827660806e-17)
sum e = 4.1445104243034665
sum de = -8.199278929421627e-19
Info: CFL hydro = 0.011354171105611285 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011354171105611285 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0740e+04 | 800 | 1 | 3.857e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1060.0756045485773 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.829440648987605, dt = 0.011354171105611285 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.2%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 434.00 us (95.7%)
LB move op cnt : 0
LB apply : 4.15 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 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: 3.9274999999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.039444081142221e-18,-8.403566954153196e-18,1.3519213061637551e-17)
sum a = (6.863949010623373e-17,6.534726300254801e-17,2.9394884854336776e-19)
sum e = 4.14451042215314
sum de = 3.1035287187397564e-18
Info: CFL hydro = 0.01135141515314016 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01135141515314016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0603e+04 | 800 | 1 | 3.883e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1052.6978124703505 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.840794820093215, dt = 0.01135141515314016 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.3%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.3%)
LB compute : 407.50 us (95.5%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.9274999999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.772431687586432e-18,-6.667583690653766e-18,1.367498722850894e-17)
sum a = (3.9903649804045146e-17,8.57896267473627e-17,7.226723080010398e-17)
sum e = 4.144510421771872
sum de = 5.692061405548898e-19
Info: CFL hydro = 0.011351186322435447 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011351186322435447 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0222e+04 | 800 | 1 | 3.956e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1032.9924761290456 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.852146235246355, dt = 0.011351186322435447 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.4%)
patch tree reduce : 1362.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 390.64 us (95.1%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.9274999999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.8705394561448554e-18,-5.5105111530754135e-18,1.491200636374845e-17)
sum a = (-3.485746549452868e-17,-3.968047335343133e-17,-2.0003799551930623e-16)
sum e = 4.144510423265044
sum de = 9.893344823930228e-19
Info: CFL hydro = 0.011353438545304047 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011353438545304047 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0286e+04 | 800 | 1 | 3.944e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1036.207870501642 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.863497421568791, dt = 0.011353438545304047 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.4%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 18.84 us (4.3%)
LB compute : 404.96 us (91.4%)
LB move op cnt : 0
LB apply : 3.73 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 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: 3.9274999999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.090170793260296e-18,-7.018075566114392e-18,1.0395678895873854e-17)
sum a = (1.1222480243114307e-16,4.122623239392435e-17,1.1895754166274784e-16)
sum e = 4.144510426581905
sum de = -2.168404344971009e-19
Info: CFL hydro = 0.01135808995725174 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01135808995725174 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9993e+04 | 800 | 1 | 4.001e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1021.4462938475867 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.874850860114096, dt = 0.01135808995725174 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.3%)
patch tree reduce : 1392.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 379.33 us (95.3%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 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: 3.9274999999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.063559878385835e-18,-5.976335825161973e-18,1.3935422163747047e-17)
sum a = (4.745570124025233e-17,-2.2850872017210795e-17,1.286454965793262e-16)
sum e = 4.1445104315423
sum de = 4.743384504624082e-19
Info: CFL hydro = 0.011365024425733814 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011365024425733814 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9919e+04 | 800 | 1 | 4.016e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1018.1132134307637 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.886208950071348, dt = 0.011365024425733814 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.2%)
patch tree reduce : 1213.00 ns (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 390.14 us (95.4%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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: 3.9274999999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.121226276698803e-18,-6.421190897862e-18,1.550963994626465e-17)
sum a = (6.108144735591611e-18,7.666485535716552e-17,-4.1525798099446255e-17)
sum e = 4.1445104378453745
sum de = -2.1751806085490433e-18
Info: CFL hydro = 0.011374093039570985 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011374093039570985 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0850e+04 | 800 | 1 | 3.837e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1066.3401070998314 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.897573974497082, dt = 0.011374093039570985 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.80 us (1.1%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1363.00 ns (0.3%)
LB compute : 406.98 us (95.7%)
LB move op cnt : 0
LB apply : 3.56 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.9274999999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.357883184061106e-18,-5.224425904301996e-18,1.4824757852015195e-17)
sum a = (9.02891036443017e-17,-4.758301666509914e-17,-1.3367820043209419e-16)
sum e = 4.144510445093041
sum de = 3.1712913545201005e-18
Info: CFL hydro = 0.011373207507819519 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011373207507819519 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0435e+04 | 800 | 1 | 3.915e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1045.9136762101245 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.908948067536652, dt = 0.011373207507819519 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.5%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 375.46 us (95.2%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 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: 3.9274999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.707426687437281e-18,-6.308104844027481e-18,1.2094216446183047e-17)
sum a = (-6.214490561051887e-17,2.5648815706785372e-17,1.911229201229744e-16)
sum e = 4.1445104525014935
sum de = -1.0367683274392636e-18
Info: CFL hydro = 0.011372979068573298 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011372979068573298 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0573e+04 | 800 | 1 | 3.889e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1052.9389000434348 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.920321275044472, dt = 0.011372979068573298 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.3%)
patch tree reduce : 1442.00 ns (0.3%)
gen split merge : 1313.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 413.76 us (95.4%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9274999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.11298821979695e-18,-5.155525792031958e-18,1.658994877180301e-17)
sum a = (3.1144049008879167e-16,8.567579177926438e-17,1.6168160258428173e-16)
sum e = 4.144510459812512
sum de = 3.110304982317791e-18
Info: CFL hydro = 0.011373514264357353 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011373514264357353 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0416e+04 | 800 | 1 | 3.919e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.8344679656766 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.931694254113046, dt = 0.011373514264357353 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.3%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 381.91 us (95.2%)
LB move op cnt : 0
LB apply : 4.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 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: 3.9274999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3900597650480125e-17,-4.277798274852781e-18,1.7602480856467045e-17)
sum a = (-1.0852366813941995e-16,1.0668133905046025e-16,-5.700136244670779e-17)
sum e = 4.144510466539285
sum de = -3.815036394433369e-18
Info: CFL hydro = 0.011363625998228244 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011363625998228244 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0556e+04 | 800 | 1 | 3.892e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1052.048148004007 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.943067768377404, dt = 0.011363625998228244 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.1%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1463.00 ns (0.3%)
LB compute : 448.62 us (95.8%)
LB move op cnt : 0
LB apply : 3.98 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9274999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0252636271487144e-17,-2.8428785454028634e-18,1.6363776664133974e-17)
sum a = (4.160967649699238e-18,-5.786411167861086e-17,1.1862801938667376e-16)
sum e = 4.144510471916446
sum de = 6.606856988583543e-19
Info: CFL hydro = 0.011353823078349742 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011353823078349742 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1000e+04 | 800 | 1 | 3.809e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1073.8799395878468 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.954431394375632, dt = 0.011353823078349742 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.92 us (1.2%)
patch tree reduce : 1372.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 382.41 us (95.6%)
LB move op cnt : 0
LB apply : 3.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.9274999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0972342879003518e-17,-4.718159861969979e-18,1.8381351690823994e-17)
sum a = (4.320935736447935e-17,1.3301316456583555e-16,-3.930302056447373e-18)
sum e = 4.144510475864236
sum de = -1.0367683274392636e-18
Info: CFL hydro = 0.011344252122413408 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011344252122413408 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0185e+04 | 800 | 1 | 3.963e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1031.3144312103957 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.965785217453982, dt = 0.011344252122413408 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (1.2%)
patch tree reduce : 922.00 ns (0.2%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 371.29 us (95.6%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 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: 3.9274999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1474864350016511e-17,-2.2197818779173044e-18,1.8080288156774482e-17)
sum a = (4.368267117920396e-17,-1.9969049930090083e-17,1.0436869180383116e-16)
sum e = 4.144510478153657
sum de = -2.126052697608294e-18
Info: CFL hydro = 0.011335054252940116 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011335054252940116 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0883e+04 | 800 | 1 | 3.831e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1066.046557806474 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.977129469576395, dt = 0.011335054252940116 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.4%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1013.00 ns (0.3%)
LB compute : 383.62 us (95.2%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 20.43 us (94.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: 3.9274999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2033554390814861e-17,-3.485446983747346e-18,1.953617748561093e-17)
sum a = (-2.608618163684735e-17,1.6097462751925002e-16,-6.535325431665845e-17)
sum e = 4.144510478683563
sum de = -1.810956441229694e-18
Info: CFL hydro = 0.011326362949956793 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011326362949956793 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0662e+04 | 800 | 1 | 3.872e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1053.925964175429 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.988464523829336, dt = 0.011326362949956793 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.3%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 384.51 us (95.6%)
LB move op cnt : 0
LB apply : 3.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.9274999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1059965847868675e-17,-1.8573073742358012e-19,1.7779224622724967e-17)
sum a = (-7.260873570439895e-17,6.071597719517939e-17,2.349553741549393e-16)
sum e = 4.1445104774898205
sum de = -1.64959666477775e-18
Info: CFL hydro = 0.011318303014641111 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011318303014641111 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9510e+04 | 800 | 1 | 4.101e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 994.3761860866921 (tsim/hr) [sph::Model][rank=0]
---------------- t = 12.999790886779293, dt = 0.0002091132207073798 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (1.2%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 395.16 us (95.7%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 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: 3.9274999999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1112389846335008e-17,-5.227421561357215e-19,1.9369918519046275e-17)
sum a = (-1.7812775981743422e-16,4.370364077859049e-17,-1.8692900024566775e-16)
sum e = 4.144510313529661
sum de = -6.577210835429642e-19
Info: CFL hydro = 0.011318507768106232 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011318507768106232 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1010e+04 | 800 | 1 | 3.808e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.770513987381122 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 1605 [SPH][rank=0]
Info: time since start : 932.1286961760001 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15099375855498648 max=0.1512853524628432 delta=0.00029159390785671313
Number of particle pairs: 319600
Distance min=0.143691 max=2.285181 mean=0.933201
---------------- t = 13, dt = 0.011318507768106232 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.85 us (1.6%)
patch tree reduce : 1422.00 ns (0.2%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.1%)
LB compute : 583.95 us (96.3%)
LB move op cnt : 0
LB apply : 3.75 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.193671502467216e-18,-1.6176548098182785e-19,1.6826605679165314e-17)
sum a = (1.2981979414497207e-16,-1.8062913345854212e-16,-2.829098522948856e-17)
sum e = 4.1445104748751325
sum de = -1.8465318250143747e-18
Info: CFL hydro = 0.011310379390093488 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011310379390093488 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9689e+04 | 800 | 1 | 4.063e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1002.8490151744826 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.011318507768106, dt = 0.011310379390093488 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.56 us (1.1%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 401.86 us (95.7%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (72.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2421491979465726e-17,-3.096011566568872e-18,1.792900747548592e-17)
sum a = (-1.1656700733268306e-16,-2.671227396138813e-17,-2.1192476271441536e-16)
sum e = 4.144510470881063
sum de = -4.404571325722362e-19
Info: CFL hydro = 0.011302201790618673 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011302201790618673 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0484e+04 | 800 | 1 | 3.906e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1042.5590243683353 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.022628887158199, dt = 0.011302201790618673 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (1.1%)
patch tree reduce : 982.00 ns (0.2%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1413.00 ns (0.3%)
LB compute : 393.24 us (95.8%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.80178988467668e-18,-2.904289515034854e-18,1.4819515452168564e-17)
sum a = (1.0332620314861493e-16,-5.028509932890671e-17,-3.942284684668249e-18)
sum e = 4.144510465886113
sum de = 2.1243586317137853e-18
Info: CFL hydro = 0.011294999395655309 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011294999395655309 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0674e+04 | 800 | 1 | 3.870e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1051.4715329416208 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.033931088948817, dt = 0.011294999395655309 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.2%)
patch tree reduce : 1372.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 400.38 us (95.4%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2058268561520417e-17,-3.3701141871214136e-18,1.578711268100431e-17)
sum a = (7.531680968231697e-17,-1.1568628415844867e-16,-4.4443568071229595e-17)
sum e = 4.144510460500517
sum de = -7.860465750519907e-19
Info: CFL hydro = 0.011288856416985748 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011288856416985748 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0720e+04 | 800 | 1 | 3.861e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1053.1578984621544 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.045226088344473, dt = 0.011288856416985748 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.05 us (1.0%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 397.83 us (95.8%)
LB move op cnt : 0
LB apply : 3.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2728359599059726e-17,-5.360728300314462e-18,1.5963856447262235e-17)
sum a = (1.1179792130077435e-17,-1.0183137027806063e-16,1.4439067006155745e-17)
sum e = 4.144510455159988
sum de = 6.301925127571995e-19
Info: CFL hydro = 0.011283843754917111 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011283843754917111 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1058e+04 | 800 | 1 | 3.799e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1069.7267793379124 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.056514944761458, dt = 0.011283843754917111 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (1.0%)
patch tree reduce : 1012.00 ns (0.2%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 393.14 us (96.1%)
LB move op cnt : 0
LB apply : 3.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2508319226925589e-17,-6.768687116267408e-18,1.5116085500635248e-17)
sum a = (-8.369865812281981e-17,4.683447685842628e-17,-6.160269168352422e-17)
sum e = 4.144510450328325
sum de = -5.963111948670274e-19
Info: CFL hydro = 0.011280014262760192 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011280014262760192 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0920e+04 | 800 | 1 | 3.824e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1062.2461006113783 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.067798788516376, dt = 0.011280014262760192 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (0.9%)
patch tree reduce : 952.00 ns (0.2%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 391.08 us (96.2%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1616970831573465e-17,-5.161517106142396e-18,1.461281511535845e-17)
sum a = (1.615378110456312e-16,2.2538949226336112e-17,-6.044037674609924e-17)
sum e = 4.1445104464257305
sum de = 2.371692252312041e-19
Info: CFL hydro = 0.011277401541935574 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011277401541935574 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0752e+04 | 800 | 1 | 3.855e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1053.3818733498404 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.079078802779136, dt = 0.011277401541935574 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (1.0%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 411.18 us (96.0%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.919999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4766342539438426e-17,-4.679216320252132e-18,1.3627243944191388e-17)
sum a = (-1.1823259265538484e-16,-1.7000503571220782e-16,4.163963306754458e-18)
sum e = 4.14451044379773
sum de = -6.572975670693371e-19
Info: CFL hydro = 0.011276020326754496 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011276020326754496 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1068e+04 | 800 | 1 | 3.797e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1069.1669139781768 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.090356204321072, dt = 0.011276020326754496 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.65 us (1.2%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 381.77 us (95.6%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.919999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1787161598023094e-17,-7.957962967189364e-18,1.3546361203700473e-17)
sum a = (-4.275401749208606e-17,-4.510860393748822e-17,-4.905687993626691e-17)
sum e = 4.14451044268854
sum de = -9.893344823930228e-19
Info: CFL hydro = 0.011275866100600926 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011275866100600926 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0535e+04 | 800 | 1 | 3.896e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.973972010532 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.101632224647826, dt = 0.011275866100600926 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.65 us (1.1%)
patch tree reduce : 1342.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.2%)
LB compute : 415.43 us (95.6%)
LB move op cnt : 0
LB apply : 3.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.919999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1780421369648852e-17,-7.508614408906509e-18,1.2899299279773162e-17)
sum a = (-1.4045437669099964e-16,1.795896404603811e-17,-6.557193728168944e-17)
sum e = 4.144510443233386
sum de = 8.605854744103691e-19
Info: CFL hydro = 0.01127691567489399 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01127691567489399 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0778e+04 | 800 | 1 | 3.850e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1054.292927195259 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.112908090748427, dt = 0.01127691567489399 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.10 us (1.0%)
patch tree reduce : 1392.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.2%)
LB compute : 403.99 us (95.9%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.099682762359718e-18,-6.955915682218598e-18,1.2599733574251258e-17)
sum a = (-1.0245147128849098e-16,-1.0323034212284792e-17,2.867592716108421e-17)
sum e = 4.144510445436776
sum de = 1.9651164376299768e-19
Info: CFL hydro = 0.011279128413749338 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011279128413749338 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0867e+04 | 800 | 1 | 3.834e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1058.8985191872307 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.124185006423321, dt = 0.011279128413749338 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 us (1.1%)
patch tree reduce : 1412.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 393.22 us (95.6%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.180016046407476e-18,-7.212044360439824e-18,1.3105999616583275e-17)
sum a = (1.101682838627352e-16,-9.39258313093376e-17,1.7675874454319913e-17)
sum e = 4.144510449178967
sum de = 8.402566836762659e-19
Info: CFL hydro = 0.011282446161182711 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011282446161182711 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0499e+04 | 800 | 1 | 3.903e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.4436137991813 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.13546413483707, dt = 0.011282446161182711 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.89 us (1.1%)
patch tree reduce : 1382.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 405.42 us (95.1%)
LB move op cnt : 0
LB apply : 4.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0573171576395582e-17,-8.897101454000532e-18,1.3516404633148282e-17)
sum a = (-7.489442203753107e-17,2.0716466365367231e-16,5.159270363350982e-17)
sum e = 4.144510454225996
sum de = -5.014435047745458e-19
Info: CFL hydro = 0.011286794357728353 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011286794357728353 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0701e+04 | 800 | 1 | 3.865e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1050.9908885809207 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.146746580998252, dt = 0.011286794357728353 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (0.9%)
patch tree reduce : 1052.00 ns (0.2%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 405.57 us (96.2%)
LB move op cnt : 0
LB apply : 3.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.357883184061106e-18,-4.891907971172683e-18,1.420540575584866e-17)
sum a = (6.378952133383412e-17,7.295323626574914e-17,-9.294026013817054e-17)
sum e = 4.144510460246459
sum de = 2.2293907171733185e-18
Info: CFL hydro = 0.011292083702786648 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011292083702786648 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1338e+04 | 800 | 1 | 3.749e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1083.7457996142778 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.15803337535598, dt = 0.011292083702786648 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.48 us (1.0%)
patch tree reduce : 1223.00 ns (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 427.77 us (96.2%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.042189089510702e-17,-4.9233623702524825e-18,1.2515855176705125e-17)
sum a = (1.3496783079436597e-16,-1.2830998298914167e-16,8.886317088601743e-17)
sum e = 4.144510466834391
sum de = 1.4230153513872246e-19
Info: CFL hydro = 0.011298211339019712 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011298211339019712 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0543e+04 | 800 | 1 | 3.894e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.884633002128 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.169325459058767, dt = 0.011298211339019712 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.80 us (1.2%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 376.21 us (95.4%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.203505221934247e-17,-7.318390185900101e-18,1.3726100627013615e-17)
sum a = (4.347671975665765e-17,9.756255897437351e-17,9.30451081351032e-18)
sum e = 4.144510473542746
sum de = 2.0328790734103208e-20
Info: CFL hydro = 0.01130470101848747 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01130470101848747 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0940e+04 | 800 | 1 | 3.820e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1064.6418104244663 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.180623670397786, dt = 0.01130470101848747 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 us (1.2%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 374.03 us (95.5%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2042166904848616e-17,-4.767588203381093e-18,1.395676622026548e-17)
sum a = (-6.179291590653063e-17,-7.933099013631046e-17,1.0736434885905019e-17)
sum e = 4.144510479905286
sum de = -1.4026865606531214e-18
Info: CFL hydro = 0.011300375917025015 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011300375917025015 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1086e+04 | 800 | 1 | 3.794e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1072.6558863161035 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.191928371416273, dt = 0.011300375917025015 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (1.1%)
patch tree reduce : 1262.00 ns (0.3%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 366.69 us (95.9%)
LB move op cnt : 0
LB apply : 3.28 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.089557916696353e-17,-7.051776707985607e-18,1.458285854480626e-17)
sum a = (-3.7415756619685734e-18,2.7431231654640698e-17,8.144592401729511e-17)
sum e = 4.144510485188927
sum de = 2.676624113323589e-19
Info: CFL hydro = 0.011297423280027521 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011297423280027521 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1018e+04 | 800 | 1 | 3.806e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1068.7927394839744 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.203228747333299, dt = 0.011297423280027521 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (0.9%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 403.33 us (96.1%)
LB move op cnt : 0
LB apply : 3.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1455018122025684e-17,-5.904440055836716e-18,1.5864999764440005e-17)
sum a = (-4.44285897859535e-17,-6.027411777953458e-17,1.014329478897165e-16)
sum e = 4.1445104893389235
sum de = -1.2569968937253817e-18
Info: CFL hydro = 0.011295867368613322 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011295867368613322 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1459e+04 | 800 | 1 | 3.728e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1090.9226046996569 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.214526170613325, dt = 0.011295867368613322 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.1%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 369.37 us (91.7%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0172127988128134e-17,-6.641371691420599e-18,1.687753184910404e-17)
sum a = (1.787688304272511e-16,5.866395211235435e-17,-5.284339045406377e-18)
sum e = 4.144510492096034
sum de = -2.4242082950418076e-18
Info: CFL hydro = 0.011295718255943263 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011295718255943263 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0689e+04 | 800 | 1 | 3.867e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1051.6557995121034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.225822037981938, dt = 0.011295718255943263 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.04 us (0.9%)
patch tree reduce : 1062.00 ns (0.2%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.2%)
LB compute : 412.08 us (96.3%)
LB move op cnt : 0
LB apply : 3.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 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: 3.922499999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4349571751631077e-17,-5.762146345713812e-18,1.5894956334992197e-17)
sum a = (6.039843754732617e-17,-7.549280453431108e-17,5.913427027002374e-17)
sum e = 4.144510493303611
sum de = -5.802175688691957e-19
Info: CFL hydro = 0.011296970265906299 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011296970265906299 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0930e+04 | 800 | 1 | 3.822e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1063.8960172626767 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.237117756237883, dt = 0.011296970265906299 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.08 us (1.1%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 362.93 us (95.6%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.922499999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3695020685065718e-17,-7.315394528844882e-18,1.712617138468722e-17)
sum a = (1.5885969363826538e-16,1.2220520836773718e-16,-1.0518351052285073e-16)
sum e = 4.144510492927982
sum de = -1.1494237094240856e-18
Info: CFL hydro = 0.011299602081351936 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011299602081351936 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0677e+04 | 800 | 1 | 3.869e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1051.1443114342724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.248414726503789, dt = 0.011299602081351936 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.19 us (1.1%)
patch tree reduce : 1133.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 376.94 us (95.8%)
LB move op cnt : 0
LB apply : 3.10 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.922499999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.621006201148805e-17,-4.5743683233194656e-18,1.4091570787750336e-17)
sum a = (8.11463583117732e-17,1.9705432109230808e-17,6.501774072647392e-17)
sum e = 4.144510491057158
sum de = 3.1967023429377295e-18
Info: CFL hydro = 0.011303577006725981 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011303577006725981 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1201e+04 | 800 | 1 | 3.773e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1078.0248630986614 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.25971432858514, dt = 0.011303577006725981 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.45 us (1.1%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.2%)
LB compute : 393.05 us (95.8%)
LB move op cnt : 0
LB apply : 3.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.922499999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.655002228011392e-17,-5.547956866265651e-18,1.5873986735605662e-17)
sum a = (-3.0232171001270496e-17,-1.3854764097535274e-16,1.1913128977195056e-16)
sum e = 4.144510487891401
sum de = -3.9641141931501256e-19
Info: CFL hydro = 0.01130884294572483 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01130884294572483 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1243e+04 | 800 | 1 | 3.766e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1080.536790571501 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.271017905591867, dt = 0.01130884294572483 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (1.1%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1543.00 ns (0.4%)
LB compute : 392.44 us (95.6%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.922499999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6244418453340092e-17,-7.526588351237823e-18,1.8505671458615583e-17)
sum a = (-2.1568730797577045e-18,-1.5311402340635528e-16,6.746219688353265e-17)
sum e = 4.144510483730803
sum de = -2.927345865710862e-18
Info: CFL hydro = 0.011308358265167134 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011308358265167134 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1661e+04 | 800 | 1 | 3.693e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1102.3447721457578 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.282326748537592, dt = 0.011308358265167134 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (0.9%)
patch tree reduce : 571.00 ns (0.1%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 391.34 us (96.4%)
LB move op cnt : 0
LB apply : 3.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.922499999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6015718760030715e-17,-9.208649787743311e-18,1.8871141619352306e-17)
sum a = (-1.4866846833641022e-16,2.7152335982799806e-16,1.851316060125363e-17)
sum e = 4.144510478778458
sum de = 9.012430558785756e-19
Info: CFL hydro = 0.011297509675063518 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011297509675063518 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1255e+04 | 800 | 1 | 3.764e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1081.5915060423579 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.293635106802759, dt = 0.011297509675063518 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.93 us (1.2%)
patch tree reduce : 1133.00 ns (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 397.86 us (95.5%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 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: 3.922499999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3397327265203326e-17,-3.9887173690241444e-18,1.8535628029167775e-17)
sum a = (-5.121375301602461e-17,2.363573416567818e-17,5.6078700073700324e-18)
sum e = 4.144510473371121
sum de = -3.7947076036992655e-19
Info: CFL hydro = 0.011288571915508727 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011288571915508727 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1333e+04 | 800 | 1 | 3.750e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1084.5321525529832 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.304932616477823, dt = 0.011288571915508727 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.64 us (1.1%)
patch tree reduce : 1363.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 405.00 us (95.7%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.922499999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3291355896874953e-17,-4.814020887736988e-18,1.8715367452480915e-17)
sum a = (1.8299869818922036e-16,-2.291018602690413e-16,-1.8199215741866677e-16)
sum e = 4.1445104682845635
sum de = 1.2061749168901237e-18
Info: CFL hydro = 0.011281668867393537 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011281668867393537 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0825e+04 | 800 | 1 | 3.842e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1057.8696701246772 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.316221188393332, dt = 0.011281668867393537 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 us (1.1%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 378.32 us (95.5%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.922499999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.651880191674156e-17,-9.448302352160834e-18,1.5369218521801257e-17)
sum a = (4.074093595097887e-18,-3.769734838287633e-17,9.285338608356918e-17)
sum e = 4.144510463940427
sum de = 1.531435568635775e-18
Info: CFL hydro = 0.01127689680692735 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01127689680692735 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1519e+04 | 800 | 1 | 3.718e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1092.4813182911105 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.327502857260725, dt = 0.01127689680692735 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (0.8%)
patch tree reduce : 1012.00 ns (0.2%)
gen split merge : 1022.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 398.52 us (96.3%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.922499999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5933150962446238e-17,-8.142195876085335e-18,1.829597546475025e-17)
sum a = (-4.468322063564711e-17,-1.9656303333525214e-16,4.0429387617236086e-17)
sum e = 4.144510460705861
sum de = 8.673617379884035e-19
Info: CFL hydro = 0.011274322416403132 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011274322416403132 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1551e+04 | 800 | 1 | 3.712e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1093.6490637265877 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.338779754067653, dt = 0.011274322416403132 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (0.9%)
patch tree reduce : 1082.00 ns (0.2%)
gen split merge : 792.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1233.00 ns (0.2%)
LB compute : 544.65 us (96.6%)
LB move op cnt : 0
LB apply : 4.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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: 3.922499999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.433421900922308e-17,-1.1651608116274433e-17,1.8975989616284972e-17)
sum a = (6.858856393629501e-17,-4.693595474117183e-17,-1.7219036753399008e-17)
sum e = 4.144510458870998
sum de = 2.1006417091906648e-19
Info: CFL hydro = 0.011273981362748969 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011273981362748969 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1519e+04 | 800 | 1 | 3.718e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1091.736961574797 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.350054076484057, dt = 0.011273981362748969 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.04 us (1.0%)
patch tree reduce : 801.00 ns (0.2%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 691.00 ns (0.2%)
LB compute : 396.60 us (96.4%)
LB move op cnt : 0
LB apply : 3.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.922499999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6497083403091223e-17,-1.1181289958605046e-17,1.7253486809534027e-17)
sum a = (1.8071001619903303e-16,-1.3720109312903177e-17,-6.099157764425954e-17)
sum e = 4.144510458627988
sum de = -1.179069862577986e-18
Info: CFL hydro = 0.011275876217965834 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011275876217965834 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1629e+04 | 800 | 1 | 3.699e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1097.2858984858624 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.361328057846805, dt = 0.011275876217965834 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.97 us (1.0%)
patch tree reduce : 612.00 ns (0.1%)
gen split merge : 1122.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 396.62 us (96.3%)
LB move op cnt : 0
LB apply : 3.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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: 3.922499999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8667436939597412e-17,-1.0663041288052152e-17,1.6664091283919684e-17)
sum a = (1.504898278259834e-16,2.06011335687413e-16,-5.570723859885317e-17)
sum e = 4.144510460057545
sum de = 1.3010426069826053e-18
Info: CFL hydro = 0.011279980269134173 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011279980269134173 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1289e+04 | 800 | 1 | 3.758e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1080.2150891228478 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.37260393406477, dt = 0.011279980269134173 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.92 us (1.2%)
patch tree reduce : 1322.00 ns (0.3%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 394.51 us (95.6%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (74.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.922499999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0774881677944002e-17,-7.703332117495747e-18,1.5740679996648415e-17)
sum a = (-2.0103255366163894e-16,-6.996656618169576e-17,1.5936895533765263e-18)
sum e = 4.144510463126088
sum de = 2.168404344971009e-19
Info: CFL hydro = 0.011285606245221269 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011285606245221269 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1300e+04 | 800 | 1 | 3.756e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1081.1985575815527 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.383883914333904, dt = 0.011285606245221269 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.70 us (1.2%)
patch tree reduce : 1132.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1213.00 ns (0.3%)
LB compute : 378.18 us (95.5%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 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: 3.922499999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6143595870575375e-17,-1.0408410438358535e-17,1.7099959385454054e-17)
sum a = (2.4049134839298408e-17,1.6123225402599886e-16,1.4699090038548756e-16)
sum e = 4.1445104676758735
sum de = 2.0803129184565616e-18
Info: CFL hydro = 0.01128817616863174 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01128817616863174 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1493e+04 | 800 | 1 | 3.722e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1091.509486598094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.395169520579126, dt = 0.01128817616863174 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (1.1%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 400.58 us (95.8%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.9249999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8373862548185946e-17,-6.852565513813541e-18,1.926656835064122e-17)
sum a = (-7.324980631421582e-17,-5.2999164620935153e-17,-6.135330323367724e-17)
sum e = 4.144510473354175
sum de = 1.8295911660692887e-19
Info: CFL hydro = 0.011291874435934199 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011291874435934199 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1456e+04 | 800 | 1 | 3.728e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1089.9154172523279 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.406457696747758, dt = 0.011291874435934199 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.2%)
patch tree reduce : 1392.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 423.38 us (95.8%)
LB move op cnt : 0
LB apply : 3.70 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (73.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9249999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.672325551076026e-17,-9.064858249092797e-18,1.7191701382770135e-17)
sum a = (-1.5169408196218147e-16,5.215438933136339e-17,-8.140698047557726e-17)
sum e = 4.144510479917507
sum de = -9.622294280808852e-19
Info: CFL hydro = 0.011296281156258565 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011296281156258565 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1402e+04 | 800 | 1 | 3.738e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1087.5334910507838 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.417749571183691, dt = 0.011296281156258565 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 us (1.0%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 418.32 us (95.9%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.9249999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.423686015492846e-17,-7.555047093262405e-18,1.5671405427246475e-17)
sum a = (7.253084862096326e-17,4.009986534116199e-17,1.1965253409955866e-16)
sum e = 4.144510486966499
sum de = -8.504210790433175e-19
Info: CFL hydro = 0.01130162193417005 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01130162193417005 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1032e+04 | 800 | 1 | 3.804e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1069.129717757811 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.42904585233995, dt = 0.01130162193417005 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.74 us (1.2%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 378.98 us (93.1%)
LB move op cnt : 0
LB apply : 10.30 us (2.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.9249999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6634883627631296e-17,-7.315394528844882e-18,1.8288486322112205e-17)
sum a = (1.7368220474748917e-16,-1.3425935790080667e-16,8.916872790564978e-17)
sum e = 4.144510494084577
sum de = -1.5517643593698782e-18
Info: CFL hydro = 0.011307860512937015 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011307860512937015 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0335e+04 | 800 | 1 | 3.934e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1034.1768764397805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.44034747427412, dt = 0.011307860512937015 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.80 us (1.1%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 404.94 us (95.7%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.9249999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8946033045732783e-17,-9.271558585902911e-18,1.9410359889291733e-17)
sum a = (-1.5548658379408876e-16,-4.1549763355888005e-17,-1.0364374279646815e-16)
sum e = 4.144510500850344
sum de = 8.809142651444724e-19
Info: CFL hydro = 0.011314884646929374 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011314884646929374 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1333e+04 | 800 | 1 | 3.750e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1085.5614699904436 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.451655334787057, dt = 0.011314884646929374 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.65 us (1.1%)
patch tree reduce : 1273.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 403.05 us (95.7%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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: 3.9249999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5707727769041005e-17,-9.70892451596489e-18,1.69973581313128e-17)
sum a = (-4.312997245251605e-17,-9.92760748099588e-18,5.5719221227074036e-18)
sum e = 4.14451050686877
sum de = -2.3022355506371883e-18
Info: CFL hydro = 0.011322572051223589 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011322572051223589 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1492e+04 | 800 | 1 | 3.722e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1094.3038084988502 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.462970219433986, dt = 0.011322572051223589 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (1.0%)
patch tree reduce : 591.00 ns (0.2%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.2%)
LB compute : 368.44 us (96.1%)
LB move op cnt : 0
LB apply : 3.09 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.9249999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5342257608304286e-17,-9.696941887744014e-18,1.721004978223335e-17)
sum a = (8.216694122477314e-17,-1.0845476802714991e-16,-2.0862953995367442e-16)
sum e = 4.144510511801518
sum de = -2.0032329202564203e-18
Info: CFL hydro = 0.011330792563599928 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011330792563599928 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1121e+04 | 800 | 1 | 3.788e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1076.1555426635737 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.47429279148521, dt = 0.011330792563599928 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (1.1%)
patch tree reduce : 1874.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 427.19 us (95.6%)
LB move op cnt : 0
LB apply : 3.79 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 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: 3.9249999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7325382578859283e-17,-1.1152831216580464e-17,1.4119280615511115e-17)
sum a = (4.2656658637791436e-17,4.676220663196912e-17,-8.716163767865302e-17)
sum e = 4.144510515389126
sum de = -1.9043418236644807e-18
Info: CFL hydro = 0.011339410505389377 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011339410505389377 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1274e+04 | 800 | 1 | 3.760e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1084.7371036513562 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.48562358404881, dt = 0.011339410505389377 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.1%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 423.96 us (95.8%)
LB move op cnt : 0
LB apply : 3.57 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7571026457387247e-17,-9.906637881609346e-18,1.3553850346338521e-17)
sum a = (-4.641770607061894e-17,-6.692597427064844e-17,-3.9542673128891254e-19)
sum e = 4.144510517469409
sum de = 2.625802136488331e-18
Info: CFL hydro = 0.01134574698937386 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01134574698937386 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0899e+04 | 800 | 1 | 3.828e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1066.39589031188 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.496962994554199, dt = 0.0030370054458010998 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (1.1%)
patch tree reduce : 1262.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 397.92 us (95.7%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (72.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9224999999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.711568658499395e-17,-1.1161818187746121e-17,1.4139501300633842e-17)
sum a = (-8.515754310871149e-17,2.431874397426812e-17,9.844927346271834e-17)
sum e = 4.1445103685526785
sum de = -9.893344823930228e-19
Info: CFL hydro = 0.011344082082363512 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011344082082363512 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1182e+04 | 800 | 1 | 3.777e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 289.4814183400113 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 1650 [SPH][rank=0]
Info: time since start : 934.6439787910001 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15103068821847818 max=0.15129181599238878 delta=0.00026112777391060216
Number of particle pairs: 319600
Distance min=0.141551 max=2.283647 mean=0.932974
---------------- t = 13.5, dt = 0.011344082082363512 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.14 us (1.4%)
patch tree reduce : 1353.00 ns (0.2%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.1%)
LB compute : 713.23 us (96.7%)
LB move op cnt : 0
LB apply : 4.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.56 us (74.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: 3.9225
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5932402048182434e-17,-1.0275103699401287e-17,1.597583907548311e-17)
sum a = (2.6211400101755504e-16,1.0404815649892271e-16,1.4591246384560872e-16)
sum e = 4.1445105167827405
sum de = -2.574980159653073e-19
Info: CFL hydro = 0.011337936903855638 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011337936903855638 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7888e+04 | 800 | 1 | 4.472e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 913.1474150642618 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.511344082082363, dt = 0.011337936903855638 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.2%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 402.53 us (95.6%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.9225
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0696994594508307e-17,-8.87014054050356e-18,1.7172604069043114e-17)
sum a = (5.366420048719378e-17,2.497329504083348e-17,-2.5954372726417714e-17)
sum e = 4.144510515487768
sum de = 1.1587410718438829e-18
Info: CFL hydro = 0.011328430699937901 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011328430699937901 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0610e+04 | 800 | 1 | 3.882e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1051.550955448014 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.522682018986218, dt = 0.011328430699937901 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.79 us (1.1%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 404.08 us (95.7%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.9225
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0487298600642975e-17,-9.421341438663863e-18,1.5268864010451417e-17)
sum a = (1.0005494564431575e-17,4.6878662799990765e-17,6.925959111666407e-18)
sum e = 4.144510512270879
sum de = 1.9312351197398048e-18
Info: CFL hydro = 0.011319170751693669 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011319170751693669 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0388e+04 | 800 | 1 | 3.924e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1039.3199508284847 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.534010449686157, dt = 0.011319170751693669 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.48 us (1.1%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 405.85 us (95.9%)
LB move op cnt : 0
LB apply : 3.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.925
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.000499781475271e-17,-8.576566149092096e-18,1.6700788082846116e-17)
sum a = (-2.9597091705564058e-18,-2.3957767299114226e-18,1.3700937107749776e-16)
sum e = 4.144510508095486
sum de = -1.6466320494623599e-18
Info: CFL hydro = 0.011310632512453718 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011310632512453718 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0005e+04 | 800 | 1 | 3.999e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1018.9592697528018 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.545329620437851, dt = 0.011310632512453718 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.58 us (1.2%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 378.53 us (95.5%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.925
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9999006500642272e-17,-8.705379402466513e-18,1.8689904367511556e-17)
sum a = (-3.9279055308031976e-17,-1.2229769927931708e-17,3.754157421600494e-17)
sum e = 4.1445105032795215
sum de = 4.404571325722362e-19
Info: CFL hydro = 0.011302487544617499 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011302487544617499 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1059e+04 | 800 | 1 | 3.799e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1071.8828145809973 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.556640252950304, dt = 0.011302487544617499 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (1.1%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 392.66 us (95.8%)
LB move op cnt : 0
LB apply : 3.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.925
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9080837613217638e-17,-9.127767047252398e-18,1.8626995569351954e-17)
sum a = (2.5416352719300376e-16,1.629218046051424e-16,-1.2641672773024325e-17)
sum e = 4.144510498177163
sum de = 3.5914196963582334e-19
Info: CFL hydro = 0.011295201112870405 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011295201112870405 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1130e+04 | 800 | 1 | 3.786e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1074.7073700755432 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.56794274049492, dt = 0.011295201112870405 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.76 us (1.2%)
patch tree reduce : 1412.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 393.21 us (95.7%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.9262499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3894858500954627e-17,-5.853513885897993e-18,1.8746821851560716e-17)
sum a = (-6.451447034119712e-17,6.745620556942222e-17,-1.1134258142838108e-16)
sum e = 4.144510493166793
sum de = -2.981555974335137e-19
Info: CFL hydro = 0.01128902356737104 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01128902356737104 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0735e+04 | 800 | 1 | 3.858e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1053.9170496968288 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.579237941607792, dt = 0.01128902356737104 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.64 us (1.1%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.3%)
LB compute : 399.70 us (95.7%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.9262499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.157547102595129e-17,-5.949374911665002e-18,1.6796649108613125e-17)
sum a = (1.6375459726649329e-16,-5.337062609578231e-17,2.7092722407400946e-17)
sum e = 4.144510488596523
sum de = 5.759824041329242e-19
Info: CFL hydro = 0.011284034779886725 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011284034779886725 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0555e+04 | 800 | 1 | 3.892e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.1957206044037 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.590526965175163, dt = 0.011284034779886725 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.4%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 381.71 us (95.2%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.9262499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4580863966599787e-17,-7.021820137433416e-18,1.789305959082329e-17)
sum a = (8.331521401975178e-17,-8.03135656504223e-17,9.717911487130547e-18)
sum e = 4.144510484764668
sum de = -3.7947076036992655e-19
Info: CFL hydro = 0.011280296539151878 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011280296539151878 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0524e+04 | 800 | 1 | 3.898e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1042.1590018633835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.60181099995505, dt = 0.011280296539151878 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.2%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 408.59 us (95.8%)
LB move op cnt : 0
LB apply : 3.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (73.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9262499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4832499159238183e-17,-8.076291420870516e-18,1.7323884750331674e-17)
sum a = (-1.1358333290568491e-16,5.499427221971103e-17,-3.1634138503113003e-18)
sum e = 4.144510481908997
sum de = -1.2197274440461925e-18
Info: CFL hydro = 0.011277852665776491 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011277852665776491 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0179e+04 | 800 | 1 | 3.964e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1024.336574633342 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.613091296494202, dt = 0.011277852665776491 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.2%)
patch tree reduce : 1332.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1353.00 ns (0.3%)
LB compute : 413.75 us (95.7%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9262499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2635184709235023e-17,-6.910980826390312e-18,1.709921047119025e-17)
sum a = (5.26756336589715e-17,-1.115822339927986e-16,-2.6134112149730854e-17)
sum e = 4.144510480190311
sum de = -1.1655173354219173e-18
Info: CFL hydro = 0.011276728388113227 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011276728388113227 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0710e+04 | 800 | 1 | 3.863e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1051.0167275914591 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.624369149159978, dt = 0.011276728388113227 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.73 us (1.2%)
patch tree reduce : 1913.00 ns (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 386.63 us (95.5%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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: 3.9262499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4173454607089997e-17,-8.739829458601532e-18,1.691048407671145e-17)
sum a = (2.030216699463044e-16,9.727497589707249e-17,-5.829548629456241e-17)
sum e = 4.144510479687872
sum de = 4.2690460541616737e-19
Info: CFL hydro = 0.01127692973307198 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01127692973307198 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9855e+04 | 800 | 1 | 4.029e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1007.5266313872365 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.635645877548091, dt = 0.01127692973307198 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.74 us (1.1%)
patch tree reduce : 1352.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 401.25 us (95.6%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.9262499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7146269777262986e-17,-6.626393406144504e-18,1.5891960677936976e-17)
sum a = (1.0832295911672028e-16,-1.786729694014841e-16,9.140348806884318e-17)
sum e = 4.144510480397129
sum de = -1.1316360175317453e-18
Info: CFL hydro = 0.011278444121508252 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011278444121508252 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0711e+04 | 800 | 1 | 3.863e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1051.0222980290432 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.646922807281163, dt = 0.011278444121508252 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.73 us (1.2%)
patch tree reduce : 1223.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 393.12 us (95.7%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.9262499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7795110372566836e-17,-1.0236160157683441e-17,1.8030859815363367e-17)
sum a = (1.6820015233643834e-16,-2.3222333492057953e-17,-1.0042640711916291e-16)
sum e = 4.1445104822397605
sum de = -6.640738306473715e-19
Info: CFL hydro = 0.011281240588817892 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011281240588817892 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0478e+04 | 800 | 1 | 3.907e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1039.3335275209806 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.658201251402671, dt = 0.011281240588817892 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.3%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 380.56 us (95.5%)
LB move op cnt : 0
LB apply : 3.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 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: 3.9262499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.023956652962557e-17,-9.4273327527743e-18,1.6020773931311395e-17)
sum a = (1.0785563661610611e-16,4.2610225953435545e-17,-9.21164544479853e-18)
sum e = 4.144510485070721
sum de = 7.995991022080595e-19
Info: CFL hydro = 0.011285270620999262 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011285270620999262 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0272e+04 | 800 | 1 | 3.946e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1029.1108720379073 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.66948249199149, dt = 0.011285270620999262 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.2%)
patch tree reduce : 1443.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 420.85 us (95.5%)
LB move op cnt : 0
LB apply : 4.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (72.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9262499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.097771515088813e-17,-8.976486365963836e-18,1.6556996544195604e-17)
sum a = (4.8937053654058145e-17,-8.022369593876574e-17,-7.592642589305403e-17)
sum e = 4.144510488697123
sum de = -1.4230153513872246e-18
Info: CFL hydro = 0.011289553046209377 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011289553046209377 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0013e+04 | 800 | 1 | 3.997e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1016.3354058462811 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.680767762612488, dt = 0.011289553046209377 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.3%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 423.76 us (95.7%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.9262499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.145889256538269e-17,-1.0306558098481088e-17,1.4642771685910638e-17)
sum a = (6.251936274242124e-17,-1.2484700343330848e-16,1.5753785996265e-17)
sum e = 4.144510492871755
sum de = 8.605854744103691e-19
Info: CFL hydro = 0.011291042219071522 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011291042219071522 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0446e+04 | 800 | 1 | 3.913e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1038.7135718359611 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.692057315658698, dt = 0.011291042219071522 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.2%)
patch tree reduce : 1452.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 438.16 us (95.8%)
LB move op cnt : 0
LB apply : 4.22 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.9262499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1759207185168397e-17,-1.2243250384680193e-17,1.616456546996191e-17)
sum a = (1.5359931984930077e-16,-1.7606075644933308e-16,1.256049046682789e-16)
sum e = 4.14451049727943
sum de = 2.947674656444965e-19
Info: CFL hydro = 0.01129305267416428 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01129305267416428 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0411e+04 | 800 | 1 | 3.920e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1037.0588005481861 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.703348357877768, dt = 0.01129305267416428 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (1.0%)
patch tree reduce : 1683.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 405.22 us (95.8%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9262499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.4117912659021484e-17,-1.4155977414437547e-17,1.7581511257080513e-17)
sum a = (-1.8376558639535643e-16,-2.1363827855000066e-16,8.318939642343259e-17)
sum e = 4.1445105017540325
sum de = -1.1722935989999517e-18
Info: CFL hydro = 0.011295520308616613 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011295520308616613 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9031e+04 | 800 | 1 | 4.204e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 967.1560714814852 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.714641410551932, dt = 0.011295520308616613 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.2%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1382.00 ns (0.3%)
LB compute : 423.78 us (95.7%)
LB move op cnt : 0
LB apply : 3.59 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 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: 3.9262499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0133314318448266e-17,-1.684457962149663e-17,1.8228573181007824e-17)
sum a = (1.0341008154616106e-16,-2.1052279521257285e-16,5.472466308474132e-17)
sum e = 4.144510506079924
sum de = 7.233661369551725e-19
Info: CFL hydro = 0.011298375006685282 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011298375006685282 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0579e+04 | 800 | 1 | 3.888e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1046.0151137364871 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.725936930860549, dt = 0.011298375006685282 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.46 us (1.0%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 408.18 us (96.0%)
LB move op cnt : 0
LB apply : 3.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 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: 3.9262499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.29878010349401e-17,-1.9130265954628753e-17,1.8644969511683268e-17)
sum a = (6.227971017800373e-17,4.222678185036751e-17,4.358081883932651e-17)
sum e = 4.144510510078482
sum de = -3.4643647542700884e-19
Info: CFL hydro = 0.011301537163466322 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011301537163466322 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0428e+04 | 800 | 1 | 3.916e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1038.6339035593141 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.737235305867234, dt = 0.011301537163466322 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.3%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 372.23 us (95.3%)
LB move op cnt : 0
LB apply : 3.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.9262499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.355510358977221e-17,-1.753058508714179e-17,1.9013435329475212e-17)
sum a = (-6.703681358169155e-17,-1.9099111121254476e-16,5.84512604614338e-17)
sum e = 4.144510513614736
sum de = 6.964728408798485e-19
Info: CFL hydro = 0.011304927790311527 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011304927790311527 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0659e+04 | 800 | 1 | 3.872e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1050.6337028560945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.748536843030701, dt = 0.011304927790311527 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.21 us (1.1%)
patch tree reduce : 1572.00 ns (0.4%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 364.74 us (95.5%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.9262499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.200073203524543e-17,-2.0687258709078846e-17,2.0370467975489434e-17)
sum a = (-2.22539873489584e-16,-7.538271413753177e-17,4.1328084733801794e-17)
sum e = 4.144510516610444
sum de = 1.5432940298973352e-18
Info: CFL hydro = 0.011308464931605514 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011308464931605514 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0870e+04 | 800 | 1 | 3.833e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1061.687052975817 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.759841770821012, dt = 0.011308464931605514 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (1.1%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 1142.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 371.83 us (95.6%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (73.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9262499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.879200887197394e-17,-2.1011538585306306e-17,2.010685015463016e-17)
sum a = (2.0504972977268768e-16,-1.9315996692052334e-16,4.994359442461174e-17)
sum e = 4.144510519038545
sum de = -1.7143946852427039e-18
Info: CFL hydro = 0.011312065794572139 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011312065794572139 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1099e+04 | 800 | 1 | 3.792e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1073.667750452238 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.771150235752618, dt = 0.011312065794572139 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.33 us (1.0%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 418.38 us (95.9%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.9262499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.341805227949594e-17,-2.3612517823500234e-17,2.1101408296962876e-17)
sum a = (2.0410609780029367e-16,3.4569882417227657e-17,-1.1532081399771193e-16)
sum e = 4.1445105209186
sum de = -3.6253010142484055e-19
Info: CFL hydro = 0.011315648614819608 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011315648614819608 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0803e+04 | 800 | 1 | 3.846e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1058.9699998850547 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.78246230154719, dt = 0.011315648614819608 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (1.1%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 368.02 us (95.5%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.554721553149287e-17,-2.196902547158069e-17,1.9136257268739192e-17)
sum a = (-7.531081836820651e-18,3.3395584851581797e-17,6.39752520712577e-17)
sum e = 4.144510522311974
sum de = 1.8058742435461683e-18
Info: CFL hydro = 0.011319134075205068 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011319134075205068 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0870e+04 | 800 | 1 | 3.833e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1062.723049762338 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.79377795016201, dt = 0.011319134075205068 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (1.0%)
patch tree reduce : 491.00 ns (0.1%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 681.00 ns (0.2%)
LB compute : 372.08 us (96.4%)
LB move op cnt : 0
LB apply : 2.85 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.4278929225739506e-17,-2.2104672567612326e-17,2.0046937013525778e-17)
sum a = (2.7302418401266278e-17,-4.706776365160147e-17,2.0922867136471824e-16)
sum e = 4.144510523308162
sum de = -5.319366908757006e-19
Info: CFL hydro = 0.011322446477035595 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011322446477035595 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0868e+04 | 800 | 1 | 3.834e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1062.9316806706622 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.805097084237214, dt = 0.011322446477035595 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.33 us (1.1%)
patch tree reduce : 992.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 374.49 us (95.7%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (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: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.5202340513010774e-17,-2.265606069433858e-17,2.3800495303715226e-17)
sum a = (6.075192507984202e-17,-2.294313825451154e-16,-6.075192507984202e-17)
sum e = 4.1445105240126665
sum de = -2.710505431213761e-20
Info: CFL hydro = 0.011325044246864658 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011325044246864658 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0360e+04 | 800 | 1 | 3.929e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1037.354991532672 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.81641953071425, dt = 0.011325044246864658 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (1.0%)
patch tree reduce : 1403.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 398.46 us (95.9%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.573060591184206e-17,-2.6597315621894097e-17,2.1769439820276722e-17)
sum a = (-1.361346392173738e-16,-5.1441422952221256e-17,-7.417246868722328e-18)
sum e = 4.144510524519961
sum de = 5.963111948670274e-19
Info: CFL hydro = 0.011326669770913206 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011326669770913206 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1083e+04 | 800 | 1 | 3.795e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1074.4333042324618 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.827744574961114, dt = 0.011326669770913206 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.1%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 388.49 us (95.7%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.329111131178103e-17,-2.6271537917139028e-17,2.112986703898746e-17)
sum a = (5.821160789701627e-17,-4.332918364668811e-17,-8.030757433631187e-17)
sum e = 4.14451052491838
sum de = -1.463672932855431e-18
Info: CFL hydro = 0.011327961141626413 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011327961141626413 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0851e+04 | 800 | 1 | 3.837e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1062.7525877491303 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.839071244732027, dt = 0.011327961141626413 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (1.1%)
patch tree reduce : 912.00 ns (0.2%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 391.25 us (95.9%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.506117017428358e-17,-2.663363796368863e-17,1.9711423423341244e-17)
sum a = (-3.6858564407415e-17,5.27385424571311e-17,6.578462893261e-17)
sum e = 4.144510525299026
sum de = 5.759824041329242e-19
Info: CFL hydro = 0.011322359497450923 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011322359497450923 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0602e+04 | 800 | 1 | 3.883e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1050.190033158868 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.850399205873654, dt = 0.011322359497450923 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.69 us (1.2%)
patch tree reduce : 1282.00 ns (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 373.39 us (95.4%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (73.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.409376017401378e-17,-2.5642824392674933e-17,2.1785915934080427e-17)
sum a = (2.539358572568071e-16,1.419716769894681e-16,3.7289939023366536e-17)
sum e = 4.144510525541073
sum de = 3.5236570605778894e-19
Info: CFL hydro = 0.011310288218298528 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011310288218298528 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0948e+04 | 800 | 1 | 3.819e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1067.3363830823716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.861721565371104, dt = 0.011310288218298528 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 20.96 us (4.9%)
patch tree reduce : 1012.00 ns (0.2%)
gen split merge : 1032.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1183.00 ns (0.3%)
LB compute : 396.84 us (92.3%)
LB move op cnt : 0
LB apply : 3.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.853313670128244e-17,-2.3158301322502647e-17,2.2292181976412444e-17)
sum a = (1.8139302600762295e-16,-3.4963624091423005e-17,1.3995709761983327e-17)
sum e = 4.144510525664861
sum de = -2.3513634615779377e-18
Info: CFL hydro = 0.011299695503195258 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011299695503195258 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0890e+04 | 800 | 1 | 3.830e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1063.2370074415476 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.873031853589403, dt = 0.011299695503195258 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (1.1%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 382.50 us (95.8%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.0282600421530356e-17,-2.4516082882780674e-17,2.2349099460461604e-17)
sum a = (1.2572173529343243e-16,-1.382286034989719e-16,2.905787343562463e-17)
sum e = 4.144510525849783
sum de = -7.182839392716467e-19
Info: CFL hydro = 0.011290669515808796 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011290669515808796 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0717e+04 | 800 | 1 | 3.862e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1053.4255434792374 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.884331549092598, dt = 0.011290669515808796 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (1.2%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 661.00 ns (0.2%)
LB compute : 394.25 us (95.7%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (73.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.0887348689552695e-17,-2.6754213160161194e-17,2.2937746071812147e-17)
sum a = (-5.743273706265933e-17,1.1933499445170545e-16,-6.003296738658945e-18)
sum e = 4.144510526049953
sum de = -1.8973538018496328e-19
Info: CFL hydro = 0.011283272507709535 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011283272507709535 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0645e+04 | 800 | 1 | 3.875e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.9080846191762 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.895622218608407, dt = 0.011283272507709535 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (1.0%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 400.80 us (96.1%)
LB move op cnt : 0
LB apply : 3.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.930751405005656e-17,-2.392200664301755e-17,2.242548871536969e-17)
sum a = (-1.2419994150938116e-17,-7.708424734489619e-17,-8.057119215717115e-17)
sum e = 4.1445105262014
sum de = -1.9312351197398048e-18
Info: CFL hydro = 0.01127754095670943 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01127754095670943 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0610e+04 | 800 | 1 | 3.882e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1046.4479862247936 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.906905491116117, dt = 0.01127754095670943 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.32 us (1.1%)
patch tree reduce : 1183.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 388.36 us (95.9%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9807788778278134e-17,-2.5735502532820773e-17,2.0880478589140473e-17)
sum a = (-4.66483716638708e-17,-5.4964315649158843e-17,1.0436869180383115e-17)
sum e = 4.144510526231877
sum de = 1.7753810574450135e-18
Info: CFL hydro = 0.011273485761767215 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011273485761767215 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0504e+04 | 800 | 1 | 3.902e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.5341262033432 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.918183032072827, dt = 0.011273485761767215 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.21 us (1.0%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1051.00 ns (0.3%)
LB compute : 396.81 us (95.9%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 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: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.8942043889319837e-17,-2.6132427092637294e-17,2.1987373871043907e-17)
sum a = (-1.0937743040015738e-16,-7.559840144550755e-17,-6.350792957064352e-19)
sum e = 4.144510526070133
sum de = 1.294266343404571e-18
Info: CFL hydro = 0.011271093242153822 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011271093242153822 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0734e+04 | 800 | 1 | 3.858e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1051.825326435863 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.929456517834595, dt = 0.011271093242153822 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.41 us (1.0%)
patch tree reduce : 1552.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 408.58 us (96.0%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.738580004913355e-17,-2.791334521196501e-17,2.15926960540188e-17)
sum a = (-9.694245796394317e-17,-5.993710636082244e-17,-1.2282193926398041e-17)
sum e = 4.144510525659605
sum de = 1.565316886525947e-18
Info: CFL hydro = 0.011269377331087327 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011269377331087327 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0922e+04 | 800 | 1 | 3.824e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1061.1611922190461 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.940727611076749, dt = 0.011269377331087327 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (1.1%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 621.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.1%)
LB compute : 399.54 us (96.2%)
LB move op cnt : 0
LB apply : 3.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.662714989989933e-17,-2.7736601445707088e-17,2.1645494509617035e-17)
sum a = (1.753058508714179e-17,4.537821307245793e-17,7.148835996574703e-17)
sum e = 4.144510524944145
sum de = -1.9752808329970284e-18
Info: CFL hydro = 0.011268065371446282 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011268065371446282 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0928e+04 | 800 | 1 | 3.823e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1061.3035939117585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.951996988407837, dt = 0.011268065371446282 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (0.9%)
patch tree reduce : 912.00 ns (0.2%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 712.00 ns (0.2%)
LB compute : 387.49 us (96.4%)
LB move op cnt : 0
LB apply : 3.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 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: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7423245762323785e-17,-2.723819900314502e-17,2.334927445977286e-17)
sum a = (6.470843913552255e-17,6.815718932034347e-17,2.741924902641982e-17)
sum e = 4.144510523917517
sum de = -5.082197683525802e-20
Info: CFL hydro = 0.011268301406914948 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011268301406914948 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0936e+04 | 800 | 1 | 3.821e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1061.5905524622497 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.963265053779283, dt = 0.011268301406914948 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (0.9%)
patch tree reduce : 871.00 ns (0.2%)
gen split merge : 662.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 388.34 us (96.4%)
LB move op cnt : 0
LB apply : 3.05 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.830771350787721e-17,-2.598695049689322e-17,2.292276778653605e-17)
sum a = (-4.0441370245456965e-17,-8.421391113631749e-17,-2.791652809758618e-17)
sum e = 4.144510522643692
sum de = -5.082197683525802e-20
Info: CFL hydro = 0.011270020343981455 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011270020343981455 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1550e+04 | 800 | 1 | 3.712e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1092.7604205529678 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.974533355186198, dt = 0.011270020343981455 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (1.0%)
patch tree reduce : 1142.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 732.00 ns (0.2%)
LB compute : 392.19 us (96.2%)
LB move op cnt : 0
LB apply : 3.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.718733776922529e-17,-2.7807186615070686e-17,2.1724504964448437e-17)
sum a = (1.6315247019839428e-16,-4.6300875445465394e-17,-3.131304151250671e-17)
sum e = 4.144510521196057
sum de = -2.210755992333724e-18
Info: CFL hydro = 0.01127313701316605 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01127313701316605 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1034e+04 | 800 | 1 | 3.803e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1066.719044750593 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.98580337553018, dt = 0.01127313701316605 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.56 us (1.1%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 692.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 405.38 us (96.1%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9626551526437385e-17,-2.8317197228721726e-17,2.1982131471197273e-17)
sum a = (-2.366569073623037e-18,-2.6697295676112034e-17,-1.3122775296092502e-16)
sum e = 4.144510519678386
sum de = -1.3552527156068805e-19
Info: CFL hydro = 0.011277548797701516 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011277548797701516 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0231e+04 | 800 | 1 | 3.954e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1026.3150104370088 (tsim/hr) [sph::Model][rank=0]
---------------- t = 13.997076512543346, dt = 0.0029234874566537172 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.77 us (1.0%)
patch tree reduce : 1773.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 463.36 us (96.0%)
LB move op cnt : 0
LB apply : 4.30 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (74.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.895103086048549e-17,-2.7909038954948135e-17,2.0963608072422803e-17)
sum a = (1.1116883331917836e-17,-2.019671986628673e-16,2.1053777349784894e-16)
sum e = 4.144510399660907
sum de = -2.8807590536118755e-18
Info: CFL hydro = 0.011279433696900387 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011279433696900387 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0185e+04 | 800 | 1 | 3.963e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 265.542275120482 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 1695 [SPH][rank=0]
Info: time since start : 937.375163217 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.151048676758403 max=0.15127477098073028 delta=0.00022609422232727772
Number of particle pairs: 319600
Distance min=0.142221 max=2.281168 mean=0.932673
---------------- t = 14, dt = 0.011279433696900387 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.14 us (1.5%)
patch tree reduce : 1203.00 ns (0.2%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.2%)
LB compute : 588.97 us (96.3%)
LB move op cnt : 0
LB apply : 4.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.950747415849243e-17,-2.9916878096208693e-17,2.3230946006091708e-17)
sum a = (1.396575319143114e-16,1.6787662137447468e-17,1.9462783887758066e-17)
sum e = 4.144510517645885
sum de = 6.511565782017434e-19
Info: CFL hydro = 0.011284759495071078 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011284759495071078 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8259e+04 | 800 | 1 | 4.382e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 926.757243709164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.0112794336969, dt = 0.011284759495071078 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (1.1%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 400.34 us (95.8%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.14067207315013e-17,-2.95873558201346e-17,2.2698093507394622e-17)
sum a = (-1.559539062947029e-17,-3.9446812103124245e-17,-1.8779174947757082e-16)
sum e = 4.144510516651682
sum de = 4.438452643612534e-19
Info: CFL hydro = 0.011291638400057662 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011291638400057662 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0777e+04 | 800 | 1 | 3.850e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1055.0808613185748 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.022564193191972, dt = 0.011291638400057662 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.28 us (1.1%)
patch tree reduce : 1263.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 389.24 us (95.9%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.076864577873964e-17,-2.997304666599405e-17,1.9279674350257802e-17)
sum a = (-1.1071349344678507e-16,1.4025666332535518e-16,-8.107446254244794e-17)
sum e = 4.1445105158878635
sum de = -7.962109704190423e-19
Info: CFL hydro = 0.011299374556901902 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011299374556901902 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0946e+04 | 800 | 1 | 3.819e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1064.2987902939576 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.03385583159203, dt = 0.011299374556901902 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (1.1%)
patch tree reduce : 1282.00 ns (0.3%)
gen split merge : 1022.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 401.11 us (95.8%)
LB move op cnt : 0
LB apply : 3.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9262499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.853987692965668e-17,-2.794648466813837e-17,2.0291831977789934e-17)
sum a = (-1.3396578350939522e-17,-7.783915292281139e-17,2.4085082723961036e-17)
sum e = 4.144510515714972
sum de = -5.404070203482436e-19
Info: CFL hydro = 0.011299980996060922 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011299980996060922 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0532e+04 | 800 | 1 | 3.896e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.9857600684975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.045155206148932, dt = 0.011299980996060922 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.3%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 391.42 us (95.4%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9262499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.927456182244915e-17,-2.9460789309551596e-17,2.066554019542851e-17)
sum a = (-2.1556748169356172e-17,-6.093166450315516e-17,8.575967017681051e-17)
sum e = 4.144510516059881
sum de = -1.960034239946451e-18
Info: CFL hydro = 0.011297900049763578 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011297900049763578 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0704e+04 | 800 | 1 | 3.864e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1052.8042135898856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.056455187144993, dt = 0.011297900049763578 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.73 us (1.2%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 391.18 us (95.5%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.903266251524021e-17,-3.027560802857117e-17,2.126542052073612e-17)
sum a = (-2.66134172785659e-17,-8.71736203068739e-17,-2.9273560743600404e-17)
sum e = 4.144510517100295
sum de = -1.4907779871675686e-18
Info: CFL hydro = 0.01129607008427788 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01129607008427788 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0165e+04 | 800 | 1 | 3.967e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1025.1780980437154 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.067753087194756, dt = 0.01129607008427788 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.62 us (1.1%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 399.58 us (95.7%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.8879603162575115e-17,-3.179590398409483e-17,1.9975041244200522e-17)
sum a = (9.258976826270992e-17,-1.1354738502102227e-16,1.5102904609592283e-16)
sum e = 4.144510518930022
sum de = 1.2468324983583301e-18
Info: CFL hydro = 0.01129379203779166 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01129379203779166 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0769e+04 | 800 | 1 | 3.852e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1055.7312466872077 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.079049157279034, dt = 0.01129379203779166 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (1.1%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 372.54 us (95.5%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9941563588650264e-17,-3.2992668977654837e-17,2.373459084850041e-17)
sum a = (2.1269165092055144e-17,7.384893772525964e-17,-1.108752589277669e-16)
sum e = 4.144510521506821
sum de = 9.215718466126788e-19
Info: CFL hydro = 0.011291437922798067 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011291437922798067 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0618e+04 | 800 | 1 | 3.880e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.8300543124828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.090342949316826, dt = 0.011291437922798067 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.19 us (1.0%)
patch tree reduce : 1362.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 385.79 us (95.8%)
LB move op cnt : 0
LB apply : 3.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 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: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.985066411988096e-17,-3.117879863071971e-17,1.960208194082575e-17)
sum a = (-2.0847376578680304e-16,9.529784224062792e-17,2.6146094777951732e-17)
sum e = 4.144510524753923
sum de = 2.710505431213761e-19
Info: CFL hydro = 0.011289457029164876 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011289457029164876 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0912e+04 | 800 | 1 | 3.826e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1062.5774752191076 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.101634387239624, dt = 0.011289457029164876 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.1%)
patch tree reduce : 1042.00 ns (0.3%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1123.00 ns (0.3%)
LB compute : 391.50 us (95.6%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (72.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.6383752764162784e-17,-2.89889733233546e-17,2.1952174900645084e-17)
sum a = (-4.552200461110844e-17,-3.10829376049527e-17,3.709821697183252e-17)
sum e = 4.144510528541657
sum de = -1.5924219408380846e-18
Info: CFL hydro = 0.011287887579014477 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011287887579014477 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1119e+04 | 800 | 1 | 3.788e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1072.9020107239805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.112923844268789, dt = 0.011287887579014477 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.2%)
patch tree reduce : 1724.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 368.60 us (95.3%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.689114217789051e-17,-3.0636584703725065e-17,2.1487848057086134e-17)
sum a = (-4.087514138705268e-16,-8.982178114368752e-17,1.0427283077806415e-16)
sum e = 4.14451053268423
sum de = 6.776263578034403e-21
Info: CFL hydro = 0.011286761207761663 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011286761207761663 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0804e+04 | 800 | 1 | 3.845e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1056.7646683821229 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.124211731847803, dt = 0.011286761207761663 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (1.1%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 374.24 us (95.6%)
LB move op cnt : 0
LB apply : 3.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.013705888976729e-17,-3.204454351967801e-17,2.2966204813836727e-17)
sum a = (-8.930652813018985e-17,-1.0450050071426079e-16,4.9332480385347054e-17)
sum e = 4.144510536961541
sum de = 1.179069862577986e-18
Info: CFL hydro = 0.01128610259035342 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01128610259035342 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0973e+04 | 800 | 1 | 3.814e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1065.221106583324 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.135498493055564, dt = 0.01128610259035342 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.70 us (1.1%)
patch tree reduce : 1273.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 405.80 us (95.8%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.038494951108666e-17,-3.3263775941152156e-17,2.438764408653816e-17)
sum a = (1.1964654278544822e-16,-6.79894325252512e-17,-3.153827747734599e-17)
sum e = 4.14451054113332
sum de = 2.5038293920837118e-18
Info: CFL hydro = 0.011285929357736268 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011285929357736268 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1137e+04 | 800 | 1 | 3.785e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1073.4787179518885 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.146784595645919, dt = 0.011285929357736268 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.04 us (1.0%)
patch tree reduce : 932.00 ns (0.2%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1103.00 ns (0.3%)
LB compute : 400.67 us (96.0%)
LB move op cnt : 0
LB apply : 4.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 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: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.308927891768565e-17,-3.3551359018453187e-17,2.3414055543591972e-17)
sum a = (6.277698924917009e-17,1.3516404633148282e-17,-1.2745921638545947e-16)
sum e = 4.144510544956057
sum de = 1.1180834903756764e-18
Info: CFL hydro = 0.011286251805102477 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011286251805102477 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0497e+04 | 800 | 1 | 3.903e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.9611535851996 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.158070525003655, dt = 0.011286251805102477 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (1.2%)
patch tree reduce : 1183.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 395.34 us (95.7%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.326078028409694e-17,-3.3149940973053836e-17,2.105647344113459e-17)
sum a = (-1.749463720247916e-17,6.573669841972648e-17,1.024874191731536e-16)
sum e = 4.144510548204144
sum de = 5.89534931288993e-19
Info: CFL hydro = 0.01128707302261116 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01128707302261116 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1013e+04 | 800 | 1 | 3.807e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1067.19424834829 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.169356776808758, dt = 0.01128707302261116 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (1.0%)
patch tree reduce : 922.00 ns (0.2%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.3%)
LB compute : 376.10 us (95.8%)
LB move op cnt : 0
LB apply : 3.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.9312499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3258533541305525e-17,-3.248790076385043e-17,2.3707629935003438e-17)
sum a = (2.034290793058142e-16,-2.9956570552190344e-17,2.444456157058732e-18)
sum e = 4.144510550686633
sum de = 2.371692252312041e-19
Info: CFL hydro = 0.011288389687591896 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011288389687591896 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1096e+04 | 800 | 1 | 3.792e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1071.4994128588742 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.18064384983137, dt = 0.011288389687591896 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.46 us (1.0%)
patch tree reduce : 972.00 ns (0.2%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 411.69 us (96.1%)
LB move op cnt : 0
LB apply : 3.57 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.93375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.6447410476586184e-17,-3.298218417796157e-17,2.3983230384083588e-17)
sum a = (2.5666789649116686e-17,1.380398771044931e-17,-1.2358283615600605e-16)
sum e = 4.144510552264154
sum de = -9.850993176567513e-19
Info: CFL hydro = 0.011290191749140805 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011290191749140805 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0917e+04 | 800 | 1 | 3.825e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1062.5260119996187 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.19193223951896, dt = 0.011290191749140805 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (1.1%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 383.87 us (95.7%)
LB move op cnt : 0
LB apply : 3.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.93375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.564831895710651e-17,-3.2673631501274005e-17,2.0765894706778345e-17)
sum a = (1.256857874087698e-16,9.857509105903754e-17,-1.793799444665158e-17)
sum e = 4.144510552864001
sum de = 1.8410261108572218e-18
Info: CFL hydro = 0.01129246305112895 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01129246305112895 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1057e+04 | 800 | 1 | 3.799e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1069.802036471852 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.2032224312681, dt = 0.01129246305112895 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.19 us (1.0%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 396.28 us (95.8%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.93375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7862109520913373e-17,-3.12087552012719e-17,2.038544626076553e-17)
sum a = (-9.976408606711057e-17,-9.533379012529055e-17,-8.204505542833891e-17)
sum e = 4.144510552483158
sum de = 1.5136478767434347e-18
Info: CFL hydro = 0.011295181942250824 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011295181942250824 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1106e+04 | 800 | 1 | 3.790e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1072.5383994186966 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.21451489431923, dt = 0.011295181942250824 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (1.2%)
patch tree reduce : 1203.00 ns (0.3%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 409.62 us (95.6%)
LB move op cnt : 0
LB apply : 3.64 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.93375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.584303666569575e-17,-3.3428537079189207e-17,2.0376459289599873e-17)
sum a = (5.793450961940851e-17,1.7907738310393864e-16,-9.9183209441247e-17)
sum e = 4.144510551193144
sum de = 8.12304596416874e-19
Info: CFL hydro = 0.011298321238428496 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011298321238428496 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0893e+04 | 800 | 1 | 3.829e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1061.9649794366223 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.22581007626148, dt = 0.011298321238428496 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (1.0%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 410.93 us (95.9%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (71.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.93375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.673724029667863e-17,-2.957013079206709e-17,1.8710873966898088e-17)
sum a = (-2.261091988708775e-16,7.742275659213594e-17,-4.902093205160428e-17)
sum e = 4.144510549135648
sum de = -5.72594272343907e-19
Info: CFL hydro = 0.011301848922278222 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011301848922278222 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1195e+04 | 800 | 1 | 3.775e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1077.5871659464974 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.237108397499908, dt = 0.011301848922278222 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.0%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 402.62 us (95.9%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.93375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.302562120526224e-17,-2.974687455832501e-17,1.8986474415978238e-17)
sum a = (-7.402867714857278e-17,-6.02306807522339e-17,-2.9364928283784583e-18)
sum e = 4.1445105465155985
sum de = 4.506215279392878e-19
Info: CFL hydro = 0.01130572911691045 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01130572911691045 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0520e+04 | 800 | 1 | 3.899e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.6119739602825 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.248410246422186, dt = 0.01130572911691045 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.65 us (1.2%)
patch tree reduce : 1393.00 ns (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 378.67 us (95.6%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.93375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2606978131795386e-17,-3.073244572949207e-17,1.9193174752788352e-17)
sum a = (-3.0387945168141887e-17,-9.132634989967128e-17,-2.1908737873344408e-17)
sum e = 4.1445105435903296
sum de = 7.250602028496811e-19
Info: CFL hydro = 0.011309923221675277 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011309923221675277 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1099e+04 | 800 | 1 | 3.792e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1073.4110877411115 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.259715975539097, dt = 0.011309923221675277 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (1.1%)
patch tree reduce : 1233.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 411.07 us (95.9%)
LB move op cnt : 0
LB apply : 3.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.93375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2661648873053133e-17,-3.2125426260168924e-17,1.845324746014925e-17)
sum a = (-1.5715216911679055e-16,-8.69534395133153e-17,1.285017050406757e-16)
sum e = 4.144510540646346
sum de = -8.809142651444724e-19
Info: CFL hydro = 0.011314389023186273 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011314389023186273 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0698e+04 | 800 | 1 | 3.865e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1053.4227207931417 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.271025898760772, dt = 0.011314389023186273 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (1.0%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 419.85 us (96.1%)
LB move op cnt : 0
LB apply : 3.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.93375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.017750026001275e-17,-3.323681502765519e-17,2.0496285571808632e-17)
sum a = (-1.2989168991429733e-17,-3.7960966203735604e-17,2.5235415033165146e-17)
sum e = 4.144510537978965
sum de = 1.3417001884508117e-18
Info: CFL hydro = 0.011314768099378302 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011314768099378302 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0578e+04 | 800 | 1 | 3.888e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.7337369541779 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.282340287783958, dt = 0.011314768099378302 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.54 us (1.1%)
patch tree reduce : 1032.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 394.02 us (95.7%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.93375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0968728179722475e-17,-3.33176977681461e-17,2.112836921045985e-17)
sum a = (1.1402669014985732e-16,1.0471918367929179e-16,4.500675159761077e-17)
sum e = 4.144510535776535
sum de = 3.1848438816761693e-19
Info: CFL hydro = 0.011315663890011344 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011315663890011344 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0797e+04 | 800 | 1 | 3.847e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1058.9005322209048 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.293655055883336, dt = 0.011315663890011344 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.22 us (1.1%)
patch tree reduce : 1442.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 370.99 us (95.5%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 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: 3.93375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.266988692995498e-17,-3.1008046178572224e-17,2.0807833905551412e-17)
sum a = (5.202857173504419e-17,-2.3911334614758332e-17,1.752459377303135e-17)
sum e = 4.1445105343888
sum de = 8.300922883092143e-19
Info: CFL hydro = 0.011317476160073815 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011317476160073815 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0447e+04 | 800 | 1 | 3.913e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.174403734023 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.304970719773348, dt = 0.011317476160073815 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.41 us (1.0%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 417.74 us (96.1%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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: 3.93375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.310238491730223e-17,-3.2559796533175685e-17,2.082281219082751e-17)
sum a = (-8.282392626269586e-17,-1.070048700124239e-16,3.3443515364465297e-17)
sum e = 4.144510534011744
sum de = 2.642742795433417e-19
Info: CFL hydro = 0.011320199573044098 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011320199573044098 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1138e+04 | 800 | 1 | 3.785e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1076.5092358431784 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.31628819593342, dt = 0.011320199573044098 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.34 us (1.1%)
patch tree reduce : 1393.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 379.20 us (95.7%)
LB move op cnt : 0
LB apply : 3.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.93375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.169948127262997e-17,-3.4135512144220896e-17,2.1955170557700302e-17)
sum a = (-2.507724434064958e-16,7.279446644182253e-18,-1.950771874358635e-17)
sum e = 4.144510534761579
sum de = -1.0232158002831948e-18
Info: CFL hydro = 0.011323815019043027 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011323815019043027 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0710e+04 | 800 | 1 | 3.863e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1054.9874957491693 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.327608395506465, dt = 0.011323815019043027 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (0.9%)
patch tree reduce : 851.00 ns (0.2%)
gen split merge : 631.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.2%)
LB compute : 449.92 us (96.6%)
LB move op cnt : 0
LB apply : 3.72 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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: 3.93375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7960714039150663e-17,-3.3084036517839016e-17,2.05696791696615e-17)
sum a = (5.782816379394824e-17,-1.4110742992903738e-16,-3.0316049398816627e-18)
sum e = 4.144510536670901
sum de = 6.877907531704919e-19
Info: CFL hydro = 0.011327044965846295 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011327044965846295 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1037e+04 | 800 | 1 | 3.803e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1071.9918250966555 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.338932210525508, dt = 0.011327044965846295 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.3%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 364.68 us (95.2%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.93375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.005692506354018e-17,-3.590894112091056e-17,2.1107399611073315e-17)
sum a = (4.721155519025198e-17,-4.069300543809536e-17,-1.6860756169594814e-16)
sum e = 4.144510539656657
sum de = -4.845028458294598e-19
Info: CFL hydro = 0.01132877759509075 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01132877759509075 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0944e+04 | 800 | 1 | 3.820e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1067.5444592323256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.350259255491354, dt = 0.01132877759509075 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.3%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.2%)
LB compute : 382.03 us (95.4%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.93375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.08313024123143e-17,-3.5926915063241875e-17,1.746168497487175e-17)
sum a = (6.240552777432292e-17,-8.301564831422988e-17,-1.0694495687131952e-16)
sum e = 4.144510543550478
sum de = -1.5958100726271018e-18
Info: CFL hydro = 0.011322330655863015 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011322330655863015 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0992e+04 | 800 | 1 | 3.811e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1070.1565106763014 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.361588033086445, dt = 0.011322330655863015 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.2%)
patch tree reduce : 1362.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 411.13 us (95.7%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.93375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.144990559421703e-17,-3.6639881442384007e-17,1.7057271272417182e-17)
sum a = (1.6775679509226592e-18,4.771482557552878e-17,1.1050379745291974e-16)
sum e = 4.144510547980565
sum de = -9.690056916589196e-19
Info: CFL hydro = 0.011315699544847842 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011315699544847842 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0957e+04 | 800 | 1 | 3.817e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1067.792779796539 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.372910363742308, dt = 0.011315699544847842 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.65 us (1.1%)
patch tree reduce : 1282.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 392.90 us (95.7%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.93375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.11922790874682e-17,-3.557043187367081e-17,1.81461926119893e-17)
sum a = (5.5335777124006e-17,1.1565632758789647e-16,-8.274004786514973e-17)
sum e = 4.1445105528257535
sum de = 1.060485249962384e-18
Info: CFL hydro = 0.011310582968322306 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011310582968322306 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0877e+04 | 800 | 1 | 3.832e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1063.084597723198 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.384226063287157, dt = 0.011310582968322306 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.97 us (1.2%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 387.66 us (95.4%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.93375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1978639064463194e-17,-3.36322417589441e-17,1.8623999912296736e-17)
sum a = (-1.1141447719770633e-16,1.1316394091795425e-16,-7.489142638047586e-18)
sum e = 4.144510557804311
sum de = -1.5585406229479126e-18
Info: CFL hydro = 0.011307031232656462 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011307031232656462 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0681e+04 | 800 | 1 | 3.868e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1052.6001701290254 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.39553664625548, dt = 0.011307031232656462 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.76 us (1.1%)
patch tree reduce : 1442.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 413.11 us (95.6%)
LB move op cnt : 0
LB apply : 4.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.93375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.968546358869302e-17,-3.2424991965690827e-17,1.7967951017203768e-17)
sum a = (-6.125519546511881e-17,1.6998556394134887e-16,2.6721260932553787e-17)
sum e = 4.144510562588368
sum de = 1.026603932072212e-18
Info: CFL hydro = 0.011305074582121134 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011305074582121134 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1070e+04 | 800 | 1 | 3.797e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1072.0643029679522 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.406843677488135, dt = 0.011305074582121134 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.2%)
patch tree reduce : 1864.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 417.87 us (95.7%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.93375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.936942176936741e-17,-3.0256136257712246e-17,1.9040396242972183e-17)
sum a = (-1.6403019771557344e-16,1.3727298889835702e-16,-6.978682675838262e-17)
sum e = 4.144510566859756
sum de = 1.0130514049161432e-18
Info: CFL hydro = 0.011304723344302407 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011304723344302407 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0912e+04 | 800 | 1 | 3.826e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1063.834441906511 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.418148752070257, dt = 0.011304723344302407 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (1.1%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 374.78 us (95.3%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.93375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7005848352799594e-17,-2.8926064525194996e-17,1.7017578816435528e-17)
sum a = (1.757492081155903e-16,1.7135158355852876e-18,-7.523892259888126e-17)
sum e = 4.144510570336361
sum de = -1.3997219453377313e-18
Info: CFL hydro = 0.011305638513950738 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011305638513950738 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0843e+04 | 800 | 1 | 3.838e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1060.3169908867164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.42945347541456, dt = 0.011305638513950738 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.69 us (1.1%)
patch tree reduce : 1744.00 ns (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 409.70 us (95.8%)
LB move op cnt : 0
LB apply : 3.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 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: 3.9387499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0727952243909244e-17,-2.9585109077343185e-17,1.6963656989441586e-17)
sum a = (-4.2969704800061825e-17,4.076490120742062e-17,1.1671079887133358e-17)
sum e = 4.144510572785351
sum de = 1.5094127120071632e-18
Info: CFL hydro = 0.011307371501556149 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011307371501556149 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1399e+04 | 800 | 1 | 3.738e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1088.6912147228559 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.440759113928511, dt = 0.011307371501556149 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.83 us (1.2%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 401.64 us (95.7%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.9387499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.912677354789467e-17,-2.8747822930409464e-17,1.6968150475024416e-17)
sum a = (1.5910533751679336e-16,-1.895651784542605e-17,1.8295076767633687e-16)
sum e = 4.144510574045531
sum de = 2.2886830234811195e-18
Info: CFL hydro = 0.011310627953031017 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011310627953031017 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0504e+04 | 800 | 1 | 3.902e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.3176778525371 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.452066485430068, dt = 0.011310627953031017 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.62 us (1.1%)
patch tree reduce : 1322.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 397.45 us (95.7%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.9387499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.219732202949418e-17,-2.9453300166913545e-17,2.0782745277713953e-17)
sum a = (3.1184789944830146e-17,-1.8656952139904146e-17,-1.2916074959282387e-16)
sum e = 4.144510574072313
sum de = -2.320870275476783e-19
Info: CFL hydro = 0.01131535353850006 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01131535353850006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1552e+04 | 800 | 1 | 3.712e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1096.9320885418167 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.4633771133831, dt = 0.01131535353850006 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.89 us (1.2%)
patch tree reduce : 1412.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 391.68 us (95.5%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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: 3.9412499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.152629484912512e-17,-2.98397399270368e-17,1.6318092894041884e-17)
sum a = (-7.782117898048007e-17,-1.1194171283942487e-16,7.879177186637104e-17)
sum e = 4.14451057289554
sum de = 8.673617379884035e-19
Info: CFL hydro = 0.011321476783430925 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011321476783430925 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1282e+04 | 800 | 1 | 3.759e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1083.6686845869324 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.4746924669216, dt = 0.011321476783430925 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.2%)
patch tree reduce : 1293.00 ns (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 422.10 us (95.6%)
LB move op cnt : 0
LB apply : 4.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.946249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.018723614544221e-17,-3.1255187885627793e-17,1.9427959374491144e-17)
sum a = (2.292156952371396e-16,-9.894056121977426e-17,-9.430927541240564e-17)
sum e = 4.144510570636481
sum de = 4.70950318673391e-19
Info: CFL hydro = 0.01132802493976612 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01132802493976612 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1681e+04 | 800 | 1 | 3.690e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1104.5643441297693 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.48601394370503, dt = 0.01132802493976612 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (1.1%)
patch tree reduce : 1683.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 390.82 us (95.7%)
LB move op cnt : 0
LB apply : 3.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 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: 3.946249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.483350023808693e-17,-3.3049586461703997e-17,1.6426123776595722e-17)
sum a = (-1.6399911777362554e-16,8.187729863324664e-17,3.8572080243000287e-17)
sum e = 4.144510567477909
sum de = -1.345088320239829e-18
Info: CFL hydro = 0.011328983490059934 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011328983490059934 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1098e+04 | 800 | 1 | 3.792e-02 | 0.1% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1075.475497433038 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.497341968644797, dt = 0.00265803135520315 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.5%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 387.04 us (95.3%)
LB move op cnt : 0
LB apply : 3.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.946249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.193969552274534e-17,-3.1431931651885716e-17,1.8123350726943256e-17)
sum a = (-8.8542635581109e-17,-1.0305060269953478e-16,-3.309002783194945e-17)
sum e = 4.144510439634376
sum de = 2.676624113323589e-19
Info: CFL hydro = 0.011330119633541386 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011330119633541386 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1026e+04 | 800 | 1 | 3.805e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 251.4982702005252 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 1740 [SPH][rank=0]
Info: time since start : 939.9128015020001 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15102625455328086 max=0.15131700694392278 delta=0.00029075239064191294
Number of particle pairs: 319600
Distance min=0.137744 max=2.279213 mean=0.932404
---------------- t = 14.5, dt = 0.011330119633541386 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.38 us (1.4%)
patch tree reduce : 1533.00 ns (0.2%)
gen split merge : 561.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.1%)
LB compute : 664.05 us (96.6%)
LB move op cnt : 0
LB apply : 4.19 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (75.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: 3.9462499999999987
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0852272011700833e-17,-3.282641001109018e-17,1.790710173326963e-17)
sum a = (9.458188020443057e-17,-1.356014122615448e-16,-1.218603333492551e-16)
sum e = 4.144510563334859
sum de = -3.049318610115481e-19
Info: CFL hydro = 0.01132784944322082 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01132784944322082 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9431e+04 | 800 | 1 | 4.117e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 990.68529766087 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.511330119633541, dt = 0.01132784944322082 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.1%)
patch tree reduce : 1473.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 426.00 us (95.8%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.9462499999999987
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3386597880416136e-17,-3.45459171607859e-17,1.4343393208954687e-17)
sum a = (1.556363666468497e-16,2.8226878168506874e-16,2.8178648089917845e-17)
sum e = 4.144510558733049
sum de = -2.1074179727686992e-18
Info: CFL hydro = 0.011326840044704307 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011326840044704307 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0416e+04 | 800 | 1 | 3.918e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.7245069750672 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.522657969076763, dt = 0.011326840044704307 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.2%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 395.03 us (95.5%)
LB move op cnt : 0
LB apply : 3.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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: 3.9462499999999987
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.506117017428358e-17,-2.8985977666299374e-17,1.5955618390360382e-17)
sum a = (1.955804578211403e-16,-1.1304411463574548e-16,-3.815568391232484e-17)
sum e = 4.144510554600082
sum de = 2.222614453595284e-18
Info: CFL hydro = 0.011307897421618418 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011307897421618418 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0928e+04 | 800 | 1 | 3.823e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1066.739613514128 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.533984809121467, dt = 0.011307897421618418 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (1.1%)
patch tree reduce : 1694.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 397.76 us (95.5%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 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: 3.9462499999999987
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.796995317490126e-17,-3.241450716599756e-17,1.570360874059008e-17)
sum a = (9.838936032161397e-17,-1.383993559511194e-16,5.0027472822157875e-18)
sum e = 4.144510550626951
sum de = 1.748276003132876e-18
Info: CFL hydro = 0.011310118360907027 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011310118360907027 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0700e+04 | 800 | 1 | 3.865e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1053.3460984643662 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.545292706543085, dt = 0.011310118360907027 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.3%)
patch tree reduce : 1462.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 385.87 us (95.3%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.9462499999999987
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.799990974545345e-17,-3.380898552520202e-17,1.6224104153934386e-17)
sum a = (8.647862787006308e-17,2.326367355941998e-16,6.767788419150842e-17)
sum e = 4.144510547926566
sum de = 1.5246593050577406e-18
Info: CFL hydro = 0.011313544199063991 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011313544199063991 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1140e+04 | 800 | 1 | 3.784e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1075.9522226630515 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.556602824903992, dt = 0.011313544199063991 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.16 us (0.9%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 423.47 us (96.2%)
LB move op cnt : 0
LB apply : 3.72 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.9462499999999987
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.929553142183568e-17,-2.962704827611625e-17,1.765003691221865e-17)
sum a = (-1.3178494517319576e-16,8.893506665534269e-17,3.3395584851581797e-17)
sum e = 4.144510546310824
sum de = -8.402566836762659e-19
Info: CFL hydro = 0.011303223951001097 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011303223951001097 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0950e+04 | 800 | 1 | 3.819e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1066.5690039746387 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.567916369103056, dt = 0.011303223951001097 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.45 us (1.1%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 380.51 us (95.6%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9462499999999987
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.635828967919342e-17,-2.906536257826268e-17,1.6911232990975253e-17)
sum a = (4.507864736693603e-17,1.0092518401885687e-16,-8.262621289705141e-17)
sum e = 4.144510545656974
sum de = -1.9989977555201488e-18
Info: CFL hydro = 0.011291430945033314 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011291430945033314 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0813e+04 | 800 | 1 | 3.844e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1058.6264208416856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.579219593054058, dt = 0.011291430945033314 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (1.1%)
patch tree reduce : 932.00 ns (0.2%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.2%)
LB compute : 375.73 us (96.2%)
LB move op cnt : 0
LB apply : 3.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 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: 3.9462499999999987
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.793100963318341e-17,-2.829547871507139e-17,1.545646703353451e-17)
sum a = (5.3802000711733855e-17,-1.4575369402168212e-17,-9.546559903572019e-17)
sum e = 4.144510546283507
sum de = 3.686287386450715e-18
Info: CFL hydro = 0.011281059245878031 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011281059245878031 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0999e+04 | 800 | 1 | 3.810e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1066.965586061782 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.59051102399909, dt = 0.011281059245878031 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.46 us (1.1%)
patch tree reduce : 832.00 ns (0.2%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 403.88 us (96.3%)
LB move op cnt : 0
LB apply : 3.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9462499999999987
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.901693531570031e-17,-2.857707047826198e-17,1.557292320155615e-17)
sum a = (1.1045586694003624e-16,5.563684065805552e-17,-2.4553603487397293e-16)
sum e = 4.144510548217136
sum de = 3.1170812458958252e-19
Info: CFL hydro = 0.011272222608137034 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011272222608137034 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0543e+04 | 800 | 1 | 3.894e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1042.8616325933945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.601792083244968, dt = 0.011272222608137034 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.65 us (1.1%)
patch tree reduce : 911.00 ns (0.2%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 642.00 ns (0.2%)
LB compute : 403.84 us (96.1%)
LB move op cnt : 0
LB apply : 3.56 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.9462499999999987
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.004444568564044e-17,-2.800340215218753e-17,1.1292878183911954e-17)
sum a = (7.946879036085054e-17,-8.639474947251694e-17,-3.120276388716146e-17)
sum e = 4.144510551336556
sum de = 1.0503208545953324e-18
Info: CFL hydro = 0.011265013293827264 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011265013293827264 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1143e+04 | 800 | 1 | 3.784e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1072.4947598746508 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.613064305853104, dt = 0.011265013293827264 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (1.1%)
patch tree reduce : 1073.00 ns (0.3%)
gen split merge : 632.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 374.16 us (96.1%)
LB move op cnt : 0
LB apply : 3.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.9462499999999987
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.1124380054046904e-17,-2.9182193203416225e-17,1.2633434716122472e-17)
sum a = (-2.552299811046617e-16,5.986221493444196e-17,-7.093715906758673e-17)
sum e = 4.1445105554387585
sum de = -2.3174821436877657e-18
Info: CFL hydro = 0.011259500257886195 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011259500257886195 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1049e+04 | 800 | 1 | 3.801e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1067.0427156207209 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.624329319146932, dt = 0.011259500257886195 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.3%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 419.14 us (95.5%)
LB move op cnt : 0
LB apply : 3.73 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.9462499999999987
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.607819574453044e-17,-2.7995913009549487e-17,1.1205255215046797e-17)
sum a = (-2.460992184003541e-16,3.966549506815523e-17,1.7210648913644397e-16)
sum e = 4.144510560254188
sum de = 2.710505431213761e-20
Info: CFL hydro = 0.01125572869897026 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01125572869897026 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0424e+04 | 800 | 1 | 3.917e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1034.8419379166412 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.635588819404818, dt = 0.01125572869897026 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.86 us (1.2%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 397.16 us (95.6%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.9462499999999987
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.326152919836074e-17,-2.7530088337462925e-17,1.402566633253552e-17)
sum a = (4.888912314117464e-18,3.2155382830721116e-17,-1.860902162702064e-17)
sum e = 4.144510565469348
sum de = 6.844026213814747e-19
Info: CFL hydro = 0.011253718920868168 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011253718920868168 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0984e+04 | 800 | 1 | 3.812e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1062.864429512042 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.646844548103788, dt = 0.011253718920868168 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.10 us (1.0%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 401.31 us (96.0%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.9462499999999987
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.4872069322672875e-17,-2.6966904811081748e-17,1.2761499055233085e-17)
sum a = (8.052326164428764e-17,3.3880881294527275e-17,-4.902093205160428e-17)
sum e = 4.144510570748581
sum de = 2.337810934421869e-19
Info: CFL hydro = 0.011253467223892784 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011253467223892784 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1001e+04 | 800 | 1 | 3.809e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1063.5063677499961 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.658098267024656, dt = 0.011253467223892784 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.0%)
patch tree reduce : 1423.00 ns (0.3%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 399.55 us (96.0%)
LB move op cnt : 0
LB apply : 3.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.9462499999999987
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.637588916439283e-17,-2.6716767446970957e-17,1.2100956674557289e-17)
sum a = (-2.9719314513416994e-16,-7.936693802097309e-17,4.737931198534425e-17)
sum e = 4.144510575758875
sum de = 2.879912020664621e-18
Info: CFL hydro = 0.011254946227275443 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011254946227275443 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0499e+04 | 800 | 1 | 3.903e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1038.0921104122567 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.669351734248549, dt = 0.011254946227275443 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (1.1%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 382.17 us (95.6%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9462499999999987
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0665417902881544e-17,-2.856658567856871e-17,1.240950935124485e-17)
sum a = (-1.5232316994377746e-16,2.273703704911247e-17,6.286086764671621e-17)
sum e = 4.144510580193855
sum de = -6.810144895924575e-19
Info: CFL hydro = 0.011258104950143868 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011258104950143868 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1210e+04 | 800 | 1 | 3.772e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1074.2070544968642 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.680606680475824, dt = 0.011258104950143868 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (1.1%)
patch tree reduce : 1243.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 390.71 us (95.9%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.9462499999999987
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.9790311585625684e-17,-2.796146295341447e-17,1.4957315676708637e-17)
sum a = (4.234660813257627e-17,-7.033802765654292e-17,1.3993313236339152e-16)
sum e = 4.144510583795536
sum de = 1.6127507315721878e-18
Info: CFL hydro = 0.011262870381975399 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011262870381975399 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1070e+04 | 800 | 1 | 3.797e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1067.4545065790408 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.691864785425969, dt = 0.011262870381975399 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (1.0%)
patch tree reduce : 1342.00 ns (0.3%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 408.51 us (96.0%)
LB move op cnt : 0
LB apply : 3.58 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.9462499999999987
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.143867188025996e-17,-2.8927562353722605e-17,1.491837213499079e-17)
sum a = (1.2219884259649485e-16,-7.345351099397072e-18,1.0259526282714149e-16)
sum e = 4.144510586373893
sum de = -3.4643647542700884e-19
Info: CFL hydro = 0.011269148286874298 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011269148286874298 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1060e+04 | 800 | 1 | 3.799e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1067.3717917933834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.703127655807943, dt = 0.011269148286874298 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.45 us (1.1%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 1172.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1103.00 ns (0.3%)
LB compute : 397.13 us (95.7%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.9462499999999987
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3291485768912935e-17,-2.8771788186851214e-17,1.625443518161848e-17)
sum a = (-3.10350070920692e-17,-5.138150981111688e-17,-2.7224531317830583e-17)
sum e = 4.1445105878193855
sum de = -1.0583676675942483e-18
Info: CFL hydro = 0.011271398409918584 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011271398409918584 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0961e+04 | 800 | 1 | 3.817e-02 | 0.1% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1062.9648273262312 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.714396804094818, dt = 0.011271398409918584 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.73 us (1.1%)
patch tree reduce : 1413.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 410.91 us (95.9%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.9462499999999987
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1756960442376983e-17,-2.943682405310984e-17,1.6149587184685814e-17)
sum a = (-1.0131312160750774e-16,-7.52449139129917e-17,-7.90853462577825e-17)
sum e = 4.144510587982738
sum de = 1.5263533709522492e-18
Info: CFL hydro = 0.011271157172245918 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011271157172245918 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0722e+04 | 800 | 1 | 3.861e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1051.0543113525764 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.725668202504737, dt = 0.011271157172245918 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (1.0%)
patch tree reduce : 1012.00 ns (0.2%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 394.99 us (96.0%)
LB move op cnt : 0
LB apply : 3.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.946249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.997005100893883e-17,-3.05002823077126e-17,1.433421900922308e-17)
sum a = (9.99231367338861e-17,-1.3234812869957694e-16,1.521434305204643e-16)
sum e = 4.144510586977187
sum de = 2.1006417091906648e-19
Info: CFL hydro = 0.01127189776888671 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01127189776888671 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1155e+04 | 800 | 1 | 3.782e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1072.9647367964292 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.736939359676983, dt = 0.01127189776888671 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.98 us (1.0%)
patch tree reduce : 1032.00 ns (0.3%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 379.62 us (95.9%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.946249999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2806938240231254e-17,-3.244146807949453e-17,1.8024868501252928e-17)
sum a = (1.5613364571801608e-17,-3.2269217798819436e-17,-2.460033573745871e-17)
sum e = 4.144510585052031
sum de = -4.845028458294598e-19
Info: CFL hydro = 0.011273611392989257 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011273611392989257 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0414e+04 | 800 | 1 | 3.919e-02 | 0.1% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1035.460912100749 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.74821125744587, dt = 0.011273611392989257 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.16 us (1.0%)
patch tree reduce : 822.00 ns (0.2%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 414.99 us (96.3%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9437499999999988
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2203313343604616e-17,-3.2180845915690475e-17,1.6664840198183488e-17)
sum a = (-4.456938566754879e-17,1.19862230093424e-16,1.3321087793148e-16)
sum e = 4.1445105824423285
sum de = -9.114074512456272e-19
Info: CFL hydro = 0.011276277669535388 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011276277669535388 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1698e+04 | 800 | 1 | 3.687e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1100.7683494366545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.75948486883886, dt = 0.011276277669535388 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (0.9%)
patch tree reduce : 811.00 ns (0.2%)
gen split merge : 621.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 401.74 us (96.6%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.9437499999999988
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.160118627550559e-17,-2.968696141722063e-17,1.8528138886529727e-17)
sum a = (-2.831495048593031e-17,-1.4141298694866974e-16,2.5067658238072878e-17)
sum e = 4.144510579435865
sum de = 2.0328790734103208e-19
Info: CFL hydro = 0.011279663417749526 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011279663417749526 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1262e+04 | 800 | 1 | 3.763e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1078.8957539971004 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.770761146508395, dt = 0.011279663417749526 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (1.1%)
patch tree reduce : 1262.00 ns (0.3%)
gen split merge : 591.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 379.64 us (95.8%)
LB move op cnt : 0
LB apply : 3.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.9437499999999988
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1440918623051376e-17,-3.3173906229495586e-17,1.9238109608616637e-17)
sum a = (8.784314965871535e-17,2.983674426998158e-17,-5.500026353382147e-18)
sum e = 4.1445105763398
sum de = -1.5111067779016718e-18
Info: CFL hydro = 0.011283016907115717 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011283016907115717 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0821e+04 | 800 | 1 | 3.842e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1056.8660592827805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.782040809926144, dt = 0.011283016907115717 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.73 us (1.1%)
patch tree reduce : 1092.00 ns (0.2%)
gen split merge : 692.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.2%)
LB compute : 420.20 us (95.9%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.9412499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.29237688653848e-17,-3.189476066691706e-17,1.752459377303135e-17)
sum a = (-1.4909984295236179e-16,-3.933297713502592e-17,2.779969747243264e-18)
sum e = 4.1445105734580805
sum de = -1.395910297075087e-18
Info: CFL hydro = 0.011287166738860616 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011287166738860616 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9882e+04 | 800 | 1 | 4.024e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1009.4751634588318 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.79332382683326, dt = 0.011287166738860616 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (0.7%)
patch tree reduce : 1172.00 ns (0.2%)
gen split merge : 922.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.1%)
LB compute : 693.66 us (97.5%)
LB move op cnt : 0
LB apply : 3.91 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 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: 3.9387499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.99026487251964e-17,-3.274552727059926e-17,1.8291481979167423e-17)
sum a = (6.033552874916657e-17,-3.3389593537471354e-17,1.5509115706279984e-16)
sum e = 4.144510571108611
sum de = -1.3823577699190182e-18
Info: CFL hydro = 0.01129206755110932 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01129206755110932 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0316e+04 | 800 | 1 | 3.938e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1031.906318777329 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.80461099357212, dt = 0.01129206755110932 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (0.8%)
patch tree reduce : 1262.00 ns (0.2%)
gen split merge : 762.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 545.69 us (96.9%)
LB move op cnt : 0
LB apply : 3.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.9437499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.168206901599651e-17,-3.296720589268547e-17,2.1412956630705657e-17)
sum a = (-1.037935256492291e-16,-5.94578012319874e-17,1.098687181572133e-16)
sum e = 4.144510569544232
sum de = -4.2690460541616737e-19
Info: CFL hydro = 0.0112899814442118 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0112899814442118 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0862e+04 | 800 | 1 | 3.835e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1060.080164353624 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.81590306112323, dt = 0.0112899814442118 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.56 us (0.8%)
patch tree reduce : 711.00 ns (0.2%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.2%)
LB compute : 428.14 us (96.6%)
LB move op cnt : 0
LB apply : 3.57 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9437499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.9394884854336776e-17,-3.357232861783972e-17,2.165260919512318e-17)
sum a = (9.75925155449257e-17,-2.1337166507208616e-16,5.801988584548226e-17)
sum e = 4.144510568795536
sum de = -8.673617379884035e-19
Info: CFL hydro = 0.011285945111798722 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011285945111798722 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1077e+04 | 800 | 1 | 3.796e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1070.8355339235343 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.827193042567442, dt = 0.011285945111798722 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.42 us (1.1%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 398.80 us (95.8%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 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: 3.9437499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.159519496139516e-17,-3.665785538471532e-17,2.4204909006169798e-17)
sum a = (1.224265125326915e-16,2.7340163680162037e-16,6.948726105286072e-17)
sum e = 4.1445105690731525
sum de = -4.743384504624082e-19
Info: CFL hydro = 0.01128302018531091 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01128302018531091 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0909e+04 | 800 | 1 | 3.826e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1061.9185620233832 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.838478987679242, dt = 0.01128302018531091 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (0.9%)
patch tree reduce : 1042.00 ns (0.2%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 427.25 us (96.2%)
LB move op cnt : 0
LB apply : 3.62 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.344051970741008e-17,-3.1229724800658434e-17,2.4372665801262064e-17)
sum a = (2.1409361842239394e-16,4.002048042919869e-17,9.773930274063143e-17)
sum e = 4.144510570451309
sum de = 1.6398557858843255e-18
Info: CFL hydro = 0.011281234050734347 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011281234050734347 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1453e+04 | 800 | 1 | 3.729e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1089.2685052498803 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.849762007864552, dt = 0.011281234050734347 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (0.9%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 380.74 us (96.1%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.6003304318149965e-17,-3.212842191722414e-17,2.385741278776439e-17)
sum a = (1.7374810920270399e-16,1.6220883822600027e-16,7.974289298140308e-17)
sum e = 4.144510572853439
sum de = -9.0801931945661e-19
Info: CFL hydro = 0.011280595043963242 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011280595043963242 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1205e+04 | 800 | 1 | 3.773e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1076.467868429548 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.861043241915286, dt = 0.011280595043963242 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.89 us (0.9%)
patch tree reduce : 1363.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.3%)
LB compute : 385.33 us (91.9%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.806132071508544e-17,-2.950422633685227e-17,2.5019727725189375e-17)
sum a = (1.0505170161242109e-16,-8.830073627390006e-18,1.1919007954165922e-16)
sum e = 4.1445105761198135
sum de = 5.353248226647178e-19
Info: CFL hydro = 0.011281091881163835 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011281091881163835 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1184e+04 | 800 | 1 | 3.776e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1075.3614181022247 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.87232383695925, dt = 0.011281091881163835 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (0.8%)
patch tree reduce : 852.00 ns (0.2%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 399.05 us (96.5%)
LB move op cnt : 0
LB apply : 3.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.90775973710685e-17,-3.080733715587255e-17,2.68021436730447e-17)
sum a = (-7.194369983814033e-17,-2.1646617881012742e-17,7.904939837311987e-17)
sum e = 4.144510580021087
sum de = 6.098637220230962e-20
Info: CFL hydro = 0.01128269352570216 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01128269352570216 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1276e+04 | 800 | 1 | 3.760e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1080.0595297581563 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.883604928840414, dt = 0.01128269352570216 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (0.9%)
patch tree reduce : 732.00 ns (0.2%)
gen split merge : 541.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.2%)
LB compute : 389.96 us (96.4%)
LB move op cnt : 0
LB apply : 4.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.709222565772208e-17,-3.1029015777958756e-17,2.6592447679179368e-17)
sum a = (5.556344706020264e-17,1.2280096966459386e-16,-1.6119930179839146e-16)
sum e = 4.1445105842771675
sum de = 5.082197683525802e-19
Info: CFL hydro = 0.01128535025034516 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01128535025034516 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1979e+04 | 800 | 1 | 3.640e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1115.9319192520538 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.894887622366117, dt = 0.01128535025034516 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (0.9%)
patch tree reduce : 871.00 ns (0.2%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 384.74 us (96.3%)
LB move op cnt : 0
LB apply : 3.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.858106721416594e-17,-2.8782272986544483e-17,2.3533881825800734e-17)
sum a = (9.411156204676118e-17,1.085296594535304e-16,1.976534525033519e-17)
sum e = 4.144510588580353
sum de = 1.3654171109739321e-18
Info: CFL hydro = 0.011288994301892638 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011288994301892638 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1289e+04 | 800 | 1 | 3.758e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1081.1560922155152 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.906172972616462, dt = 0.011288994301892638 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (0.9%)
patch tree reduce : 622.00 ns (0.2%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 370.10 us (96.6%)
LB move op cnt : 0
LB apply : 2.88 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 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: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9808350463975994e-17,-2.7350348914149784e-17,2.4950827612919337e-17)
sum a = (-9.849720397560185e-17,-1.3917822678547635e-17,-2.5385197885926098e-17)
sum e = 4.144510592620294
sum de = 1.8566962203814263e-18
Info: CFL hydro = 0.011293541261163487 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011293541261163487 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1254e+04 | 800 | 1 | 3.764e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1079.7364215529396 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.917461966918355, dt = 0.011293541261163487 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (0.9%)
patch tree reduce : 782.00 ns (0.2%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 632.00 ns (0.2%)
LB compute : 384.21 us (96.7%)
LB move op cnt : 0
LB apply : 3.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.772655603916471e-17,-2.803935003685016e-17,2.4058121810464065e-17)
sum a = (3.582805838041965e-17,1.7335867378552553e-16,-3.392881180741078e-17)
sum e = 4.1445105961077955
sum de = -4.0657581468206416e-20
Info: CFL hydro = 0.011296312801144126 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011296312801144126 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0750e+04 | 800 | 1 | 3.855e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1054.528476288578 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.928755508179519, dt = 0.011296312801144126 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (0.8%)
patch tree reduce : 501.00 ns (0.1%)
gen split merge : 521.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 591.00 ns (0.2%)
LB compute : 354.84 us (92.2%)
LB move op cnt : 0
LB apply : 20.63 us (5.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.8990348859335245e-17,-2.4950827612919337e-17,2.503171035341025e-17)
sum a = (8.483700780380304e-18,1.2739930324435509e-16,-9.212244576209574e-17)
sum e = 4.144510598737609
sum de = 2.286988957586611e-19
Info: CFL hydro = 0.011298299744137867 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011298299744137867 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1212e+04 | 800 | 1 | 3.771e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1078.2720444607023 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.940051820980663, dt = 0.011298299744137867 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 us (0.6%)
patch tree reduce : 611.00 ns (0.1%)
gen split merge : 581.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 722.00 ns (0.1%)
LB compute : 558.27 us (97.7%)
LB move op cnt : 0
LB apply : 3.24 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (72.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.8836446978123366e-17,-2.447451814113951e-17,2.335713805954281e-17)
sum a = (-1.2017377842716678e-16,2.848270728102258e-17,5.731291078045056e-17)
sum e = 4.144510600354943
sum de = -1.6432439176733427e-18
Info: CFL hydro = 0.01130124810905349 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01130124810905349 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1314e+04 | 800 | 1 | 3.753e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1083.6741837822542 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.9513501207248, dt = 0.01130124810905349 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (1.0%)
patch tree reduce : 881.00 ns (0.2%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 396.55 us (96.1%)
LB move op cnt : 0
LB apply : 3.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 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: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.643318110557389e-17,-2.4456544198808195e-17,2.4762101218440536e-17)
sum a = (-1.7783418542602276e-16,-2.690938819562154e-16,1.4362378185542137e-16)
sum e = 4.144510600908765
sum de = -2.574980159653073e-19
Info: CFL hydro = 0.011305132557532122 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011305132557532122 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0883e+04 | 800 | 1 | 3.831e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1062.037165697027 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.962651368833853, dt = 0.011305132557532122 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (0.9%)
patch tree reduce : 571.00 ns (0.1%)
gen split merge : 511.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 601.00 ns (0.1%)
LB compute : 409.72 us (96.8%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.425758516922107e-17,-2.918069537488861e-17,2.5511015482245296e-17)
sum a = (-2.1584308214264185e-16,1.5799095309225187e-17,-9.311700390442847e-17)
sum e = 4.144510600398483
sum de = -5.869938324472301e-19
Info: CFL hydro = 0.011303387987255857 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011303387987255857 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1000e+04 | 800 | 1 | 3.809e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1068.3482381481854 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.973956501391385, dt = 0.011303387987255857 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (0.8%)
patch tree reduce : 772.00 ns (0.2%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 631.00 ns (0.2%)
LB compute : 404.08 us (96.7%)
LB move op cnt : 0
LB apply : 3.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.144690993716181e-17,-2.7318894515069983e-17,2.447751379819473e-17)
sum a = (-1.2115635394127863e-16,-5.889461770560622e-17,3.030406677059575e-17)
sum e = 4.144510598762801
sum de = -1.212951180468158e-18
Info: CFL hydro = 0.011300210572131642 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011300210572131642 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0571e+04 | 800 | 1 | 3.889e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1046.33415198208 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.985259889378641, dt = 0.011300210572131642 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.73 us (1.2%)
patch tree reduce : 1462.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 382.24 us (95.6%)
LB move op cnt : 0
LB apply : 3.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0522000821362934e-17,-2.820710683194243e-17,2.494184064175368e-17)
sum a = (1.2097062320385504e-16,-6.011684578413558e-17,-1.7963157965915417e-16)
sum e = 4.14451059627805
sum de = -2.264966100957999e-18
Info: CFL hydro = 0.011297441455145956 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011297441455145956 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0797e+04 | 800 | 1 | 3.847e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1057.5280114186437 (tsim/hr) [sph::Model][rank=0]
---------------- t = 14.996560099950774, dt = 0.003439900049226452 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (0.9%)
patch tree reduce : 891.00 ns (0.2%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 397.16 us (96.3%)
LB move op cnt : 0
LB apply : 3.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.244296590802214e-17,-2.8794255614765355e-17,2.3255285719665363e-17)
sum a = (-4.631285807368627e-17,-2.0205706837452386e-16,-1.07963480270094e-17)
sum e = 4.144510480797247
sum de = -1.0723437112239442e-18
Info: CFL hydro = 0.011296849240884692 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011296849240884692 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9422e+04 | 800 | 1 | 4.119e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 300.6463544797129 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 1785 [SPH][rank=0]
Info: time since start : 942.6039211460001 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15104238935698994 max=0.15127560561883874 delta=0.00023321626184880095
Number of particle pairs: 319600
Distance min=0.134608 max=2.276668 mean=0.932163
---------------- t = 15, dt = 0.011296849240884692 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.62 us (1.4%)
patch tree reduce : 1312.00 ns (0.2%)
gen split merge : 511.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.1%)
LB compute : 645.41 us (94.2%)
LB move op cnt : 0
LB apply : 4.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (75.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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1402723995597334e-17,-3.1093422404645967e-17,2.3935299871200085e-17)
sum a = (1.3060465629343946e-16,1.371291973597065e-16,-1.5241903096954446e-17)
sum e = 4.144510592595458
sum de = 1.3247595295057257e-18
Info: CFL hydro = 0.011294426577708376 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011294426577708376 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9414e+04 | 800 | 1 | 4.121e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 986.9127282186032 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.011296849240885, dt = 0.011294426577708376 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.90 us (1.1%)
patch tree reduce : 1482.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1073.00 ns (0.2%)
LB compute : 416.62 us (95.7%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (72.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.4081590317226954e-17,-2.745070342549962e-17,2.3956269470586617e-17)
sum a = (-1.8601532484382594e-16,-2.1209251950950763e-17,-6.012882841235646e-17)
sum e = 4.144510589131281
sum de = 2.913793338554793e-19
Info: CFL hydro = 0.011288504076288798 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011288504076288798 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9141e+04 | 800 | 1 | 4.179e-02 | 0.0% | 1.1% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 972.865146937328 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.022591275818593, dt = 0.011288504076288798 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (0.8%)
patch tree reduce : 872.00 ns (0.2%)
gen split merge : 501.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 571.00 ns (0.1%)
LB compute : 434.02 us (97.0%)
LB move op cnt : 0
LB apply : 2.88 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.03587375118535e-17,-2.871786635985727e-17,2.1955170557700302e-17)
sum a = (-2.400550122200348e-16,-7.536474019520047e-17,-2.0478311629477318e-17)
sum e = 4.144510585864015
sum de = 3.3542504711270293e-19
Info: CFL hydro = 0.011284491498605791 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011284491498605791 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0756e+04 | 800 | 1 | 3.854e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1054.3731220190934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.033879779894882, dt = 0.011284491498605791 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (0.9%)
patch tree reduce : 922.00 ns (0.2%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 652.00 ns (0.2%)
LB compute : 399.93 us (96.4%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.722827588914961e-17,-2.949973285126944e-17,2.3312203203714523e-17)
sum a = (-4.388937151601407e-17,1.6926061493398588e-16,1.3935796620878947e-16)
sum e = 4.144510583134824
sum de = 5.929230630780102e-19
Info: CFL hydro = 0.01128241423666793 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01128241423666793 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0778e+04 | 800 | 1 | 3.850e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1055.105813887758 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.045164271393487, dt = 0.01128241423666793 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (1.1%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 398.15 us (95.6%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7643174391297444e-17,-2.6826108929486453e-17,2.5981333639914685e-17)
sum a = (-2.5019727725189375e-17,-2.010685015463016e-17,-1.2605724888361697e-17)
sum e = 4.144510581196748
sum de = -1.0232158002831948e-18
Info: CFL hydro = 0.011282276400154204 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011282276400154204 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1240e+04 | 800 | 1 | 3.767e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1078.3608825035828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.056446685630155, dt = 0.011282276400154204 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.32 us (0.6%)
patch tree reduce : 1262.00 ns (0.2%)
gen split merge : 822.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.1%)
LB compute : 695.73 us (97.6%)
LB move op cnt : 0
LB apply : 3.50 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7470924110622348e-17,-2.7930008554334667e-17,2.3806486617825665e-17)
sum a = (-2.1056473441134593e-16,1.6671131077999447e-16,-5.075841314363132e-17)
sum e = 4.144510580269196
sum de = -1.3552527156068805e-19
Info: CFL hydro = 0.011284057910712969 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011284057910712969 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9606e+04 | 800 | 1 | 4.080e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 995.3863622664294 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.067728962030309, dt = 0.011284057910712969 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (1.1%)
patch tree reduce : 1502.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1093.00 ns (0.3%)
LB compute : 378.46 us (95.6%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.43786571153725e-17,-2.4643772764759386e-17,2.3409562058009145e-17)
sum a = (1.138349680983233e-18,1.0296672430198864e-16,5.737282392155494e-17)
sum e = 4.144510580496727
sum de = 5.421010862427522e-20
Info: CFL hydro = 0.011287715033044949 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011287715033044949 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0619e+04 | 800 | 1 | 3.880e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.0210755408561 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.079013019941021, dt = 0.011287715033044949 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (1.1%)
patch tree reduce : 992.00 ns (0.2%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.3%)
LB compute : 396.77 us (95.8%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5232419376109925e-17,-2.4119532780096055e-17,2.4672231506783966e-17)
sum a = (1.1941887284925158e-16,1.236697102106074e-16,-2.497179721230587e-17)
sum e = 4.1445105819369195
sum de = -3.516880796999855e-18
Info: CFL hydro = 0.011287962283655173 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011287962283655173 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1177e+04 | 800 | 1 | 3.778e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1075.673937025866 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.090300734974067, dt = 0.011287962283655173 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (0.9%)
patch tree reduce : 852.00 ns (0.2%)
gen split merge : 601.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.2%)
LB compute : 392.92 us (96.6%)
LB move op cnt : 0
LB apply : 2.90 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7421870226343138e-17,-2.2728050077946814e-17,2.354286879696639e-17)
sum a = (8.318340510932215e-17,9.86592502994326e-17,5.476061096940395e-17)
sum e = 4.14451058445465
sum de = 5.285485590866834e-19
Info: CFL hydro = 0.011287324462531327 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011287324462531327 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0566e+04 | 800 | 1 | 3.890e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.6700786571735 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.101588697257721, dt = 0.011287324462531327 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (0.9%)
patch tree reduce : 1002.00 ns (0.2%)
gen split merge : 591.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 394.07 us (96.6%)
LB move op cnt : 0
LB apply : 2.90 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8111245806175416e-17,-2.1441415372730237e-17,2.484597961598667e-17)
sum a = (-8.627492319030819e-17,5.1901256310197376e-17,-3.0975093950964814e-17)
sum e = 4.144510587967972
sum de = 9.012430558785756e-19
Info: CFL hydro = 0.011287043793772069 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011287043793772069 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0662e+04 | 800 | 1 | 3.872e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1049.4739845367806 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.112876021720252, dt = 0.011287043793772069 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.1%)
patch tree reduce : 941.00 ns (0.2%)
gen split merge : 1022.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 392.89 us (96.1%)
LB move op cnt : 0
LB apply : 3.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6090675122430178e-17,-2.0807833905551412e-17,2.366718856475798e-17)
sum a = (-1.870488265278765e-16,-1.1173201684555954e-16,-4.185532037552035e-17)
sum e = 4.144510592289076
sum de = 2.0430434687773724e-18
Info: CFL hydro = 0.011287114255425891 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011287114255425891 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0766e+04 | 800 | 1 | 3.853e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1054.7211681238323 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.124163065514024, dt = 0.011287114255425891 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (0.9%)
patch tree reduce : 892.00 ns (0.2%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 385.09 us (96.2%)
LB move op cnt : 0
LB apply : 3.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 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: 3.95375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3546800596851364e-17,-2.3315198860769744e-17,2.367317987886842e-17)
sum a = (2.348595131291723e-18,8.448352027128721e-17,-7.207550874856997e-17)
sum e = 4.144510597141845
sum de = -1.1248597539537109e-18
Info: CFL hydro = 0.011287527180729921 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011287527180729921 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1093e+04 | 800 | 1 | 3.793e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1071.3810516913793 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.13545017976945, dt = 0.011287527180729921 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (0.9%)
patch tree reduce : 1072.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 391.28 us (96.2%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.95375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4661372249958798e-17,-2.1537276398497246e-17,2.2224779692670015e-17)
sum a = (-6.757004053752054e-17,-1.4636780371800202e-17,-2.4204909006169798e-17)
sum e = 4.144510602205012
sum de = -2.744386749103933e-18
Info: CFL hydro = 0.011288270753256205 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011288270753256205 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0984e+04 | 800 | 1 | 3.812e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1065.878499498177 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.14673770695018, dt = 0.011288270753256205 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (0.8%)
patch tree reduce : 601.00 ns (0.2%)
gen split merge : 521.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 510.00 ns (0.1%)
LB compute : 376.01 us (96.9%)
LB move op cnt : 0
LB apply : 2.96 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 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: 3.95375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3179645379021082e-17,-2.2440467000645787e-17,2.3044091897272422e-17)
sum a = (6.3987234699478575e-18,-1.4031657646645957e-16,-1.1329574982838387e-16)
sum e = 4.144510607137721
sum de = -2.425902360936316e-18
Info: CFL hydro = 0.011289330443600337 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011289330443600337 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0794e+04 | 800 | 1 | 3.847e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1056.2856325648636 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.158025977703437, dt = 0.011289330443600337 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (0.9%)
patch tree reduce : 961.00 ns (0.2%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 382.37 us (96.1%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.407609575279538e-17,-2.4579366138072175e-17,2.1074447383465905e-17)
sum a = (-1.6574371355115874e-16,-5.2939251479830775e-17,-4.397025425650499e-17)
sum e = 4.144510611605403
sum de = -4.29784517436832e-18
Info: CFL hydro = 0.011290689143012516 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011290689143012516 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0984e+04 | 800 | 1 | 3.813e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1066.0036788006105 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.169315308147038, dt = 0.011290689143012516 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (0.8%)
patch tree reduce : 491.00 ns (0.1%)
gen split merge : 431.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 541.00 ns (0.1%)
LB compute : 407.29 us (97.1%)
LB move op cnt : 0
LB apply : 2.98 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0774132763680198e-17,-2.5028714696355032e-17,2.1272160749110362e-17)
sum a = (-2.1543567278313206e-16,-4.807430442215506e-17,1.269319807437409e-16)
sum e = 4.1445106153061255
sum de = 6.860966872759833e-20
Info: CFL hydro = 0.0112911711094556 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0112911711094556 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0985e+04 | 800 | 1 | 3.812e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1066.23061311719 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.18060599729005, dt = 0.0112911711094556 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (0.9%)
patch tree reduce : 591.00 ns (0.2%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 511.00 ns (0.1%)
LB compute : 371.83 us (96.7%)
LB move op cnt : 0
LB apply : 3.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8316945064136785e-17,-2.5605378679484696e-17,2.3106251781168217e-17)
sum a = (-4.755905140865739e-17,1.4664340416708216e-16,-4.271507395036821e-17)
sum e = 4.144510617968204
sum de = -2.22473203596342e-18
Info: CFL hydro = 0.011291738660657653 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011291738660657653 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0680e+04 | 800 | 1 | 3.868e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1050.7658776410256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.191897168399505, dt = 0.011291738660657653 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (1.0%)
patch tree reduce : 1363.00 ns (0.3%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 373.40 us (95.8%)
LB move op cnt : 0
LB apply : 3.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8677921739290678e-17,-2.234310814635117e-17,2.1460138229325358e-17)
sum a = (-1.9982230821133046e-16,-3.637925927857995e-17,4.817016544792207e-18)
sum e = 4.144510619445123
sum de = -1.9058241313221758e-19
Info: CFL hydro = 0.01128867737686603 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01128867737686603 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0925e+04 | 800 | 1 | 3.823e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1063.2334005376488 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.203188907060163, dt = 0.01128867737686603 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.82 us (1.0%)
patch tree reduce : 792.00 ns (0.2%)
gen split merge : 492.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 561.00 ns (0.1%)
LB compute : 378.44 us (96.7%)
LB move op cnt : 0
LB apply : 2.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5656801599102284e-17,-2.4423591971200788e-17,2.1812127933313594e-17)
sum a = (-9.885668282222813e-18,-1.554146880247635e-16,-4.736882718565098e-17)
sum e = 4.144510619571348
sum de = 3.5236570605778894e-19
Info: CFL hydro = 0.011286749877651846 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011286749877651846 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0819e+04 | 800 | 1 | 3.843e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1057.564120754999 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.214477584437029, dt = 0.011286749877651846 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (0.8%)
patch tree reduce : 541.00 ns (0.1%)
gen split merge : 571.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 742.00 ns (0.2%)
LB compute : 425.17 us (97.1%)
LB move op cnt : 0
LB apply : 2.85 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6296374380391547e-17,-2.580758553071198e-17,2.0875236189293842e-17)
sum a = (-1.211683365694995e-16,1.7247795061129112e-16,1.0587550730260633e-16)
sum e = 4.144510618481372
sum de = 3.3881317890172014e-19
Info: CFL hydro = 0.01128656709290662 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01128656709290662 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0511e+04 | 800 | 1 | 3.900e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.7468287628365 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.22576433431468, dt = 0.01128656709290662 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (1.1%)
patch tree reduce : 1072.00 ns (0.3%)
gen split merge : 610.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 732.00 ns (0.2%)
LB compute : 383.73 us (96.3%)
LB move op cnt : 0
LB apply : 3.04 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4343205980388736e-17,-2.2749019677333346e-17,2.342004685770241e-17)
sum a = (-1.5823060565666939e-16,5.776825065284386e-17,2.808578272120606e-17)
sum e = 4.144510616308311
sum de = 6.844026213814747e-19
Info: CFL hydro = 0.011288145651466103 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011288145651466103 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0924e+04 | 800 | 1 | 3.823e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1062.7272091680916 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.237050901407587, dt = 0.011288145651466103 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (0.9%)
patch tree reduce : 791.00 ns (0.2%)
gen split merge : 631.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 408.44 us (96.7%)
LB move op cnt : 0
LB apply : 2.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.246792466382162e-17,-2.273404139205725e-17,2.404314352518797e-17)
sum a = (-2.5606876508012305e-17,4.1435928387789685e-17,8.175822126530169e-17)
sum e = 4.144510613256713
sum de = -2.7206698265808127e-18
Info: CFL hydro = 0.011289855827192576 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011289855827192576 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0645e+04 | 800 | 1 | 3.875e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.6842248354108 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.248339047059053, dt = 0.011289855827192576 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.59 us (0.9%)
patch tree reduce : 621.00 ns (0.2%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 378.82 us (96.6%)
LB move op cnt : 0
LB apply : 2.71 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2851368766889657e-17,-2.233561900371312e-17,2.2986425498959454e-17)
sum a = (-5.3646226544862465e-17,-1.6307158745790334e-16,-4.2518858413251366e-17)
sum e = 4.144510609565147
sum de = 2.202285662861181e-19
Info: CFL hydro = 0.011289148535607056 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011289148535607056 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0766e+04 | 800 | 1 | 3.852e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1055.010749282991 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.259628902886245, dt = 0.011289148535607056 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (0.9%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 369.53 us (96.3%)
LB move op cnt : 0
LB apply : 2.75 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2321137468115889e-17,-2.509162349451463e-17,2.187278998868178e-17)
sum a = (-1.1494336120875434e-16,1.8912182121008807e-16,7.88337110651441e-17)
sum e = 4.144510605508195
sum de = 3.5914196963582334e-19
Info: CFL hydro = 0.011289146186581896 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011289146186581896 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0966e+04 | 800 | 1 | 3.816e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1065.0950671976034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.270918051421852, dt = 0.011289146186581896 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (0.8%)
patch tree reduce : 521.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 461.00 ns (0.1%)
LB compute : 395.97 us (97.2%)
LB move op cnt : 0
LB apply : 2.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.039193432455483e-17,-2.0927660187760175e-17,2.530057057411616e-17)
sum a = (1.4004397167443463e-16,6.129114334978144e-17,1.347985761707461e-16)
sum e = 4.144510601509818
sum de = 6.098637220230962e-19
Info: CFL hydro = 0.011289838509052623 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011289838509052623 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1035e+04 | 800 | 1 | 3.803e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1068.5907699761135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.282207197608434, dt = 0.011289838509052623 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (0.8%)
patch tree reduce : 901.00 ns (0.2%)
gen split merge : 612.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.2%)
LB compute : 392.74 us (96.6%)
LB move op cnt : 0
LB apply : 2.92 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3404067493577568e-17,-2.0801842591440973e-17,2.691373189835161e-17)
sum a = (-1.318388670001897e-17,-1.8165664382848223e-16,-2.994159226691425e-17)
sum e = 4.144510597922136
sum de = -5.963111948670274e-19
Info: CFL hydro = 0.011285420775331952 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011285420775331952 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0641e+04 | 800 | 1 | 3.876e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.6413762536308 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.293497036117486, dt = 0.011285420775331952 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.1%)
patch tree reduce : 1203.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 393.04 us (95.8%)
LB move op cnt : 0
LB apply : 3.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2538322604619267e-17,-2.490289710003583e-17,2.5502777425343443e-17)
sum a = (-4.231852384768359e-17,-9.250588986516378e-17,-5.9206166039349e-17)
sum e = 4.144510594954989
sum de = 6.776263578034403e-21
Info: CFL hydro = 0.011277510907327374 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011277510907327374 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0527e+04 | 800 | 1 | 3.897e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1042.4367980169916 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.304782456892818, dt = 0.011277510907327374 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.62 us (1.1%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 406.58 us (95.7%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2130913245109479e-17,-2.5106601779790727e-17,2.363573416567818e-17)
sum a = (3.9123281141160586e-17,1.7758255023338435e-17,3.619951985526681e-17)
sum e = 4.144510592914341
sum de = -1.870248747537495e-18
Info: CFL hydro = 0.01126960594455397 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01126960594455397 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0894e+04 | 800 | 1 | 3.829e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1060.3296472175898 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.316059967800145, dt = 0.01126960594455397 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (1.0%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 591.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 385.00 us (96.0%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3192873671184627e-17,-2.441760065709035e-17,2.5305812973962793e-17)
sum a = (-3.9536681814780815e-17,5.1980641222160684e-17,1.1779522672532287e-16)
sum e = 4.144510592057263
sum de = -1.9786689647860456e-18
Info: CFL hydro = 0.011261481271597387 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011261481271597387 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0713e+04 | 800 | 1 | 3.862e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1050.4329912426754 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.327329573744699, dt = 0.011261481271597387 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (0.9%)
patch tree reduce : 822.00 ns (0.2%)
gen split merge : 581.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 386.77 us (96.5%)
LB move op cnt : 0
LB apply : 3.08 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.193919119357546e-17,-2.4025169582856655e-17,2.7318894515069983e-17)
sum a = (-1.4503773198548475e-16,-1.5154429910942052e-16,3.757153078655713e-17)
sum e = 4.1445105924761005
sum de = -6.098637220230962e-19
Info: CFL hydro = 0.011253848811029352 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011253848811029352 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0728e+04 | 800 | 1 | 3.860e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1050.4276692973374 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.338591055016296, dt = 0.011253848811029352 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (0.9%)
patch tree reduce : 901.00 ns (0.2%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 671.00 ns (0.2%)
LB compute : 376.15 us (96.5%)
LB move op cnt : 0
LB apply : 2.85 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.9512499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.505219836209995e-18,-2.605622506629516e-17,2.6077194665681694e-17)
sum a = (-1.260452662553961e-16,-2.5882476957092455e-18,-8.732939447374529e-17)
sum e = 4.144510594181439
sum de = -1.3755815063409838e-18
Info: CFL hydro = 0.011246754025464165 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011246754025464165 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0892e+04 | 800 | 1 | 3.829e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1058.027942120376 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.349844903827325, dt = 0.011246754025464165 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (1.1%)
patch tree reduce : 1383.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 701.00 ns (0.2%)
LB compute : 376.54 us (95.7%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (71.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9512499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.378852783447638e-18,-2.57476723896076e-17,2.5421145770588726e-17)
sum a = (-2.782965404298483e-17,2.233561900371312e-17,1.609087230640352e-16)
sum e = 4.144510597076224
sum de = 1.2807138162485021e-18
Info: CFL hydro = 0.011240235454887186 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011240235454887186 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0389e+04 | 800 | 1 | 3.924e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1031.9117265522193 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.36109165785279, dt = 0.011240235454887186 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (1.0%)
patch tree reduce : 1282.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 407.53 us (95.9%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.868642711975952e-18,-2.5223432404944268e-17,2.9899653068141184e-17)
sum a = (4.9584115577985457e-17,1.641020934848987e-17,1.8996659649965984e-16)
sum e = 4.144510600974967
sum de = 4.54009659728305e-19
Info: CFL hydro = 0.011234323861402069 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011234323861402069 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0606e+04 | 800 | 1 | 3.882e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1042.2519061534942 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.372331893307676, dt = 0.011234323861402069 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.1%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 385.70 us (95.7%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0035451134983765e-17,-2.5367223943594784e-17,3.065455864605638e-17)
sum a = (-3.37430810699872e-17,-1.375366067192163e-16,7.632335045287055e-17)
sum e = 4.1445106056179295
sum de = -2.710505431213761e-20
Info: CFL hydro = 0.01122904358996593 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01122904358996593 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9973e+04 | 800 | 1 | 4.005e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1009.7019180609622 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.383566217169077, dt = 0.01122904358996593 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.60 us (1.1%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 418.94 us (95.9%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.955516766577302e-18,-2.7733793017217818e-17,3.1349551082867196e-17)
sum a = (2.8446759396359947e-17,8.533192311432428e-17,9.45549192909336e-17)
sum e = 4.144510610693974
sum de = 3.2864878353466853e-19
Info: CFL hydro = 0.0112244118066561 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0112244118066561 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0635e+04 | 800 | 1 | 3.877e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1042.6969792609061 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.394795260759043, dt = 0.0112244118066561 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.54 us (1.0%)
patch tree reduce : 1453.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 416.06 us (95.9%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.580111262590471e-18,-2.478007516077185e-17,3.278596864084472e-17)
sum a = (1.9429831660150656e-16,1.1181589524310567e-16,1.4086178605050944e-16)
sum e = 4.144510615862522
sum de = -1.5415999640028266e-18
Info: CFL hydro = 0.011220438868266895 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011220438868266895 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0452e+04 | 800 | 1 | 3.912e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1033.0167644823312 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.4060196725657, dt = 0.011220438868266895 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.46 us (1.1%)
patch tree reduce : 1392.00 ns (0.3%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 379.75 us (95.4%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9512499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2986173334374514e-17,-2.3929308557089646e-17,3.312597571661208e-17)
sum a = (-6.256130194119432e-17,1.773069497843042e-16,1.1521297034372406e-17)
sum e = 4.144510620780337
sum de = 9.181837148236616e-19
Info: CFL hydro = 0.011217128124962466 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011217128124962466 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0856e+04 | 800 | 1 | 3.836e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1053.0577517423985 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.417240111433967, dt = 0.011217128124962466 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (1.1%)
patch tree reduce : 1342.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 374.23 us (95.5%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 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: 3.9512499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0494535578696082e-17,-2.1502826342362227e-17,3.210595448931e-17)
sum a = (-4.787059974240017e-17,-1.543781906836577e-16,5.650408337554142e-17)
sum e = 4.14451062512628
sum de = 5.065257024580716e-19
Info: CFL hydro = 0.011214476214831121 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011214476214831121 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0937e+04 | 800 | 1 | 3.821e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1056.8330948891314 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.42845723955893, dt = 0.011214476214831121 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (0.9%)
patch tree reduce : 1012.00 ns (0.2%)
gen split merge : 571.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 428.86 us (96.5%)
LB move op cnt : 0
LB apply : 3.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0099108847407169e-17,-2.5259380289606896e-17,3.461481727305594e-17)
sum a = (-5.811574687124926e-17,1.9459788230702848e-17,-5.065656080375387e-17)
sum e = 4.1445106286268825
sum de = 5.573476792933296e-19
Info: CFL hydro = 0.011212473459739802 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011212473459739802 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0861e+04 | 800 | 1 | 3.835e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1052.7730975406437 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.439671715773763, dt = 0.011212473459739802 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (0.9%)
patch tree reduce : 1062.00 ns (0.3%)
gen split merge : 601.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 402.49 us (96.5%)
LB move op cnt : 0
LB apply : 3.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.210147616270921e-18,-2.3752564790831723e-17,3.294623629329894e-17)
sum a = (1.9034404928861743e-16,6.19621705301505e-17,-5.675571856817983e-17)
sum e = 4.144510631075778
sum de = -6.577210835429642e-19
Info: CFL hydro = 0.011211104110036637 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011211104110036637 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0763e+04 | 800 | 1 | 3.853e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.6259829368091 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.450884189233502, dt = 0.011211104110036637 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (1.0%)
patch tree reduce : 1233.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 400.65 us (96.1%)
LB move op cnt : 0
LB apply : 3.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2778724083300595e-17,-2.3042594068744813e-17,3.1924717237469245e-17)
sum a = (-1.1878379355354515e-16,-1.3534378575479597e-16,-1.101682838627352e-16)
sum e = 4.144510632350136
sum de = 1.4331797467542762e-18
Info: CFL hydro = 0.011210346703683746 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011210346703683746 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0604e+04 | 800 | 1 | 3.883e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1039.4568323721028 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.46209529334354, dt = 0.011210346703683746 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.74 us (1.1%)
patch tree reduce : 1453.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 393.01 us (90.9%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.914501481379296e-18,-2.5810581187767198e-17,3.1529290506180337e-17)
sum a = (-1.1958662964434385e-17,1.4363576448364225e-16,6.020971115284737e-17)
sum e = 4.144510632417574
sum de = 2.473336205982557e-19
Info: CFL hydro = 0.011210174601513133 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011210174601513133 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9538e+04 | 800 | 1 | 4.095e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 985.6379421764132 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.473305640047224, dt = 0.011210174601513133 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (1.2%)
patch tree reduce : 1313.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1293.00 ns (0.3%)
LB compute : 393.51 us (95.6%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0090870790505317e-17,-2.1808383361994568e-17,3.247741596415716e-17)
sum a = (5.4083592474924444e-17,9.729894115351424e-18,-1.6763996446711238e-16)
sum e = 4.14451063134017
sum de = -1.0503208545953324e-18
Info: CFL hydro = 0.011210556252698164 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011210556252698164 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6134e+04 | 800 | 1 | 4.959e-02 | 0.0% | 1.0% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 813.8866421644127 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.484515814648738, dt = 0.011210556252698164 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.3%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 1012.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 391.56 us (95.3%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1645991259295898e-17,-2.3267268347886238e-17,2.9206158459857975e-17)
sum a = (1.0666935642223937e-16,-5.586301276572455e-17,-1.3927408781124334e-16)
sum e = 4.144510629269029
sum de = 1.1858461261560205e-19
Info: CFL hydro = 0.0112114560032428 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0112114560032428 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0884e+04 | 800 | 1 | 3.831e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1053.5614635578884 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.495726370901435, dt = 0.0042736290985647685 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (0.6%)
patch tree reduce : 1052.00 ns (0.1%)
gen split merge : 762.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.1%)
LB compute : 693.69 us (97.6%)
LB move op cnt : 0
LB apply : 3.28 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1921217251244147e-17,-2.3872391073040486e-17,2.893055801077782e-17)
sum a = (4.7439225126448626e-17,4.313746159515409e-18,8.148786321606817e-17)
sum e = 4.144510523006649
sum de = -1.0028870095490916e-18
Info: CFL hydro = 0.011212127006893531 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011212127006893531 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0138e+04 | 800 | 1 | 3.973e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 387.28043871308864 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 1830 [SPH][rank=0]
Info: time since start : 945.1608082890001 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15100918062442142 max=0.15125800288361693 delta=0.00024882225919550804
Number of particle pairs: 319600
Distance min=0.131567 max=2.274278 mean=0.931890
---------------- t = 15.5, dt = 0.011212127006893531 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.67 us (1.7%)
patch tree reduce : 1523.00 ns (0.2%)
gen split merge : 601.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.2%)
LB compute : 596.93 us (96.1%)
LB move op cnt : 0
LB apply : 4.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2296797754542233e-17,-2.3372116344818905e-17,2.9475767594827686e-17)
sum a = (-3.744571319023793e-18,-1.3351044363700193e-16,1.1119729206120293e-16)
sum e = 4.144510625510589
sum de = -1.4230153513872246e-19
Info: CFL hydro = 0.011213475854017574 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011213475854017574 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8234e+04 | 800 | 1 | 4.387e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 919.9809069933823 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.511212127006894, dt = 0.011213475854017574 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (0.9%)
patch tree reduce : 1523.00 ns (0.2%)
gen split merge : 1193.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.1%)
LB compute : 700.44 us (97.1%)
LB move op cnt : 0
LB apply : 3.85 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.182891356823021e-17,-2.5681767934392782e-17,3.2002604320904944e-17)
sum a = (-2.961506564789537e-17,-4.505468211049428e-17,-8.464229009521381e-17)
sum e = 4.144510621954965
sum de = 4.743384504624082e-20
Info: CFL hydro = 0.011215445249662415 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011215445249662415 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8056e+04 | 800 | 1 | 4.431e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 911.0955157906493 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.522425602860912, dt = 0.011215445249662415 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (1.2%)
patch tree reduce : 1032.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1383.00 ns (0.4%)
LB compute : 373.31 us (95.4%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1368705753122187e-17,-2.6131116492675636e-17,2.935594131261893e-17)
sum a = (4.69629156546688e-17,-1.3384595722718644e-16,-3.347047627796227e-17)
sum e = 4.144510618478043
sum de = -1.666960840196463e-18
Info: CFL hydro = 0.01121778698955027 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01121778698955027 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0680e+04 | 800 | 1 | 3.868e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.7133694076138 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.533641048110574, dt = 0.01121778698955027 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (0.9%)
patch tree reduce : 962.00 ns (0.2%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 42.79 us (9.7%)
LB compute : 381.73 us (86.8%)
LB move op cnt : 0
LB apply : 3.48 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2292865954657258e-17,-2.7865601927647455e-17,2.9305015142680205e-17)
sum a = (3.3597417245677176e-17,-4.541416095712056e-17,5.157510414831041e-17)
sum e = 4.14451061532866
sum de = -2.642742795433417e-19
Info: CFL hydro = 0.011220453984263462 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011220453984263462 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1053e+04 | 800 | 1 | 3.800e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1062.7781563051312 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.544858835100126, dt = 0.011220453984263462 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (0.9%)
patch tree reduce : 1052.00 ns (0.2%)
gen split merge : 591.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 721.00 ns (0.2%)
LB compute : 408.58 us (96.5%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3049269361100064e-17,-2.7533083994518143e-17,3.154726444851165e-17)
sum a = (4.769086031908703e-18,8.869541409092516e-17,4.310731779603595e-17)
sum e = 4.144510612792567
sum de = 1.1655173354219173e-18
Info: CFL hydro = 0.011223397355588768 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011223397355588768 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1125e+04 | 800 | 1 | 3.787e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1066.6456880205149 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.556079289084389, dt = 0.011223397355588768 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (1.1%)
patch tree reduce : 1072.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 387.61 us (96.0%)
LB move op cnt : 0
LB apply : 3.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2157125244342646e-17,-2.6201514433473283e-17,3.02486471150742e-17)
sum a = (9.469871082958411e-17,7.795897920502015e-17,1.3753997683340343e-16)
sum e = 4.1445106111289185
sum de = 4.0657581468206416e-19
Info: CFL hydro = 0.01122656761357283 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01122656761357283 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0936e+04 | 800 | 1 | 3.821e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1057.3744164406694 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.567302686439978, dt = 0.01122656761357283 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.56 us (0.8%)
patch tree reduce : 1032.00 ns (0.2%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 711.00 ns (0.2%)
LB compute : 405.65 us (96.6%)
LB move op cnt : 0
LB apply : 2.95 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3919882192773097e-17,-2.5075147380710926e-17,3.260323356047636e-17)
sum a = (5.3178904044248294e-17,7.021820137433416e-18,1.240149596862214e-16)
sum e = 4.144510610529641
sum de = -1.5788694136820158e-18
Info: CFL hydro = 0.011229915324319608 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011229915324319608 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0280e+04 | 800 | 1 | 3.945e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1024.537670859811 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.578529254053551, dt = 0.011229915324319608 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.36 us (1.0%)
patch tree reduce : 1143.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 711.00 ns (0.2%)
LB compute : 399.33 us (96.1%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4331972266431665e-17,-2.541215879942307e-17,3.3958768377962974e-17)
sum a = (-2.7721810388996943e-17,-9.468672820136324e-17,9.33746304111773e-18)
sum e = 4.1445106111010945
sum de = 2.710505431213761e-19
Info: CFL hydro = 0.011233391620572237 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011233391620572237 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0529e+04 | 800 | 1 | 3.897e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1037.418297497993 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.58975916937787, dt = 0.011233391620572237 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (1.2%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 384.73 us (95.4%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3574819945725055e-17,-2.742524034053026e-17,3.2962712407102645e-17)
sum a = (1.689191100296909e-16,5.876280879517658e-17,3.213890671691741e-17)
sum e = 4.1445106128573315
sum de = 2.303929616531697e-19
Info: CFL hydro = 0.011236948701511082 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011236948701511082 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0576e+04 | 800 | 1 | 3.888e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.1450658942895 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.600992560998442, dt = 0.011236948701511082 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (1.0%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 642.00 ns (0.2%)
LB compute : 371.13 us (96.0%)
LB move op cnt : 0
LB apply : 3.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6597063457309157e-17,-2.5710975590681167e-17,3.4101062088085877e-17)
sum a = (2.57285001844542e-16,9.988718884922347e-17,-5.698039284732125e-17)
sum e = 4.144510615715527
sum de = -1.0164395367051604e-19
Info: CFL hydro = 0.011240540743334873 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011240540743334873 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0876e+04 | 800 | 1 | 3.832e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1055.6395203500226 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.612229509699953, dt = 0.011240540743334873 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (1.1%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 571.00 ns (0.1%)
LB compute : 388.33 us (96.1%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0330026605243975e-17,-2.4226253062688232e-17,3.316791491538515e-17)
sum a = (2.5666789649116686e-17,6.027261995100697e-17,1.318238887149136e-16)
sum e = 4.144510619504112
sum de = 2.15485181781494e-18
Info: CFL hydro = 0.011244124391275779 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011244124391275779 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0929e+04 | 800 | 1 | 3.822e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1058.6597222587031 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.623470050443288, dt = 0.011244124391275779 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (1.1%)
patch tree reduce : 1062.00 ns (0.2%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 408.48 us (95.8%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8801492592818463e-17,-2.3871267701644776e-17,3.515852902857819e-17)
sum a = (6.570075053506385e-17,-1.4498980147260125e-18,1.6257430838673698e-17)
sum e = 4.1445106239750205
sum de = 2.642742795433417e-19
Info: CFL hydro = 0.011247659060569414 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011247659060569414 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0727e+04 | 800 | 1 | 3.860e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.7634967006743 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.634714174834563, dt = 0.011247659060569414 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (1.0%)
patch tree reduce : 941.00 ns (0.2%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1071.00 ns (0.3%)
LB compute : 396.26 us (96.1%)
LB move op cnt : 0
LB apply : 3.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9645518968126427e-17,-2.441947294274986e-17,3.384942689544748e-17)
sum a = (5.611464795836295e-17,-6.020072418168171e-17,6.906487340807484e-17)
sum e = 4.144510628822138
sum de = 4.0657581468206416e-20
Info: CFL hydro = 0.01125063495316073 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01125063495316073 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0769e+04 | 800 | 1 | 3.852e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1051.2305752661175 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.645961833895132, dt = 0.01125063495316073 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (0.9%)
patch tree reduce : 952.00 ns (0.2%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1213.00 ns (0.3%)
LB compute : 402.07 us (96.2%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 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: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0493289914753414e-17,-2.475142919018132e-17,3.6520055160175245e-17)
sum a = (-5.474862834118307e-17,-2.7731396491573643e-16,-4.910181479209519e-17)
sum e = 4.144510633695448
sum de = -5.929230630780102e-19
Info: CFL hydro = 0.01125338877040293 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01125338877040293 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0504e+04 | 800 | 1 | 3.902e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1038.0652373950336 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.657212468848293, dt = 0.01125338877040293 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (1.1%)
patch tree reduce : 1213.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 388.05 us (95.9%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.992935747410843e-17,-2.977346101469008e-17,3.390934003655186e-17)
sum a = (3.005243157795735e-17,7.127267265777127e-17,3.431225591047882e-17)
sum e = 4.1445106382550705
sum de = 1.6974540262976179e-18
Info: CFL hydro = 0.01125608954288106 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01125608954288106 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0846e+04 | 800 | 1 | 3.838e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1055.6350869843388 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.668465857618695, dt = 0.01125608954288106 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (1.1%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 422.13 us (95.9%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0231169922421748e-17,-2.6799522473121382e-17,3.527535965373174e-17)
sum a = (9.823358615474257e-17,-2.5481058911693107e-17,-2.5403171828257412e-17)
sum e = 4.144510642178888
sum de = -2.473336205982557e-19
Info: CFL hydro = 0.011258720150395437 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011258720150395437 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0219e+04 | 800 | 1 | 3.957e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1024.1440451015435 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.679721947161577, dt = 0.011258720150395437 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.82 us (0.9%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 400.74 us (96.1%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1069953897883078e-17,-2.734510651430315e-17,3.5233420454958673e-17)
sum a = (-1.950771874358635e-17,5.852016057370383e-17,-1.6476113803704688e-19)
sum e = 4.144510645187987
sum de = -8.809142651444724e-20
Info: CFL hydro = 0.011261265307301824 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011261265307301824 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0719e+04 | 800 | 1 | 3.861e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1049.7291799903467 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.690980667311972, dt = 0.011261265307301824 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (1.0%)
patch tree reduce : 922.00 ns (0.2%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 601.00 ns (0.1%)
LB compute : 387.97 us (96.6%)
LB move op cnt : 0
LB apply : 3.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1357536975184106e-17,-2.6274908031326148e-17,3.5095620230418597e-17)
sum a = (-7.037397554120555e-17,-2.6889916424762617e-16,2.2149888266289538e-17)
sum e = 4.144510647072467
sum de = -2.388632911257127e-19
Info: CFL hydro = 0.011263711785953805 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011263711785953805 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0546e+04 | 800 | 1 | 3.894e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.2015081622135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.702241932619275, dt = 0.011263711785953805 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.3%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 423.40 us (95.7%)
LB move op cnt : 0
LB apply : 3.69 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9825258391439567e-17,-3.142631479490718e-17,3.434371030955862e-17)
sum a = (2.655350413746152e-17,-4.5363234787181834e-17,-4.667233692031255e-18)
sum e = 4.144510647708964
sum de = -1.919853114511075e-18
Info: CFL hydro = 0.011266048366609034 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011266048366609034 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0383e+04 | 800 | 1 | 3.925e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1033.1334397897995 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.71350564440523, dt = 0.011266048366609034 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.2%)
patch tree reduce : 1342.00 ns (0.3%)
gen split merge : 991.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 397.95 us (95.3%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 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: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0953123272729537e-17,-3.037277965429984e-17,3.5257385711400423e-17)
sum a = (6.602428149702752e-17,-1.8968500473646924e-17,-6.742624899887003e-17)
sum e = 4.144510647070544
sum de = 7.623296525288703e-21
Info: CFL hydro = 0.011268265800415695 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011268265800415695 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0743e+04 | 800 | 1 | 3.857e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1051.6002656264168 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.724771692771839, dt = 0.011268265800415695 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.19 us (1.1%)
patch tree reduce : 1263.00 ns (0.3%)
gen split merge : 1112.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.2%)
LB compute : 373.51 us (95.7%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.118528669450901e-17,-3.044523710932295e-17,3.413401431569329e-17)
sum a = (-1.0962906559279578e-16,-4.0297578706806446e-17,-1.1846026259158148e-16)
sum e = 4.1445106452305716
sum de = -2.180262806232569e-18
Info: CFL hydro = 0.011270356836107545 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011270356836107545 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0674e+04 | 800 | 1 | 3.870e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.3413407431235 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.736039958572254, dt = 0.011270356836107545 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (1.0%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 373.61 us (95.9%)
LB move op cnt : 0
LB apply : 3.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8967002645119315e-17,-3.1194993901674485e-17,3.1989123864156457e-17)
sum a = (2.47561099043301e-17,-7.745570881974335e-17,-1.7638428741129674e-16)
sum e = 4.144510642357245
sum de = 5.454892180317694e-19
Info: CFL hydro = 0.011267213267062596 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011267213267062596 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0770e+04 | 800 | 1 | 3.852e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1053.4001458280852 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.747310315408361, dt = 0.011267213267062596 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (1.0%)
patch tree reduce : 1022.00 ns (0.2%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 400.27 us (96.1%)
LB move op cnt : 0
LB apply : 3.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0355489690213338e-17,-3.2194888058136815e-17,3.12716639994315e-17)
sum a = (5.640822234977442e-17,-3.697839068962376e-17,-7.958262532894887e-17)
sum e = 4.144510638597153
sum de = -5.658180087658726e-19
Info: CFL hydro = 0.01126434459387748 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01126434459387748 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0871e+04 | 800 | 1 | 3.833e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1058.204882721846 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.758577528675424, dt = 0.01126434459387748 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.46 us (1.1%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.2%)
LB compute : 394.15 us (95.6%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0685011966287432e-17,-3.259724224636592e-17,2.9140254004643155e-17)
sum a = (2.3301418838315734e-16,9.495034602222251e-17,2.0043342225059515e-16)
sum e = 4.144510634387942
sum de = 9.554531645028508e-19
Info: CFL hydro = 0.011262271465314071 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011262271465314071 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0812e+04 | 800 | 1 | 3.844e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1054.9547682822229 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.769841873269302, dt = 0.011262271465314071 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.3%)
patch tree reduce : 1243.00 ns (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 370.38 us (95.3%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.490739058561866e-17,-3.0615989561470435e-17,3.331619993961849e-17)
sum a = (1.474851837995987e-16,1.4242551903333376e-16,1.0994061392653856e-16)
sum e = 4.1445106300933015
sum de = -9.046311876675928e-19
Info: CFL hydro = 0.011261003035175184 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011261003035175184 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0800e+04 | 800 | 1 | 3.846e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1054.1492795923389 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.781104144734616, dt = 0.011261003035175184 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (0.9%)
patch tree reduce : 982.00 ns (0.2%)
gen split merge : 662.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.2%)
LB compute : 390.60 us (96.4%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.9537499999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.59363987840864e-17,-2.9036154921974293e-17,3.455190847489634e-17)
sum a = (-1.5339486625528206e-16,1.010854516713111e-16,2.925558680126909e-17)
sum e = 4.144510626078649
sum de = 1.883801274693564e-18
Info: CFL hydro = 0.011260540734857336 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011260540734857336 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0892e+04 | 800 | 1 | 3.829e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1058.7138714114287 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.792365147769791, dt = 0.011260540734857336 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (1.2%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 402.03 us (95.7%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (73.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9537499999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.254980848316128e-17,-2.7959216210623054e-17,3.4246351455264e-17)
sum a = (9.382098331240494e-17,2.8638481447893965e-17,-1.66636419353614e-16)
sum e = 4.144510622689761
sum de = 2.6156377411212794e-18
Info: CFL hydro = 0.011260878446759746 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011260878446759746 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0622e+04 | 800 | 1 | 3.879e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.9585284724612 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.803625688504649, dt = 0.011260878446759746 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.21 us (1.0%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 415.33 us (96.0%)
LB move op cnt : 0
LB apply : 3.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.9537499999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4989771154637183e-17,-2.84549974532618e-17,3.215088934513828e-17)
sum a = (-4.7888573684731483e-17,1.379919465916096e-16,1.0438666574616247e-16)
sum e = 4.14451062023096
sum de = -1.5043305143236374e-18
Info: CFL hydro = 0.011262002734137163 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011262002734137163 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0994e+04 | 800 | 1 | 3.811e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1063.855517991564 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.814886566951408, dt = 0.011262002734137163 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.58 us (1.2%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 692.00 ns (0.2%)
LB compute : 365.84 us (95.9%)
LB move op cnt : 0
LB apply : 2.96 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.95375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4168961121507167e-17,-2.6279401516908978e-17,3.4706184813240124e-17)
sum a = (-1.3059866497932902e-16,-1.5297023186770477e-16,-1.3395979219528477e-16)
sum e = 4.144510618941233
sum de = 9.147955830346444e-19
Info: CFL hydro = 0.011263893326269852 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011263893326269852 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0521e+04 | 800 | 1 | 3.898e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1039.9750734297602 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.826148569685545, dt = 0.011263893326269852 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (1.1%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 396.05 us (95.9%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.9587499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1582211254325534e-17,-2.958960256292601e-17,3.056618676292742e-17)
sum a = (1.4397127807382678e-16,5.909832238536111e-17,-7.339958916697678e-17)
sum e = 4.1445106189761445
sum de = -7.995991022080595e-19
Info: CFL hydro = 0.011266523203186692 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011266523203186692 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0578e+04 | 800 | 1 | 3.888e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.0540645594256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.837412463011814, dt = 0.011266523203186692 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.3%)
patch tree reduce : 1142.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 390.24 us (95.8%)
LB move op cnt : 0
LB apply : 3.10 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.9587499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4699192420280937e-17,-2.7533083994518143e-17,3.123272045771365e-17)
sum a = (-8.3003665686009e-17,2.3107300261137545e-16,2.9327482570594346e-17)
sum e = 4.14451062039577
sum de = -8.876905287225068e-19
Info: CFL hydro = 0.011269858666519436 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011269858666519436 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0965e+04 | 800 | 1 | 3.816e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1062.8928893387338 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.848678986215, dt = 0.011269858666519436 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (1.0%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 391.50 us (96.0%)
LB move op cnt : 0
LB apply : 3.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.9587499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2485401856474072e-17,-2.385741278776439e-17,3.317839971507841e-17)
sum a = (7.53707315093109e-17,-9.317691704553284e-17,-5.677968382462157e-17)
sum e = 4.144510623162195
sum de = -8.199278929421627e-19
Info: CFL hydro = 0.011273860089715607 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011273860089715607 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0834e+04 | 800 | 1 | 3.840e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1056.5977874470577 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.85994884488152, dt = 0.011273860089715607 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (1.1%)
patch tree reduce : 1243.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 682.00 ns (0.2%)
LB compute : 378.45 us (95.8%)
LB move op cnt : 0
LB apply : 3.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.9587499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4523946482550624e-17,-2.7182592119057516e-17,3.142818708056669e-17)
sum a = (-1.3132960530080246e-17,2.3701638620893e-17,-5.885267850683315e-17)
sum e = 4.144510627139942
sum de = -5.861467994999758e-19
Info: CFL hydro = 0.011278482072320774 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011278482072320774 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0842e+04 | 800 | 1 | 3.838e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1057.355861701277 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.871222704971236, dt = 0.011278482072320774 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.54 us (1.1%)
patch tree reduce : 1062.00 ns (0.3%)
gen split merge : 682.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.2%)
LB compute : 385.25 us (95.9%)
LB move op cnt : 0
LB apply : 3.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 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: 3.9587499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3473968684696353e-17,-2.5702737533779314e-17,2.977533330034959e-17)
sum a = (6.202208367125488e-17,-5.47366457129622e-17,9.717012790013982e-17)
sum e = 4.144510632105744
sum de = 1.3078188705606397e-18
Info: CFL hydro = 0.011280388366830676 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011280388366830676 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0357e+04 | 800 | 1 | 3.930e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1033.17268230847 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.882501187043557, dt = 0.011280388366830676 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.84 us (1.2%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 383.54 us (95.4%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.9587499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4708179391446594e-17,-2.7029813609241347e-17,3.2763501212930575e-17)
sum a = (-1.8261525408615233e-16,1.1587201489587225e-17,1.4195819653271959e-16)
sum e = 4.144510637701935
sum de = -3.1509625637859973e-18
Info: CFL hydro = 0.011280382650929772 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011280382650929772 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0535e+04 | 800 | 1 | 3.896e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1042.377953741205 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.893781575410388, dt = 0.011280382650929772 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.32 us (1.1%)
patch tree reduce : 1363.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 380.82 us (95.5%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 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: 3.9587499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0965105900950412e-17,-2.658046505095849e-17,3.3145447487471e-17)
sum a = (7.987619972036033e-17,-1.142423774578331e-16,8.749115995472712e-17)
sum e = 4.1445106435918335
sum de = -2.0328790734103208e-20
Info: CFL hydro = 0.011280397859252398 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011280397859252398 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0781e+04 | 800 | 1 | 3.850e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1054.8712248577076 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.905061958061317, dt = 0.011280397859252398 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (1.1%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 372.51 us (95.5%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.9587499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3685162507089294e-17,-2.872835115955054e-17,3.4645522757871935e-17)
sum a = (-1.0924562148972774e-16,-1.42209831725358e-16,5.409557510314532e-17)
sum e = 4.144510649442638
sum de = 1.362028979184915e-18
Info: CFL hydro = 0.011280453224678876 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011280453224678876 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0592e+04 | 800 | 1 | 3.885e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1045.3000209579955 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.91634235592057, dt = 0.011280453224678876 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.60 us (1.1%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 409.38 us (95.7%)
LB move op cnt : 0
LB apply : 3.59 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.9587499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.119127800861945e-17,-3.003146197857082e-17,3.4121282773208604e-17)
sum a = (-7.251886599274238e-17,1.0496782321487496e-17,-1.9244100922727076e-17)
sum e = 4.1445106548948605
sum de = -6.615327318056086e-19
Info: CFL hydro = 0.011280565877695076 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011280565877695076 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0766e+04 | 800 | 1 | 3.853e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1054.102574295605 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.927622809145248, dt = 0.011280565877695076 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (1.0%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 392.24 us (95.9%)
LB move op cnt : 0
LB apply : 3.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.9587499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0474567058158295e-17,-2.933347388470478e-17,3.359479604575386e-17)
sum a = (-3.631934613747557e-17,-2.3527890511690295e-17,-7.555346658967926e-17)
sum e = 4.144510659620313
sum de = 1.104319204982794e-19
Info: CFL hydro = 0.011280751323612245 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011280751323612245 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0938e+04 | 800 | 1 | 3.821e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1062.8743146829622 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.938903375022942, dt = 0.011280751323612245 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (0.9%)
patch tree reduce : 802.00 ns (0.2%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 552.00 ns (0.1%)
LB compute : 389.35 us (96.8%)
LB move op cnt : 0
LB apply : 2.77 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 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: 3.9587499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0022971757084025e-17,-2.9642026561392345e-17,3.3784271354496465e-17)
sum a = (-5.918220078290724e-17,-9.879077836701331e-17,8.037947010563712e-17)
sum e = 4.144510663346455
sum de = 6.005463596032989e-19
Info: CFL hydro = 0.011279180048236363 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011279180048236363 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0820e+04 | 800 | 1 | 3.843e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1056.8816470027655 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.950184126346555, dt = 0.011279180048236363 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (1.0%)
patch tree reduce : 902.00 ns (0.2%)
gen split merge : 662.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 378.88 us (96.2%)
LB move op cnt : 0
LB apply : 3.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9587499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.96962579094992e-17,-3.150532524973858e-17,3.565805484253597e-17)
sum a = (-9.605274781854312e-17,8.75840253234389e-17,7.147637733752616e-17)
sum e = 4.1445106658351545
sum de = 3.9641141931501256e-19
Info: CFL hydro = 0.01127480997187582 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01127480997187582 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0338e+04 | 800 | 1 | 3.934e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1032.2568683616378 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.96146330639479, dt = 0.01127480997187582 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (1.0%)
patch tree reduce : 961.00 ns (0.2%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 375.29 us (96.0%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9587499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7982554845347962e-17,-2.918668668899905e-17,3.4735392469528506e-17)
sum a = (9.242201146761765e-17,-7.772232229765785e-18,-1.839033866198965e-17)
sum e = 4.144510666954516
sum de = 4.980553729855286e-19
Info: CFL hydro = 0.011270937310793152 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011270937310793152 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0958e+04 | 800 | 1 | 3.817e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1063.3298913266642 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.972738116366667, dt = 0.011270937310793152 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (0.8%)
patch tree reduce : 1133.00 ns (0.3%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.1%)
LB compute : 396.94 us (96.8%)
LB move op cnt : 0
LB apply : 2.98 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.9587499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0440538266296665e-17,-2.9477265423355295e-17,3.405163374667476e-17)
sum a = (-2.1892261759540702e-16,-4.9461293638721477e-17,-7.528685311176477e-17)
sum e = 4.144510666770373
sum de = -5.285485590866834e-19
Info: CFL hydro = 0.011267598765788577 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011267598765788577 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0687e+04 | 800 | 1 | 3.867e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1049.2152076815482 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.984009053677461, dt = 0.011267598765788577 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (0.9%)
patch tree reduce : 1153.00 ns (0.3%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 661.00 ns (0.2%)
LB compute : 392.87 us (96.4%)
LB move op cnt : 0
LB apply : 3.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (66.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9587499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6510891509830123e-17,-3.0169262203110894e-17,3.439763213655256e-17)
sum a = (-1.0707077446763873e-16,-1.5743975219409157e-16,-6.700086569702893e-17)
sum e = 4.144510665371788
sum de = 5.149960319306146e-19
Info: CFL hydro = 0.011261020238302253 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011261020238302253 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0880e+04 | 800 | 1 | 3.831e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1058.7090303734537 (tsim/hr) [sph::Model][rank=0]
---------------- t = 15.99527665244325, dt = 0.004723347556749857 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (1.0%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 403.24 us (95.9%)
LB move op cnt : 0
LB apply : 3.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 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: 3.9587499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5998025660548327e-17,-3.1813877926426143e-17,3.384043992428182e-17)
sum a = (8.724551607619916e-17,-1.4870441622107288e-17,-5.79959205890405e-18)
sum e = 4.144510561812239
sum de = -1.4907779871675686e-19
Info: CFL hydro = 0.011257264790229277 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011257264790229277 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0758e+04 | 800 | 1 | 3.854e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 441.2185755133427 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 1875 [SPH][rank=0]
Info: time since start : 947.879573121 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.1510472869553924 max=0.15129118777181927 delta=0.0002439008164268619
Number of particle pairs: 319600
Distance min=0.128827 max=2.270155 mean=0.931778
---------------- t = 16, dt = 0.011257264790229277 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.80 us (1.4%)
patch tree reduce : 1262.00 ns (0.2%)
gen split merge : 571.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.1%)
LB compute : 691.66 us (96.5%)
LB move op cnt : 0
LB apply : 4.69 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (77.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9587499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7393346548299566e-17,-3.1993617349739284e-17,3.410031317382207e-17)
sum a = (1.470088743278189e-16,2.875830773010273e-17,-6.165062219640773e-17)
sum e = 4.144510661679312
sum de = -8.876905287225068e-19
Info: CFL hydro = 0.011247611501928989 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011247611501928989 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7811e+04 | 800 | 1 | 4.492e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 902.2460075514762 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.011257264790228, dt = 0.011247611501928989 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (1.1%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.3%)
LB compute : 408.18 us (95.8%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (72.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9393883775488028e-17,-3.1283646627652376e-17,3.193744877995393e-17)
sum a = (-1.0516853223757463e-16,-4.793051288350455e-20,3.167008638777563e-17)
sum e = 4.144510657974206
sum de = 1.917682592583736e-18
Info: CFL hydro = 0.011239793270889538 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011239793270889538 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0289e+04 | 800 | 1 | 3.943e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1026.912869875732 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.022504876292157, dt = 0.011239793270889538 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.1%)
patch tree reduce : 1422.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 421.82 us (95.7%)
LB move op cnt : 0
LB apply : 4.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 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: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7028063616128794e-17,-3.1241707428879306e-17,3.393030963593839e-17)
sum a = (-7.913627242772123e-17,-1.4201810967382397e-16,-1.3517003764559326e-16)
sum e = 4.144510653995075
sum de = -1.0164395367051604e-18
Info: CFL hydro = 0.01123340577012602 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01123340577012602 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0545e+04 | 800 | 1 | 3.894e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1039.1665110619656 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.033744669563045, dt = 0.01123340577012602 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (1.0%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.2%)
LB compute : 422.01 us (95.9%)
LB move op cnt : 0
LB apply : 3.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6297872208919156e-17,-3.378502026876027e-17,3.101853097826549e-17)
sum a = (2.225248952043079e-16,9.423138832896995e-17,1.4288085890572707e-16)
sum e = 4.144510650035699
sum de = -1.0028870095490916e-18
Info: CFL hydro = 0.011228490162169721 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011228490162169721 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9185e+04 | 800 | 1 | 4.170e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 969.8306148622579 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.044978075333173, dt = 0.011228490162169721 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.32 us (0.6%)
patch tree reduce : 1212.00 ns (0.2%)
gen split merge : 781.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.1%)
LB compute : 678.85 us (97.5%)
LB move op cnt : 0
LB apply : 3.82 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1015470385191282e-17,-3.157422536200862e-17,3.433022985281013e-17)
sum a = (-8.342904898785011e-19,-1.5836241456709903e-16,1.783015079266369e-17)
sum e = 4.1445106463929235
sum de = 7.115076756936123e-19
Info: CFL hydro = 0.011225069071760891 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011225069071760891 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9914e+04 | 800 | 1 | 4.017e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1006.2429301122739 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.056206565495344, dt = 0.011225069071760891 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.2%)
patch tree reduce : 1422.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 389.13 us (95.5%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9232867208770006e-17,-3.430626459636838e-17,3.4102559916613486e-17)
sum a = (-7.981628657925595e-17,-6.74861621399744e-17,1.5413554246218498e-16)
sum e = 4.144510643353693
sum de = 1.9651164376299768e-19
Info: CFL hydro = 0.01122314298546776 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01122314298546776 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0735e+04 | 800 | 1 | 3.858e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.3621631754604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.067431634567104, dt = 0.01122314298546776 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.4%)
patch tree reduce : 1413.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1273.00 ns (0.3%)
LB compute : 391.73 us (95.2%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (75.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8180642668124318e-17,-3.5001257033179194e-17,3.646912899023652e-17)
sum a = (-8.54421305289573e-17,-1.2576966580631594e-16,1.8755808822726373e-17)
sum e = 4.144510641151628
sum de = 1.4433441421213278e-18
Info: CFL hydro = 0.01122269178737934 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01122269178737934 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1065e+04 | 800 | 1 | 3.798e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1063.8596158524283 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.078654777552572, dt = 0.01122269178737934 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.3%)
patch tree reduce : 1473.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 412.14 us (95.5%)
LB move op cnt : 0
LB apply : 4.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6869668249334088e-17,-3.661591618594226e-17,3.5971849919070164e-17)
sum a = (-3.4258334083484876e-17,-1.6267616072661444e-16,-1.474043010591078e-16)
sum e = 4.144510639951557
sum de = -1.2197274440461925e-19
Info: CFL hydro = 0.011223674116721054 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011223674116721054 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0144e+04 | 800 | 1 | 3.971e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1017.3221930445123 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.08987746933995, dt = 0.011223674116721054 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.2%)
patch tree reduce : 1673.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.3%)
LB compute : 469.38 us (95.9%)
LB move op cnt : 0
LB apply : 3.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (74.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7001289931197774e-17,-3.826802105189555e-17,3.335551793846824e-17)
sum a = (1.5761350030329426e-16,-3.733786953625004e-17,1.1793901826397338e-17)
sum e = 4.1445106398389715
sum de = 4.87890977618477e-19
Info: CFL hydro = 0.011226029217294233 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011226029217294233 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0839e+04 | 800 | 1 | 3.839e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1052.518237539146 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.10110114345667, dt = 0.011226029217294233 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.2%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.2%)
LB compute : 407.89 us (95.6%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 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: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.997288811569208e-17,-3.7972948831956476e-17,3.391008895081566e-17)
sum a = (6.484998393138165e-17,-6.353189482708527e-17,-1.2291180897563698e-17)
sum e = 4.144510640816264
sum de = -5.10930273783794e-18
Info: CFL hydro = 0.011229677120523434 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011229677120523434 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0578e+04 | 800 | 1 | 3.888e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1039.5359434446352 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.112327172673965, dt = 0.011229677120523434 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.2%)
patch tree reduce : 1743.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 398.94 us (91.7%)
LB move op cnt : 0
LB apply : 3.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0394620460497138e-17,-3.927456182244915e-17,3.302599566239414e-17)
sum a = (-8.278797837803323e-17,-2.789555849819965e-17,7.081733278537798e-18)
sum e = 4.14451064280339
sum de = -1.1519648082658485e-19
Info: CFL hydro = 0.011234521216865483 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011234521216865483 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0707e+04 | 800 | 1 | 3.863e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1046.4117624403154 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.12355684979449, dt = 0.011234521216865483 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (1.2%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 671.00 ns (0.2%)
LB compute : 387.44 us (95.6%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.96125
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8163043182924906e-17,-3.9272315079657736e-17,3.469289158505759e-17)
sum a = (-8.184135074858402e-18,-7.393281612280577e-17,-1.4538522820389016e-16)
sum e = 4.14451064564681
sum de = -4.0996394647108136e-19
Info: CFL hydro = 0.011240448943929003 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011240448943929003 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0699e+04 | 800 | 1 | 3.865e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1046.424657324159 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.134791371011357, dt = 0.011240448943929003 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.93 us (1.2%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 398.46 us (95.5%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.96125
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8539372600486797e-17,-4.0610624869076836e-17,3.140422182412494e-17)
sum a = (4.960808083442721e-18,-4.4791064289635003e-17,-5.443408435038507e-17)
sum e = 4.144510649132042
sum de = -2.642742795433417e-19
Info: CFL hydro = 0.011247333595327619 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011247333595327619 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0381e+04 | 800 | 1 | 3.925e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1030.8883796114303 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.146031819955287, dt = 0.011247333595327619 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.2%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 406.51 us (95.5%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (73.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96125
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9119781154935487e-17,-4.0918803088632496e-17,3.151300162094258e-17)
sum a = (6.734237060132389e-18,-3.990215197551754e-17,-6.88401991289334e-17)
sum e = 4.144510653000862
sum de = -1.2807138162485021e-18
Info: CFL hydro = 0.01125503659106145 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01125503659106145 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0696e+04 | 800 | 1 | 3.865e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.5020787673257 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.157279153550615, dt = 0.01125503659106145 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (1.2%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 393.07 us (95.7%)
LB move op cnt : 0
LB apply : 3.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.96125
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8851669848493383e-17,-4.103151468533511e-17,3.0563940020136004e-17)
sum a = (-1.0689702635843602e-16,7.122474214488775e-17,-1.1733689119587435e-16)
sum e = 4.144510656972504
sum de = 9.215718466126788e-19
Info: CFL hydro = 0.011263408815590601 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011263408815590601 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0625e+04 | 800 | 1 | 3.879e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.5944777648178 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.168534190141678, dt = 0.011263408815590601 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (1.2%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 400.00 us (95.6%)
LB move op cnt : 0
LB apply : 3.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96125
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7240006352785543e-17,-3.995232923119246e-17,2.71581119840594e-17)
sum a = (1.4248543217443815e-16,-1.0470420539401568e-16,7.207550874856997e-17)
sum e = 4.14451066076519
sum de = -6.310395457044538e-20
Info: CFL hydro = 0.01126380607472714 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01126380607472714 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8728e+04 | 800 | 1 | 4.272e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 949.2415900370418 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.17979759895727, dt = 0.01126380607472714 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (1.2%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 403.44 us (95.5%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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: 3.96125
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.051351059987614e-17,-4.170104403717657e-17,3.0788895142126356e-17)
sum a = (4.2622208581656417e-17,-1.360387781916068e-16,1.6816120879472048e-16)
sum e = 4.144510663950158
sum de = 3.935315072943479e-18
Info: CFL hydro = 0.011262914122080522 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011262914122080522 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0607e+04 | 800 | 1 | 3.882e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.4957123204726 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.191061405031995, dt = 0.011262914122080522 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (1.2%)
patch tree reduce : 1403.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.2%)
LB compute : 411.38 us (95.7%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.96125
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9660497253402523e-17,-4.3433282729356974e-17,3.194999309387266e-17)
sum a = (-1.7029711227509167e-16,4.332918364668811e-17,-1.2897801451245553e-16)
sum e = 4.144510666439699
sum de = -9.012430558785756e-19
Info: CFL hydro = 0.011262412951140027 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011262412951140027 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9847e+04 | 800 | 1 | 4.031e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1005.8985198836182 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.202324319154076, dt = 0.011262412951140027 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.3%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 394.32 us (95.1%)
LB move op cnt : 0
LB apply : 3.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 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: 3.96125
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6606424885606716e-17,-4.220506333671717e-17,3.0185176631216746e-17)
sum a = (1.383993559511194e-16,-1.026911238529085e-17,-5.049779097982726e-17)
sum e = 4.144510668122463
sum de = -1.6296913905172739e-18
Info: CFL hydro = 0.011262317029083651 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011262317029083651 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0401e+04 | 800 | 1 | 3.921e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1033.9459649492055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.213586732105217, dt = 0.011262317029083651 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.4%)
patch tree reduce : 1412.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.2%)
LB compute : 378.64 us (95.1%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 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: 3.96125
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0562190027023452e-17,-4.224400687843502e-17,2.9570879706330893e-17)
sum a = (5.5299829239343374e-17,1.4540919346033193e-16,-1.0733738794555321e-16)
sum e = 4.144510668927177
sum de = 2.1412992906588713e-18
Info: CFL hydro = 0.011262389304011234 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011262389304011234 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8518e+04 | 800 | 1 | 4.320e-02 | 0.0% | 1.1% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 938.515904236192 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.2248490491343, dt = 0.011262389304011234 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.2%)
patch tree reduce : 1522.00 ns (0.4%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 413.93 us (95.6%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.96125
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0554700884385404e-17,-4.027061779330948e-17,2.8009019009166065e-17)
sum a = (1.9136257268739192e-17,-3.570823209821089e-17,2.6322838544209654e-17)
sum e = 4.144510668855567
sum de = -4.472333961502706e-19
Info: CFL hydro = 0.011262704064602353 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011262704064602353 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0595e+04 | 800 | 1 | 3.884e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.7916811377108 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.23611143843831, dt = 0.011262704064602353 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (1.1%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 377.38 us (95.5%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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: 3.96125
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0389939746348357e-17,-4.134605867613311e-17,2.905132043581634e-17)
sum a = (-6.79415020123677e-17,4.296371348595139e-17,-3.7687612497446865e-17)
sum e = 4.14451066799073
sum de = 1.0503208545953324e-18
Info: CFL hydro = 0.011263432148187789 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011263432148187789 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1035e+04 | 800 | 1 | 3.803e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1066.1190234933842 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.247374142502913, dt = 0.011263432148187789 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (1.0%)
patch tree reduce : 812.00 ns (0.2%)
gen split merge : 611.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 393.03 us (93.5%)
LB move op cnt : 0
LB apply : 7.29 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 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: 3.96125
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8656952139904146e-17,-4.086900029008948e-17,2.869689676047074e-17)
sum a = (-5.108194410559497e-17,1.3804886407565877e-16,8.130100910724889e-17)
sum e = 4.144510666486052
sum de = -1.9922214919421144e-18
Info: CFL hydro = 0.01126458126725027 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01126458126725027 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0553e+04 | 800 | 1 | 3.892e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.7213802413855 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.2586375746511, dt = 0.01126458126725027 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.71 us (1.2%)
patch tree reduce : 1322.00 ns (0.3%)
gen split merge : 1073.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 389.50 us (95.5%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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: 3.96125
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.883369590616207e-17,-3.8703140239166117e-17,3.008538380556476e-17)
sum a = (2.6595443336234586e-17,-5.226223298535127e-17,-2.0232630305236166e-16)
sum e = 4.144510664546635
sum de = 2.0328790734103208e-20
Info: CFL hydro = 0.01126615602856792 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01126615602856792 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0693e+04 | 800 | 1 | 3.866e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.9197091642368 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.269902155918352, dt = 0.01126615602856792 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.05 us (1.0%)
patch tree reduce : 1061.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 405.55 us (96.1%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.969794296659276e-17,-3.9980787973217034e-17,2.6581962879486102e-17)
sum a = (1.2435571567625256e-16,1.0583656376088848e-17,-1.733242237293905e-16)
sum e = 4.1445106624156205
sum de = -1.6398557858843255e-18
Info: CFL hydro = 0.011268157987089411 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011268157987089411 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0680e+04 | 800 | 1 | 3.868e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.4415036016221 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.28116831194692, dt = 0.011268157987089411 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.3%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 388.58 us (95.4%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1194273665674667e-17,-3.9275310736712954e-17,2.299335295589965e-17)
sum a = (-9.057668672160272e-17,-7.925310305287477e-17,4.401518911233327e-17)
sum e = 4.1445106603516395
sum de = 1.7211709488207383e-18
Info: CFL hydro = 0.011270585183411525 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011270585183411525 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0563e+04 | 800 | 1 | 3.890e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1042.677998245106 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.29243646993401, dt = 0.011270585183411525 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.23 us (1.0%)
patch tree reduce : 1173.00 ns (0.3%)
gen split merge : 1051.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 427.45 us (96.1%)
LB move op cnt : 0
LB apply : 3.78 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8851669848493383e-17,-4.0882480746837966e-17,2.7314213800921202e-17)
sum a = (-9.39258313093376e-17,6.051227251542449e-17,7.857608455839527e-17)
sum e = 4.14451065860896
sum de = 1.0842021724855044e-18
Info: CFL hydro = 0.011273432055907221 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011273432055907221 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9473e+04 | 800 | 1 | 4.108e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 987.6393672659894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.30370705511742, dt = 0.011273432055907221 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (1.1%)
patch tree reduce : 1062.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 388.73 us (96.0%)
LB move op cnt : 0
LB apply : 3.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.787208999143676e-17,-3.9360686962786697e-17,2.6363373528738088e-17)
sum a = (2.3546463585432654e-16,1.42113970699591e-16,1.8592845078922457e-16)
sum e = 4.144510657415249
sum de = 2.574980159653073e-19
Info: CFL hydro = 0.011276689250527126 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011276689250527126 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0665e+04 | 800 | 1 | 3.871e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.3684457207494 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.31498048717333, dt = 0.011276689250527126 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.16 us (1.0%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 395.02 us (96.1%)
LB move op cnt : 0
LB apply : 3.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1826357304325882e-17,-3.7069009315544136e-17,2.9604019162504255e-17)
sum a = (4.356059815420378e-17,4.038145710435258e-18,9.428531015596388e-17)
sum e = 4.144510656956375
sum de = 6.2341624917916505e-19
Info: CFL hydro = 0.011280343756360176 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011280343756360176 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0742e+04 | 800 | 1 | 3.857e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1052.5631635650648 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.326257176423855, dt = 0.011280343756360176 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (1.1%)
patch tree reduce : 1313.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 382.75 us (95.6%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.167657445156493e-17,-3.795422597536136e-17,2.970479493812748e-17)
sum a = (6.641072125715077e-17,7.871388478293535e-17,-4.6917980798840513e-17)
sum e = 4.144510657355598
sum de = -5.285485590866834e-19
Info: CFL hydro = 0.011284378820067473 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011284378820067473 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0902e+04 | 800 | 1 | 3.827e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1060.9966021056 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.337537520180216, dt = 0.011284378820067473 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.80 us (1.2%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 396.10 us (95.6%)
LB move op cnt : 0
LB apply : 3.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2692102193284186e-17,-3.6485230646908323e-17,2.9358468898259267e-17)
sum a = (1.0209498809891991e-16,-7.344152836574985e-17,8.053524427250852e-17)
sum e = 4.144510658664968
sum de = -1.0299920638612292e-18
Info: CFL hydro = 0.011279058880574837 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011279058880574837 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1113e+04 | 800 | 1 | 3.789e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1072.0967555067045 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.348821899000285, dt = 0.011279058880574837 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (1.1%)
patch tree reduce : 1412.00 ns (0.3%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 395.62 us (95.7%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3966754270279883e-17,-3.833411273567632e-17,3.041247211028149e-17)
sum a = (-3.967747769637611e-17,1.0158872205658789e-16,8.96300590921535e-18)
sum e = 4.144510660684998
sum de = 2.222614453595284e-18
Info: CFL hydro = 0.011273536876192917 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011273536876192917 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0929e+04 | 800 | 1 | 3.822e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1062.2810839632168 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.36010095788086, dt = 0.011273536876192917 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.64 us (1.1%)
patch tree reduce : 1052.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 386.93 us (95.8%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2882326416290593e-17,-3.629949990948475e-17,3.140684302404826e-17)
sum a = (-7.502922660501593e-17,-1.5301816238058828e-16,8.453744209828114e-17)
sum e = 4.144510663470991
sum de = 9.215718466126788e-19
Info: CFL hydro = 0.011268805676216017 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011268805676216017 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1149e+04 | 800 | 1 | 3.783e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1072.9148806698379 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.371374494757053, dt = 0.011268805676216017 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (0.9%)
patch tree reduce : 601.00 ns (0.2%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 591.00 ns (0.2%)
LB compute : 370.90 us (96.8%)
LB move op cnt : 0
LB apply : 2.58 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.20180793558599e-17,-3.964827004008772e-17,3.149895947849624e-17)
sum a = (-7.541267070808397e-17,4.6420701727674156e-17,-1.5112490712168985e-16)
sum e = 4.144510666873485
sum de = -5.692061405548898e-19
Info: CFL hydro = 0.01126490304363974 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01126490304363974 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0963e+04 | 800 | 1 | 3.816e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1063.0292436446446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.38264330043327, dt = 0.01126490304363974 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (0.9%)
patch tree reduce : 942.00 ns (0.2%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 417.33 us (96.6%)
LB move op cnt : 0
LB apply : 2.96 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0987573328864553e-17,-3.775127020987027e-17,2.816703991882887e-17)
sum a = (-2.1408163579417307e-16,-7.824656228232117e-17,-7.565831458661193e-17)
sum e = 4.14451067067484
sum de = 9.75781955236954e-19
Info: CFL hydro = 0.011261856500961918 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011261856500961918 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0399e+04 | 800 | 1 | 3.922e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1034.05970036752 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.393908203476908, dt = 0.011261856500961918 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (1.1%)
patch tree reduce : 1423.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 651.00 ns (0.2%)
LB compute : 414.26 us (95.9%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7611467827632702e-17,-3.9775585464934535e-17,2.9009194008477325e-17)
sum a = (-9.945581423327194e-19,1.0190027039033067e-16,-3.738580004913355e-17)
sum e = 4.144510674623512
sum de = -1.4094628242311558e-18
Info: CFL hydro = 0.011259683530096204 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011259683530096204 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0493e+04 | 800 | 1 | 3.904e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1038.5699291314622 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.40517005997787, dt = 0.011259683530096204 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (1.2%)
patch tree reduce : 1503.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 414.28 us (95.7%)
LB move op cnt : 0
LB apply : 3.59 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.879924585002705e-17,-3.7412760962630516e-17,2.795247598224881e-17)
sum a = (-1.2070101406888532e-16,1.6422191976710746e-16,-1.1913128977195056e-16)
sum e = 4.144510678455008
sum de = 7.115076756936123e-19
Info: CFL hydro = 0.011258391530370917 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011258391530370917 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0664e+04 | 800 | 1 | 3.871e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.0373277218293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.416429743507965, dt = 0.011258391530370917 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.79 us (1.2%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 681.00 ns (0.2%)
LB compute : 378.10 us (95.6%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7133660527325265e-17,-3.53008227387011e-17,2.593040746997596e-17)
sum a = (1.2773481683453962e-17,1.1478159572777252e-16,1.1286437521243233e-16)
sum e = 4.14451068191257
sum de = 1.429791614965259e-18
Info: CFL hydro = 0.011257978060339367 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011257978060339367 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0623e+04 | 800 | 1 | 3.879e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.8119543949622 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.427688135038338, dt = 0.011257978060339367 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (1.2%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 377.36 us (95.3%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8264521065670452e-17,-3.414000562980372e-17,2.949748610847803e-17)
sum a = (-1.7875684779903022e-16,-9.88207349375655e-17,1.1455392579157588e-17)
sum e = 4.144510684766418
sum de = 1.0062751413381088e-18
Info: CFL hydro = 0.01125843090214051 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01125843090214051 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0569e+04 | 800 | 1 | 3.889e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1042.0669186258567 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.438946113098677, dt = 0.01125843090214051 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.1%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 399.11 us (95.8%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.531529669480731e-17,-3.657098133011397e-17,2.8425789796973415e-17)
sum a = (-1.508013761597262e-16,1.64749155408826e-16,9.43032840982952e-18)
sum e = 4.144510686833393
sum de = 1.0672615135404184e-18
Info: CFL hydro = 0.011259728524910891 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011259728524910891 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0966e+04 | 800 | 1 | 3.816e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1062.1958432023262 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.45020454400082, dt = 0.011259728524910891 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.11 us (2.0%)
patch tree reduce : 1132.00 ns (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 383.78 us (95.0%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3748568054927757e-17,-3.3016634234096587e-17,2.863398796231114e-17)
sum a = (1.3144943158301122e-16,-1.2258228669956288e-16,-6.543713271420459e-17)
sum e = 4.144510687989017
sum de = 1.2146452463626667e-18
Info: CFL hydro = 0.011261840588920841 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011261840588920841 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0544e+04 | 800 | 1 | 3.894e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.9389006746135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.46146427252573, dt = 0.011261840588920841 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.36 us (1.0%)
patch tree reduce : 1322.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 412.49 us (95.9%)
LB move op cnt : 0
LB apply : 3.63 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6822112193582488e-17,-3.583255186600248e-17,2.7068757150959193e-17)
sum a = (1.2248642567379588e-16,-3.134655542581197e-17,1.0161268731302964e-17)
sum e = 4.144510688180397
sum de = -3.6909460676606137e-19
Info: CFL hydro = 0.01126472840949441 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01126472840949441 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0569e+04 | 800 | 1 | 3.889e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1042.423077107006 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.472726113114653, dt = 0.01126472840949441 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (1.1%)
patch tree reduce : 1163.00 ns (0.3%)
gen split merge : 1112.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 399.59 us (95.7%)
LB move op cnt : 0
LB apply : 3.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7410758804933027e-17,-3.582955620894726e-17,2.6923467783781072e-17)
sum a = (1.432942595793473e-16,-1.4862652913763717e-16,3.452195190434415e-17)
sum e = 4.144510687427093
sum de = 2.7452337820511874e-18
Info: CFL hydro = 0.011268345963217023 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011268345963217023 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0443e+04 | 800 | 1 | 3.913e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1036.2996315182893 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.483990841524147, dt = 0.011268345963217023 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.71 us (1.1%)
patch tree reduce : 1453.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 411.39 us (95.8%)
LB move op cnt : 0
LB apply : 3.65 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9284542292972534e-17,-3.854811498655853e-17,2.8672931504028984e-17)
sum a = (-7.668282929949684e-17,2.3551855768132048e-17,-8.861153569337904e-17)
sum e = 4.1445106858219924
sum de = -4.404571325722362e-19
Info: CFL hydro = 0.011272640309415088 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011272640309415088 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0476e+04 | 800 | 1 | 3.907e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1038.304752919561 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.495259187487363, dt = 0.004740812512636694 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.3%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.3%)
LB compute : 373.32 us (95.1%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7879579134074807e-17,-3.73154021083359e-17,2.7843134499733314e-17)
sum a = (-6.01827502393504e-17,6.017675892523996e-17,-1.3741678043700753e-16)
sum e = 4.144510590779164
sum de = -1.9651164376299768e-19
Info: CFL hydro = 0.011274874435444924 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011274874435444924 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0258e+04 | 800 | 1 | 3.949e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 432.180805914314 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 1920 [SPH][rank=0]
Info: time since start : 950.443359091 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.1510486660350877 max=0.15129249585141724 delta=0.0002438298163295327
Number of particle pairs: 319600
Distance min=0.125239 max=2.269074 mean=0.931547
---------------- t = 16.5, dt = 0.011274874435444924 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.47 us (1.6%)
patch tree reduce : 1433.00 ns (0.2%)
gen split merge : 571.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.2%)
LB compute : 586.33 us (96.2%)
LB move op cnt : 0
LB apply : 3.94 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7240755267049348e-17,-3.6383752764162784e-17,2.525338897549646e-17)
sum a = (7.492737426513848e-17,3.3287741197593906e-17,-2.0670033681011336e-17)
sum e = 4.144510682558236
sum de = 1.311207002349657e-18
Info: CFL hydro = 0.011279789185890914 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011279789185890914 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0454e+04 | 800 | 1 | 3.911e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1037.7774891718443 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.511274874435443, dt = 0.011279789185890914 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.88 us (1.2%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 393.75 us (95.7%)
LB move op cnt : 0
LB apply : 3.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.845624311720447e-17,-3.6190532884101156e-17,2.657896722243088e-17)
sum a = (-1.5660695953274068e-16,9.225664183674125e-17,-8.562786126638087e-17)
sum e = 4.1445106795771185
sum de = 2.066760391300493e-18
Info: CFL hydro = 0.011279841529940741 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011279841529940741 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0535e+04 | 800 | 1 | 3.896e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1042.3512943324217 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.522554663621335, dt = 0.011279841529940741 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.72 us (1.0%)
patch tree reduce : 1503.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.2%)
LB compute : 432.81 us (95.9%)
LB move op cnt : 0
LB apply : 3.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.593015530539102e-17,-3.4787067553731034e-17,2.5403171828257412e-17)
sum a = (3.826652322336794e-17,6.374758213506106e-17,-8.132609773508634e-17)
sum e = 4.144510676414544
sum de = 1.4772254600114998e-18
Info: CFL hydro = 0.011274961384170461 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011274961384170461 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0322e+04 | 800 | 1 | 3.937e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1031.5371488090127 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.533834505151276, dt = 0.011274961384170461 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.74 us (1.2%)
patch tree reduce : 1262.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 385.57 us (95.5%)
LB move op cnt : 0
LB apply : 3.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7273707494656758e-17,-3.413101865863807e-17,2.3581812338684237e-17)
sum a = (2.2800245412977594e-16,-5.0668543431974747e-17,3.7146147484716024e-17)
sum e = 4.144510673331733
sum de = -1.294266343404571e-18
Info: CFL hydro = 0.011271267120412652 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011271267120412652 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0923e+04 | 800 | 1 | 3.824e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1061.5819268134612 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.545109466535447, dt = 0.011271267120412652 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (1.1%)
patch tree reduce : 1323.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 381.85 us (95.5%)
LB move op cnt : 0
LB apply : 4.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0123326268433864e-17,-3.577713221048093e-17,2.5301319488379963e-17)
sum a = (6.07489294227868e-17,1.399750715621646e-16,-5.45329410332073e-17)
sum e = 4.1445106706831965
sum de = 1.8295911660692887e-18
Info: CFL hydro = 0.01126881904313961 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01126881904313961 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0550e+04 | 800 | 1 | 3.893e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1042.3100089938464 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.55638073365586, dt = 0.01126881904313961 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.36 us (1.1%)
patch tree reduce : 1322.00 ns (0.3%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 386.71 us (95.6%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1174801894815744e-17,-3.3007647262930927e-17,2.484597961598667e-17)
sum a = (2.9160624472618643e-16,-1.217974245510955e-16,1.5322785837445361e-16)
sum e = 4.144510668691823
sum de = -1.2468324983583301e-18
Info: CFL hydro = 0.011267662527437567 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011267662527437567 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0601e+04 | 800 | 1 | 3.883e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.6899368784425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.567649552699, dt = 0.011267662527437567 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (1.0%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 404.77 us (95.8%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5056424524115807e-17,-3.582805838041965e-17,2.702082663807569e-17)
sum a = (7.068552387494833e-17,-3.8787767550976055e-17,8.46872249510421e-17)
sum e = 4.144510667532338
sum de = 1.5043305143236374e-18
Info: CFL hydro = 0.011265837171480046 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011265837171480046 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0793e+04 | 800 | 1 | 3.848e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1054.274951366905 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.578917215226436, dt = 0.011265837171480046 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.89 us (0.9%)
patch tree reduce : 982.00 ns (0.2%)
gen split merge : 682.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 416.68 us (96.5%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4848975273041888e-17,-3.558690798747452e-17,2.5753663703718038e-17)
sum a = (5.972422748133594e-17,1.3887866107995443e-17,-1.992770986272806e-16)
sum e = 4.144510667283913
sum de = 3.3881317890172014e-19
Info: CFL hydro = 0.011262229313661236 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011262229313661236 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0675e+04 | 800 | 1 | 3.869e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.160250726405 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.590183052397915, dt = 0.011262229313661236 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.71 us (1.0%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 433.34 us (96.0%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.9587499999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5647317878257763e-17,-3.5411662049744205e-17,2.3551855768132048e-17)
sum a = (-2.853213562243369e-17,5.2471928979216604e-17,-1.5978834732538328e-17)
sum e = 4.144510667969865
sum de = 2.7376104855258987e-18
Info: CFL hydro = 0.011259557692141773 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011259557692141773 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0410e+04 | 800 | 1 | 3.920e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1034.3971410300635 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.601445281711577, dt = 0.011259557692141773 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.41 us (1.1%)
patch tree reduce : 1332.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 395.92 us (95.8%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.9537500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5015234239606545e-17,-3.4391640822442126e-17,2.5205458462612954e-17)
sum a = (-3.1312105369676955e-16,1.338219919707447e-16,1.8520949309597201e-16)
sum e = 4.144510669604108
sum de = -2.168404344971009e-19
Info: CFL hydro = 0.011257844974522415 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011257844974522415 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0812e+04 | 800 | 1 | 3.844e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1054.518607152178 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.61270483940372, dt = 0.011257844974522415 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.23 us (1.1%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 381.59 us (95.7%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.9537500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9177447553248452e-17,-3.2729800071059367e-17,2.608618163684735e-17)
sum a = (1.0274504567990244e-16,-2.836288099881382e-17,1.3120378770448327e-16)
sum e = 4.144510672086524
sum de = -4.0657581468206416e-19
Info: CFL hydro = 0.011257102760805838 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011257102760805838 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0697e+04 | 800 | 1 | 3.865e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.5379223120694 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.62396268437824, dt = 0.011257102760805838 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.2%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1143.00 ns (0.3%)
LB compute : 413.09 us (95.6%)
LB move op cnt : 0
LB apply : 3.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.9537500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.289730470156669e-17,-3.334540759590688e-17,2.8740333787771413e-17)
sum a = (5.266964234486106e-17,-3.272455767121273e-17,6.942435225470112e-19)
sum e = 4.144510675256542
sum de = 8.944667923005412e-19
Info: CFL hydro = 0.01125733148888319 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01125733148888319 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0630e+04 | 800 | 1 | 3.878e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1045.0308467080836 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.635219787139047, dt = 0.01125733148888319 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.54 us (1.0%)
patch tree reduce : 1032.00 ns (0.2%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 721.00 ns (0.2%)
LB compute : 415.01 us (95.9%)
LB move op cnt : 0
LB apply : 3.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.9537500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3166913836536402e-17,-3.431225591047882e-17,2.856359002151349e-17)
sum a = (-5.465276731541606e-17,-9.825755141118433e-18,2.779220832979459e-17)
sum e = 4.144510678906851
sum de = -1.1519648082658485e-18
Info: CFL hydro = 0.011255653169662134 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011255653169662134 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0985e+04 | 800 | 1 | 3.812e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1063.0710740811508 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.64647711862793, dt = 0.011255653169662134 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 us (1.1%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 403.94 us (95.7%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.9537500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2378307116749992e-17,-3.4109300144987726e-17,2.7715819074886504e-17)
sum a = (6.7911545441815505e-18,-6.689901335715148e-17,-7.237507445409186e-18)
sum e = 4.14451068274602
sum de = 1.2197274440461925e-18
Info: CFL hydro = 0.011252852835524836 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011252852835524836 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0715e+04 | 800 | 1 | 3.862e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1049.231509598616 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.657732771797594, dt = 0.011252852835524836 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (1.0%)
patch tree reduce : 1053.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 377.62 us (95.9%)
LB move op cnt : 0
LB apply : 3.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.9537500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.224125580647372e-17,-3.5458843648363906e-17,2.8716368531329663e-17)
sum a = (-8.483700780380304e-18,2.7799697472432635e-17,-4.442559412889828e-17)
sum e = 4.1445106865321195
sum de = 1.5449880957918438e-18
Info: CFL hydro = 0.011251494440435094 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011251494440435094 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0554e+04 | 800 | 1 | 3.892e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.8123463797663 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.66898562463312, dt = 0.011251494440435094 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (1.0%)
patch tree reduce : 1142.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 387.31 us (95.8%)
LB move op cnt : 0
LB apply : 3.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 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: 3.9537500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1768690906012918e-17,-3.450922036185947e-17,2.751511005218683e-17)
sum a = (1.011813126970781e-16,-5.76484243706351e-17,-2.1991717573773973e-16)
sum e = 4.144510690067872
sum de = 3.049318610115481e-19
Info: CFL hydro = 0.011251590534895089 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011251590534895089 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0883e+04 | 800 | 1 | 3.831e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1057.3170071223246 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.680237119073556, dt = 0.011251590534895089 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.90 us (1.2%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 401.91 us (95.7%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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: 3.95875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4236363405249596e-17,-3.5355119022826947e-17,2.4306761346047243e-17)
sum a = (-9.663989660136605e-18,-9.13915054406223e-17,-2.354586445402161e-17)
sum e = 4.144510693138613
sum de = 1.145188544687814e-18
Info: CFL hydro = 0.011253131801510762 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011253131801510762 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0581e+04 | 800 | 1 | 3.887e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1042.0566025231883 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.69148870960845, dt = 0.011253131801510762 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.65 us (1.1%)
patch tree reduce : 1392.00 ns (0.3%)
gen split merge : 1032.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 404.65 us (95.7%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.95875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.340581748669012e-17,-3.695667217597342e-17,2.2907789501259955e-17)
sum a = (-2.789555849819965e-17,5.287933833872639e-17,-1.1982628220876138e-18)
sum e = 4.144510695570459
sum de = -6.708500942254059e-19
Info: CFL hydro = 0.011256087067927413 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011256087067927413 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0622e+04 | 800 | 1 | 3.879e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.290427891662 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.70274184140996, dt = 0.011256087067927413 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (1.1%)
patch tree reduce : 971.00 ns (0.2%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 377.60 us (95.7%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.95875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3328679317518228e-17,-3.55528323884714e-17,2.5019727725189375e-17)
sum a = (-6.29387547301519e-17,3.6283398252812944e-17,-2.692496561230868e-17)
sum e = 4.144510697243262
sum de = 5.55653613398821e-19
Info: CFL hydro = 0.01126040389624417 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01126040389624417 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0858e+04 | 800 | 1 | 3.835e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1056.5171238304927 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.713997928477887, dt = 0.01126040389624417 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (1.1%)
patch tree reduce : 1132.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 392.18 us (95.8%)
LB move op cnt : 0
LB apply : 4.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.95875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2353592946044435e-17,-3.5016984232719094e-17,2.339009028715022e-17)
sum a = (1.945080125953719e-17,3.4229575775754774e-16,4.437167230190434e-17)
sum e = 4.144510698099126
sum de = -2.0803129184565616e-18
Info: CFL hydro = 0.011266009298031635 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011266009298031635 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0654e+04 | 800 | 1 | 3.873e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1046.5656478872584 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.725258332374132, dt = 0.011266009298031635 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (1.2%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 378.61 us (95.5%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.317590080770206e-17,-2.959784061982786e-17,2.51814932061712e-17)
sum a = (-2.829278262372169e-16,3.724799982459347e-17,1.296520373498798e-17)
sum e = 4.144510698146077
sum de = 7.792703114739563e-19
Info: CFL hydro = 0.011272810754824676 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011272810754824676 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0647e+04 | 800 | 1 | 3.875e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1046.7368287844308 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.736524341672162, dt = 0.011272810754824676 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.73 us (1.1%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 408.85 us (95.8%)
LB move op cnt : 0
LB apply : 3.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.95875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8528138886529727e-17,-3.075865772872524e-17,2.5539474224269876e-17)
sum a = (-9.199662816577654e-18,-2.434270923070987e-17,-1.585301713621913e-17)
sum e = 4.1445106974560275
sum de = 8.504210790433175e-19
Info: CFL hydro = 0.011277481270928093 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011277481270928093 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1253e+04 | 800 | 1 | 3.764e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1078.1211183620564 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.747797152426987, dt = 0.011277481270928093 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (1.0%)
patch tree reduce : 611.00 ns (0.2%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 701.00 ns (0.2%)
LB compute : 365.26 us (96.5%)
LB move op cnt : 0
LB apply : 2.75 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.95875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9647016796654036e-17,-3.114734423163991e-17,2.447601596966712e-17)
sum a = (-5.806182504425532e-17,2.782965404298483e-17,-1.3827952966891063e-16)
sum e = 4.144510696097338
sum de = 4.336808689942018e-19
Info: CFL hydro = 0.011273518391477137 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011273518391477137 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0886e+04 | 800 | 1 | 3.830e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1059.9430961464973 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.759074633697914, dt = 0.011273518391477137 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.93 us (1.0%)
patch tree reduce : 891.00 ns (0.2%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.2%)
LB compute : 368.40 us (96.0%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.95875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9007444015364773e-17,-3.098333200786667e-17,2.2281697176719178e-17)
sum a = (-1.1547359250752812e-16,1.5736186511065588e-17,-3.5780127867536145e-17)
sum e = 4.1445106941287255
sum de = 1.2205744769934468e-18
Info: CFL hydro = 0.011270036342066286 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011270036342066286 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0871e+04 | 800 | 1 | 3.833e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1058.8051468741312 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.77034815208939, dt = 0.011270036342066286 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.56 us (1.1%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 404.02 us (95.6%)
LB move op cnt : 0
LB apply : 3.48 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6977886360453878e-17,-3.049878447918499e-17,2.2340112489295947e-17)
sum a = (3.856159544330702e-17,9.35955601189997e-17,-4.4838994802518503e-17)
sum e = 4.144510691945993
sum de = -8.444918484125374e-19
Info: CFL hydro = 0.011267058123142616 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011267058123142616 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0533e+04 | 800 | 1 | 3.896e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.3145270592076 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.781618188431455, dt = 0.011267058123142616 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.2%)
patch tree reduce : 1382.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 401.37 us (95.6%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.95875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8343905977633757e-17,-2.912902029068609e-17,2.1952923814908888e-17)
sum a = (-2.7089165064647875e-17,-3.8542123672448095e-17,1.1431427322715835e-17)
sum e = 4.144510689778379
sum de = -8.54656243779589e-19
Info: CFL hydro = 0.011264598700201052 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011264598700201052 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9940e+04 | 800 | 1 | 4.012e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1010.9702221119476 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.792885246554597, dt = 0.011264598700201052 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.2%)
patch tree reduce : 1773.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 408.05 us (95.6%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.95875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8161170897265395e-17,-3.01393056325587e-17,2.1577717768742704e-17)
sum a = (-2.4157727407550097e-17,9.362027428970526e-17,3.3551359018453184e-19)
sum e = 4.144510687848293
sum de = -2.7969027918336997e-18
Info: CFL hydro = 0.011262664787948205 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011262664787948205 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9821e+04 | 800 | 1 | 4.036e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1004.7535679567234 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.8041498452548, dt = 0.011262664787948205 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (0.7%)
patch tree reduce : 1423.00 ns (0.2%)
gen split merge : 851.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 741.76 us (95.5%)
LB move op cnt : 0
LB apply : 3.51 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.95875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.743023057579195e-17,-2.859991236330802e-17,2.2770738190983686e-17)
sum a = (1.4169757436891555e-16,-2.111758484506106e-16,-8.407011959766698e-17)
sum e = 4.1445106863555345
sum de = -1.3688052427629493e-18
Info: CFL hydro = 0.011261254767026017 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011261254767026017 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8125e+04 | 800 | 1 | 4.414e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 918.6106396146995 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.815412510042748, dt = 0.011261254767026017 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.3%)
patch tree reduce : 1473.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.3%)
LB compute : 411.99 us (95.3%)
LB move op cnt : 0
LB apply : 4.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.95875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0515757342667555e-17,-3.2656032016074593e-17,2.003607775670061e-17)
sum a = (3.626991779606446e-17,2.545349886678509e-16,1.317130494038705e-16)
sum e = 4.14451068545989
sum de = 2.642742795433417e-19
Info: CFL hydro = 0.01126035906067862 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01126035906067862 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0177e+04 | 800 | 1 | 3.965e-02 | 0.1% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1022.4653802857787 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.826673764809772, dt = 0.01126035906067862 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (1.5%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 423.96 us (95.2%)
LB move op cnt : 0
LB apply : 4.21 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (71.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0121828439906252e-17,-2.7088041693252168e-17,2.291640201529371e-17)
sum a = (-1.4942337391432543e-16,1.0958113507991228e-16,4.79065476270628e-17)
sum e = 4.144510685270997
sum de = 3.2864878353466853e-19
Info: CFL hydro = 0.011259960214431854 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011259960214431854 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0179e+04 | 800 | 1 | 3.965e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1022.5050023468999 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.83793412387045, dt = 0.011259960214431854 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.2%)
patch tree reduce : 1784.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 411.43 us (95.5%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (71.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7542567715362664e-17,-2.6476178739723677e-17,2.3185262235999618e-17)
sum a = (-4.1079445198218616e-17,-3.5840041008640523e-17,2.9740883244214575e-17)
sum e = 4.144510685840283
sum de = -1.1519648082658485e-19
Info: CFL hydro = 0.011260033686450227 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011260033686450227 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0136e+04 | 800 | 1 | 3.973e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1020.2756277187606 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.849194084084882, dt = 0.011260033686450227 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.4%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 400.08 us (95.4%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 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: 3.95875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.71546301267118e-17,-2.816909943305434e-17,2.4371542429866357e-17)
sum a = (-9.569626462897204e-17,-2.1940192272424206e-17,1.9459788230702848e-17)
sum e = 4.144510687157346
sum de = -1.0706496453294356e-18
Info: CFL hydro = 0.011260548478682688 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011260548478682688 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0144e+04 | 800 | 1 | 3.971e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1020.6879367571404 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.860454117771333, dt = 0.011260548478682688 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.3%)
patch tree reduce : 1332.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 379.30 us (95.3%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5608871086218778e-17,-2.836288099881382e-17,2.3586305824267067e-17)
sum a = (4.911379742031607e-17,1.1412255117562432e-16,-1.249308818308546e-16)
sum e = 4.144510689151648
sum de = 3.049318610115481e-19
Info: CFL hydro = 0.01126146743797148 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01126146743797148 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0344e+04 | 800 | 1 | 3.932e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1030.857924742637 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.871714666250014, dt = 0.01126146743797148 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.3%)
patch tree reduce : 1443.00 ns (0.3%)
gen split merge : 1183.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 394.81 us (95.2%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7824159478553256e-17,-2.607045443730745e-17,2.0413156088526305e-17)
sum a = (-1.06705304306902e-17,-4.6300875445465394e-17,7.069750650316921e-18)
sum e = 4.144510691698884
sum de = 2.290377089375628e-18
Info: CFL hydro = 0.011262748204239248 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011262748204239248 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9408e+04 | 800 | 1 | 4.122e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 983.5493303329637 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.882976133687986, dt = 0.011262748204239248 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.2%)
patch tree reduce : 1824.00 ns (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1253.00 ns (0.3%)
LB compute : 441.84 us (95.5%)
LB move op cnt : 0
LB apply : 4.18 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6202760097415952e-17,-2.774952021675772e-17,2.3423791429021433e-17)
sum a = (6.809128486512865e-17,-1.0196018353143506e-16,5.755256334486808e-17)
sum e = 4.144510694632245
sum de = -1.734723475976807e-18
Info: CFL hydro = 0.011264344097087618 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011264344097087618 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0973e+04 | 800 | 1 | 3.814e-02 | 0.1% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1062.9699129978178 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.894238881892225, dt = 0.011264344097087618 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.3%)
patch tree reduce : 1422.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 395.16 us (95.3%)
LB move op cnt : 0
LB apply : 3.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8045838100639463e-17,-2.929977274283357e-17,2.292426561506366e-17)
sum a = (-1.4033455040879088e-16,-4.537821307245793e-17,2.512757137917726e-17)
sum e = 4.144510697755895
sum de = -2.541098841762901e-19
Info: CFL hydro = 0.011266205094828985 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011266205094828985 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0534e+04 | 800 | 1 | 3.896e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.8587076007857 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.905503225989314, dt = 0.011266205094828985 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.3%)
patch tree reduce : 1423.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 377.82 us (95.4%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.532727932302819e-17,-2.9722909301883255e-17,2.4122528437151273e-17)
sum a = (-1.0988070078543417e-16,1.1360729816212666e-16,-3.019622311660787e-17)
sum e = 4.144510700861286
sum de = 9.24959978401696e-19
Info: CFL hydro = 0.011268278875945668 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011268278875945668 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0576e+04 | 800 | 1 | 3.888e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.1699287823287 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.91676943108414, dt = 0.011268278875945668 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.2%)
patch tree reduce : 1233.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.3%)
LB compute : 411.38 us (95.6%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.400095216182996e-17,-2.7152635548505327e-17,2.3402072915371097e-17)
sum a = (-7.17819343571585e-17,-5.176495391418491e-18,-1.275430947830056e-16)
sum e = 4.144510703744007
sum de = -8.216219588366713e-19
Info: CFL hydro = 0.011270511946685104 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011270511946685104 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0514e+04 | 800 | 1 | 3.900e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.233878442122 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.928037709960087, dt = 0.011270511946685104 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.2%)
patch tree reduce : 1462.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1253.00 ns (0.3%)
LB compute : 398.71 us (95.4%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (72.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.391407810722861e-17,-2.795247598224881e-17,2.1889266102485485e-17)
sum a = (-2.3165416008008793e-17,-9.473465871424674e-17,-1.3877081742596655e-16)
sum e = 4.1445107062207605
sum de = 1.7618285302889447e-18
Info: CFL hydro = 0.011272850042741747 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011272850042741747 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0572e+04 | 800 | 1 | 3.889e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.3684914113953 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.93930822190677, dt = 0.011272850042741747 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.73 us (1.1%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 403.08 us (95.7%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3425037092964102e-17,-2.928704120034889e-17,1.8917574303708203e-17)
sum a = (2.0109246680274333e-16,-1.656119046407291e-16,3.4593847673669407e-17)
sum e = 4.144510708143862
sum de = 1.2536087619363645e-19
Info: CFL hydro = 0.01127523957988627 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01127523957988627 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0724e+04 | 800 | 1 | 3.860e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1051.2605565788315 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.95058107194951, dt = 0.01127523957988627 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.97 us (1.2%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 396.70 us (95.6%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7612216741896507e-17,-3.153528182029077e-17,2.112387572487702e-17)
sum a = (4.319737473625847e-18,-3.7110199600053396e-17,6.455041822585976e-17)
sum e = 4.144510709412338
sum de = 9.722350047703266e-19
Info: CFL hydro = 0.011277628953583852 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011277628953583852 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0439e+04 | 800 | 1 | 3.914e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1037.056479992135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.9618563115294, dt = 0.011277628953583852 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (1.3%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 377.70 us (95.2%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.648884534618937e-17,-3.169105598716216e-17,2.2133412152485836e-17)
sum a = (1.9032008403217568e-16,-4.5426143585341436e-17,-3.036397991170013e-17)
sum e = 4.144510709979085
sum de = -1.1350241493207625e-18
Info: CFL hydro = 0.011279969344300056 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011279969344300056 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0231e+04 | 800 | 1 | 3.954e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1026.7009816807542 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.97313394048298, dt = 0.011279969344300056 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.4%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 402.77 us (95.3%)
LB move op cnt : 0
LB apply : 3.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.882021544941358e-17,-3.2081989232868245e-17,2.0445359401869908e-17)
sum a = (3.9325487992387873e-17,1.112706856590558e-16,-2.7209553032554487e-17)
sum e = 4.1445107098550205
sum de = -5.878408653944844e-19
Info: CFL hydro = 0.011282215418223331 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011282215418223331 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0153e+04 | 800 | 1 | 3.970e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1022.983835901545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.984413909827282, dt = 0.011282215418223331 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.4%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1323.00 ns (0.3%)
LB compute : 388.08 us (95.3%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9179694296039868e-17,-2.996855318041122e-17,1.988367370401634e-17)
sum a = (-4.029308522122362e-17,-6.511360175224093e-17,-3.015578174636241e-17)
sum e = 4.144510709107556
sum de = -2.9917203697021888e-18
Info: CFL hydro = 0.011280934197892774 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011280934197892774 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0523e+04 | 800 | 1 | 3.898e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.9738897236107 (tsim/hr) [sph::Model][rank=0]
---------------- t = 16.995696125245505, dt = 0.004303874754494785 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.79 us (1.1%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.2%)
LB compute : 408.72 us (95.6%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8097513184841992e-17,-3.1384001139002216e-17,1.972789953714495e-17)
sum a = (-1.560602521201632e-16,-1.156922754725591e-16,-1.788182587686622e-17)
sum e = 4.144510616594887
sum de = 2.0328790734103208e-20
Info: CFL hydro = 0.011280029347278541 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011280029347278541 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0527e+04 | 800 | 1 | 3.897e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 397.5485515827798 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 1965 [SPH][rank=0]
Info: time since start : 953.163430614 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.151056530623879 max=0.15129128544235035 delta=0.00023475481847134994
Number of particle pairs: 319600
Distance min=0.121771 max=2.268076 mean=0.931400
---------------- t = 17, dt = 0.011280029347278541 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.64 us (1.5%)
patch tree reduce : 1423.00 ns (0.2%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.1%)
LB compute : 668.96 us (96.3%)
LB move op cnt : 0
LB apply : 5.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.10 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6605675971342912e-17,-3.231714831170294e-17,2.0400424546041623e-17)
sum a = (2.5861694586271874e-17,2.1580713425797922e-17,-2.6750693263121315e-16)
sum e = 4.144510707010027
sum de = -1.7787691892340307e-18
Info: CFL hydro = 0.011275454184867067 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011275454184867067 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9091e+04 | 800 | 1 | 4.190e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 969.0523006771596 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.01128002934728, dt = 0.011275454184867067 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.21 us (1.0%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1091.00 ns (0.3%)
LB compute : 395.75 us (95.9%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7654904854933378e-17,-3.165211244544432e-17,1.476559362517462e-17)
sum a = (3.806880985772349e-17,1.0032455477928546e-16,-8.849170941117027e-18)
sum e = 4.144510705293597
sum de = -4.2690460541616737e-19
Info: CFL hydro = 0.011271611315639415 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011271611315639415 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0434e+04 | 800 | 1 | 3.915e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1036.8303384904332 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.022555483532148, dt = 0.011271611315639415 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.33 us (1.0%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 419.43 us (96.1%)
LB move op cnt : 0
LB apply : 3.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.779719856505628e-17,-2.9899653068141184e-17,1.656897917241648e-17)
sum a = (2.668081956230833e-17,1.142753296854405e-16,-1.0693297424309865e-16)
sum e = 4.144510703386059
sum de = -1.7618285302889447e-19
Info: CFL hydro = 0.011268401884623896 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011268401884623896 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0699e+04 | 800 | 1 | 3.865e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1049.9098714601046 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.033827094847787, dt = 0.011268401884623896 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (1.0%)
patch tree reduce : 1132.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 396.43 us (96.0%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.825029169465816e-17,-2.838684625525557e-17,1.600879130309052e-17)
sum a = (1.075081403977007e-16,-1.2747569249926317e-16,-4.284388720374263e-17)
sum e = 4.144510701612641
sum de = 9.351243737687476e-19
Info: CFL hydro = 0.01126586806743489 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01126586806743489 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0531e+04 | 800 | 1 | 3.897e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.0813440940517 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.04509549673241, dt = 0.01126586806743489 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.48 us (1.0%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 424.63 us (96.0%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.95125
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.00506815848448e-17,-3.1154833374277954e-17,1.5234413954316398e-17)
sum a = (-1.121663871185663e-16,-8.39802498860104e-17,1.2929854981736395e-16)
sum e = 4.144510700135585
sum de = 5.38712954453735e-19
Info: CFL hydro = 0.011264045521668554 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011264045521668554 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0260e+04 | 800 | 1 | 3.949e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1027.1088860147565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.056361364799848, dt = 0.011264045521668554 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (1.0%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 420.95 us (96.0%)
LB move op cnt : 0
LB apply : 3.59 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.95125
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7951474903400063e-17,-3.185881278225443e-17,1.662589665646564e-17)
sum a = (-1.7344854349718208e-18,1.914254814855515e-16,4.036947447613171e-17)
sum e = 4.144510699107387
sum de = -2.100641709190665e-18
Info: CFL hydro = 0.01126296091844413 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01126296091844413 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0758e+04 | 800 | 1 | 3.854e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1052.1820519492755 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.067625410321515, dt = 0.01126296091844413 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (0.9%)
patch tree reduce : 961.00 ns (0.2%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 662.00 ns (0.2%)
LB compute : 400.66 us (96.4%)
LB move op cnt : 0
LB apply : 3.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.9525
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.816641329711203e-17,-2.82190894601633e-17,1.6705281568428943e-17)
sum a = (2.3240307434389267e-17,3.4761604468761675e-17,7.007440983568366e-17)
sum e = 4.1445106986430496
sum de = -1.6263032587282567e-19
Info: CFL hydro = 0.011262632066424902 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011262632066424902 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1524e+04 | 800 | 1 | 3.717e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1090.9108528743907 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.07888837123996, dt = 0.011262632066424902 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.3%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 383.12 us (95.2%)
LB move op cnt : 0
LB apply : 4.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 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: 3.9525
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.811773386996472e-17,-2.9195673660164706e-17,1.826751672272567e-17)
sum a = (-1.3241403315479176e-16,-5.3825965968175605e-17,1.43372146662783e-16)
sum e = 4.144510698810796
sum de = -1.196010521523072e-18
Info: CFL hydro = 0.011263067235596834 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011263067235596834 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0928e+04 | 800 | 1 | 3.823e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1060.6752616969932 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.090151003306385, dt = 0.011263067235596834 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (0.9%)
patch tree reduce : 952.00 ns (0.2%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 409.43 us (96.4%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.9525
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6502325802937854e-17,-3.016327088900046e-17,2.0362978832851386e-17)
sum a = (1.1899348954741048e-16,4.4096071852824186e-17,-1.2497881234373811e-17)
sum e = 4.144510699627254
sum de = 1.345088320239829e-18
Info: CFL hydro = 0.011264265135955 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011264265135955 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0554e+04 | 800 | 1 | 3.892e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.743592556424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.10141407054198, dt = 0.011264265135955 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (1.0%)
patch tree reduce : 1183.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1033.00 ns (0.3%)
LB compute : 395.20 us (96.0%)
LB move op cnt : 0
LB apply : 3.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.9525
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8678670653554483e-17,-2.916421926108491e-17,2.003944787088773e-17)
sum a = (1.2633284933269712e-16,1.2947229792656667e-16,3.0795354527651673e-18)
sum e = 4.144510701057585
sum de = 4.336808689942018e-19
Info: CFL hydro = 0.011266214566701122 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011266214566701122 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9712e+04 | 800 | 1 | 4.058e-02 | 0.0% | 1.1% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 999.2020569775509 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.112678335677938, dt = 0.011266214566701122 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (1.1%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 388.99 us (95.7%)
LB move op cnt : 0
LB apply : 3.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.9537500000000008
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0605627054324128e-17,-2.7061268008321145e-17,2.0610120539906955e-17)
sum a = (3.215957675059842e-16,-2.1359034803711715e-16,-7.966051241238456e-17)
sum e = 4.1445107030188035
sum de = -1.170599533105443e-18
Info: CFL hydro = 0.011268894835950298 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011268894835950298 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0281e+04 | 800 | 1 | 3.945e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1028.215467042877 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.123944550244637, dt = 0.011268894835950298 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.69 us (1.1%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 408.52 us (95.9%)
LB move op cnt : 0
LB apply : 3.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9537500000000008
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5025719039299814e-17,-3.170154078685543e-17,1.8126720841130376e-17)
sum a = (4.618104916325663e-17,1.1726199976949387e-16,1.1685459040998408e-16)
sum e = 4.144510705387182
sum de = -4.1335207826009857e-19
Info: CFL hydro = 0.01127118937714018 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01127118937714018 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0870e+04 | 800 | 1 | 3.833e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1058.2989254473584 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.135213445080588, dt = 0.01127118937714018 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (1.1%)
patch tree reduce : 1413.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 422.17 us (95.7%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 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: 3.9487500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3565336224880532e-17,-2.8111245806175416e-17,2.0404918031624453e-17)
sum a = (6.311849415346506e-17,-1.7758255023338435e-17,-2.2030061984080778e-16)
sum e = 4.1445107079907295
sum de = 1.5543054582116411e-18
Info: CFL hydro = 0.011269566705352809 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011269566705352809 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0585e+04 | 800 | 1 | 3.886e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.0796572929237 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.146484634457728, dt = 0.011269566705352809 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (1.1%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 382.08 us (95.7%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 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: 3.9487500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4979286354943917e-17,-2.9272062915072795e-17,1.6434923519195428e-17)
sum a = (-2.0098462314875546e-16,1.2505070811306338e-16,1.6442562444686236e-16)
sum e = 4.144510710595178
sum de = -1.438791340029836e-18
Info: CFL hydro = 0.01126888374407258 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01126888374407258 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0486e+04 | 800 | 1 | 3.905e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1038.8839291231782 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.15775420116308, dt = 0.01126888374407258 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.45 us (1.0%)
patch tree reduce : 1412.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 425.16 us (95.9%)
LB move op cnt : 0
LB apply : 3.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.9487500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0737435964753765e-17,-2.7291933601573012e-17,2.1149338809846382e-17)
sum a = (4.5138560508040406e-17,-1.2756706003944737e-16,4.416796762214944e-17)
sum e = 4.144510713111607
sum de = 1.2265037076242269e-18
Info: CFL hydro = 0.01126913000361694 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01126913000361694 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0437e+04 | 800 | 1 | 3.914e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1036.3732875496326 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.169023084907153, dt = 0.01126913000361694 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (1.1%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 385.31 us (95.5%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.9487500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2570778082547815e-17,-2.9857713869368113e-17,2.059813791168608e-17)
sum a = (-7.638925490808537e-18,9.526189435596529e-18,2.5642824392674932e-18)
sum e = 4.144510715383188
sum de = -1.136718215215271e-18
Info: CFL hydro = 0.011270282740003397 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011270282740003397 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0370e+04 | 800 | 1 | 3.927e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1032.9945688743198 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.180292214910768, dt = 0.011270282740003397 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.3%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 380.37 us (95.1%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.9487500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2048035926412093e-17,-2.8841437213385057e-17,1.8969623845042634e-17)
sum a = (-5.926008786634293e-17,-1.6086678386526214e-16,7.791104869213665e-17)
sum e = 4.144510717277568
sum de = 4.506215279392878e-19
Info: CFL hydro = 0.011272306595103337 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011272306595103337 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0518e+04 | 800 | 1 | 3.899e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.5799819360398 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.19156249765077, dt = 0.011272306595103337 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.3%)
patch tree reduce : 1332.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 372.62 us (95.3%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9487500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1699041879479075e-17,-3.2068508776119764e-17,2.0802217048572876e-17)
sum a = (1.8790558444566915e-16,6.100356027248041e-17,1.4447454845910358e-16)
sum e = 4.144510718699216
sum de = -1.3349239248727773e-18
Info: CFL hydro = 0.011275154580087213 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011275154580087213 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0673e+04 | 800 | 1 | 3.870e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.667816601621 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.202834804245875, dt = 0.011275154580087213 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.79 us (1.2%)
patch tree reduce : 1243.00 ns (0.3%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 394.21 us (95.5%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.9487500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.524889548991363e-17,-2.964427330418376e-17,2.2950477614296826e-17)
sum a = (5.640223103566397e-17,-1.5812276200268152e-16,-3.3982733634404724e-17)
sum e = 4.144510719595914
sum de = -1.1519648082658485e-19
Info: CFL hydro = 0.011278768915938415 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011278768915938415 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0617e+04 | 800 | 1 | 3.880e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1046.048233638511 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.21410995882596, dt = 0.011278768915938415 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.54 us (1.1%)
patch tree reduce : 1322.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 398.89 us (95.8%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.9487500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.528334554604865e-17,-3.295484880733269e-17,2.145002788676399e-17)
sum a = (2.1091822194386177e-16,4.1603685182881947e-17,4.066904018165361e-17)
sum e = 4.144510719963382
sum de = -1.2265037076242269e-18
Info: CFL hydro = 0.011281915433126616 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011281915433126616 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0544e+04 | 800 | 1 | 3.894e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1042.6848742492152 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.2253887277419, dt = 0.011281915433126616 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (1.2%)
patch tree reduce : 1442.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1243.00 ns (0.3%)
LB compute : 381.77 us (95.4%)
LB move op cnt : 0
LB apply : 3.12 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.9487500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.821759163163569e-17,-3.1292165527403156e-17,2.2061516383160577e-17)
sum a = (-7.847123656146261e-17,1.6316744848367036e-16,-1.016845830823549e-16)
sum e = 4.144510719822023
sum de = -4.54009659728305e-19
Info: CFL hydro = 0.01128138194757603 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01128138194757603 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0740e+04 | 800 | 1 | 3.857e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1052.9270048474125 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.236670643175028, dt = 0.01128138194757603 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.87 us (1.0%)
patch tree reduce : 1253.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 366.16 us (95.7%)
LB move op cnt : 0
LB apply : 3.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.9487500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5877983471509628e-17,-2.888281472646027e-17,2.0663293452637093e-17)
sum a = (-2.199411409941815e-16,-1.285017050406757e-16,8.740129024307054e-17)
sum e = 4.144510719199296
sum de = -2.0328790734103208e-19
Info: CFL hydro = 0.01128107325182174 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01128107325182174 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0875e+04 | 800 | 1 | 3.832e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1059.7610019003248 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.247952025122604, dt = 0.01128107325182174 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (1.1%)
patch tree reduce : 1413.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 384.36 us (95.6%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 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: 3.9487500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2410510430093595e-17,-3.18700464962115e-17,2.2686859793437552e-17)
sum a = (-1.7200987919641314e-16,3.9434829474903366e-17,-4.249039967122678e-17)
sum e = 4.144510718292596
sum de = -1.0164395367051604e-19
Info: CFL hydro = 0.011281009347559235 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011281009347559235 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0605e+04 | 800 | 1 | 3.883e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1046.0020616333584 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.259233098374427, dt = 0.011281009347559235 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (1.0%)
patch tree reduce : 1002.00 ns (0.2%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 405.82 us (96.2%)
LB move op cnt : 0
LB apply : 3.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 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: 3.9562500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0572674826716718e-17,-3.048829967949172e-17,2.137700874604303e-17)
sum a = (-7.216537846022653e-17,-1.056029025105814e-16,-7.429229496943205e-18)
sum e = 4.14451071724909
sum de = 1.0977546996415732e-18
Info: CFL hydro = 0.011281205302748929 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011281205302748929 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0823e+04 | 800 | 1 | 3.842e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1057.0824368591936 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.270514107721986, dt = 0.011281205302748929 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (1.2%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 385.34 us (95.3%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.9562500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0704483737146355e-17,-3.236545328171835e-17,2.1767941991749113e-17)
sum a = (-1.2515855176705125e-16,1.017325135952384e-17,-4.5282352046690924e-17)
sum e = 4.1445107162253105
sum de = -5.827586677109586e-19
Info: CFL hydro = 0.01128167092601072 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01128167092601072 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0637e+04 | 800 | 1 | 3.877e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.6518199547047 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.281795313024734, dt = 0.01128167092601072 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.1%)
patch tree reduce : 1412.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.2%)
LB compute : 383.75 us (95.6%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.9562500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9157226868125724e-17,-3.194381455119627e-17,2.041989631690055e-17)
sum a = (-1.0617806866518345e-16,1.268960328590783e-17,1.1171404290322823e-16)
sum e = 4.144510715372321
sum de = 5.21772295508649e-19
Info: CFL hydro = 0.011282410396242481 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011282410396242481 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0807e+04 | 800 | 1 | 3.845e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1056.3419712107411 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.293076983950744, dt = 0.011282410396242481 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (1.0%)
patch tree reduce : 802.00 ns (0.2%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 388.03 us (96.1%)
LB move op cnt : 0
LB apply : 3.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.9562500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7493139373951552e-17,-3.171651907213153e-17,2.3740582162610845e-17)
sum a = (-4.774777780313619e-17,-2.258725419635152e-18,-7.085927198415104e-17)
sum e = 4.1445107148238645
sum de = -1.6263032587282567e-19
Info: CFL hydro = 0.01128342276482837 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01128342276482837 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0566e+04 | 800 | 1 | 3.890e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.1562397982173 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.304359394346985, dt = 0.01128342276482837 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (0.8%)
patch tree reduce : 692.00 ns (0.2%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 402.93 us (96.5%)
LB move op cnt : 0
LB apply : 3.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.9562500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.765190919787816e-17,-3.141021313823538e-17,2.0424389802483376e-17)
sum a = (-2.2323636375492242e-17,2.2360183391565915e-16,-6.749814476819528e-17)
sum e = 4.144510714682948
sum de = 1.5517643593698782e-18
Info: CFL hydro = 0.011284701454523888 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011284701454523888 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0753e+04 | 800 | 1 | 3.855e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1053.7496784138712 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.315642817111815, dt = 0.011284701454523888 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.31 us (1.1%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 389.70 us (95.6%)
LB move op cnt : 0
LB apply : 4.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.9562500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7454195832233703e-17,-2.748665131016225e-17,1.9874686732850683e-17)
sum a = (1.020620358713125e-16,1.155020512495527e-16,-1.9768340907390407e-17)
sum e = 4.144510715014064
sum de = -1.6940658945086007e-19
Info: CFL hydro = 0.01128623447558879 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01128623447558879 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5580e+04 | 800 | 1 | 5.135e-02 | 0.0% | 1.1% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 791.1498944518604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.32692751856634, dt = 0.01128623447558879 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.41 us (1.0%)
patch tree reduce : 1413.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 402.77 us (95.8%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 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: 3.9562500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9278550978862095e-17,-2.7188583433167955e-17,2.1078940869048735e-17)
sum a = (1.324679549817857e-16,5.991014544732547e-17,-1.3582908219774146e-16)
sum e = 4.144510715836728
sum de = 8.809142651444724e-20
Info: CFL hydro = 0.011284070666219519 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011284070666219519 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0877e+04 | 800 | 1 | 3.832e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1060.315258373134 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.338213753041927, dt = 0.011284070666219519 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.31 us (1.0%)
patch tree reduce : 1664.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 398.82 us (95.7%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9562500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0917175388066906e-17,-2.6994614638842523e-17,1.7821163821498034e-17)
sum a = (-7.622748942710355e-17,2.949523936568661e-17,7.062860639089917e-17)
sum e = 4.14451071705474
sum de = 1.6940658945086007e-19
Info: CFL hydro = 0.01128167699719132 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01128167699719132 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0813e+04 | 800 | 1 | 3.844e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1056.825817436353 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.34949782370815, dt = 0.01128167699719132 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (1.0%)
patch tree reduce : 972.00 ns (0.2%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 396.15 us (96.0%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.9562500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8996959215671507e-17,-2.6960164582707504e-17,2.0580163969354766e-17)
sum a = (-7.74317435633016e-17,1.5959362961679406e-16,-1.8440066569106286e-16)
sum e = 4.144510718652836
sum de = -1.5788694136820158e-18
Info: CFL hydro = 0.011279831636723981 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011279831636723981 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0822e+04 | 800 | 1 | 3.842e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1057.0937379730774 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.36077950070534, dt = 0.011279831636723981 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.58 us (1.0%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 419.18 us (95.7%)
LB move op cnt : 0
LB apply : 4.03 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.9562500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.802786415830815e-17,-2.411429038024942e-17,1.6025267416894225e-17)
sum a = (1.3851918223332815e-17,1.1502124829219004e-16,4.670603806218377e-17)
sum e = 4.144510720533303
sum de = -6.437450399132683e-19
Info: CFL hydro = 0.011278579238827004 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011278579238827004 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0713e+04 | 800 | 1 | 3.862e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1051.3696254296453 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.372059332342065, dt = 0.011278579238827004 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.62 us (1.2%)
patch tree reduce : 1313.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 371.46 us (95.4%)
LB move op cnt : 0
LB apply : 3.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9562500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8656952139904146e-17,-2.279844801874446e-17,1.9338464119966477e-17)
sum a = (1.224265125326915e-16,-1.3339061735479316e-16,4.8798504515254265e-17)
sum e = 4.144510722557594
sum de = 5.658180087658726e-19
Info: CFL hydro = 0.011277956669527375 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011277956669527375 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0502e+04 | 800 | 1 | 3.902e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.5494915336226 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.38333791158089, dt = 0.011277956669527375 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.84 us (1.2%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 376.01 us (95.3%)
LB move op cnt : 0
LB apply : 4.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9562500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.084677744726926e-17,-2.605772289482277e-17,1.9304014063831457e-17)
sum a = (-8.758702098049413e-17,1.3620653498669905e-16,-8.010386965655697e-18)
sum e = 4.144510724572257
sum de = -2.7138935630027783e-18
Info: CFL hydro = 0.011277992544642953 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011277992544642953 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0579e+04 | 800 | 1 | 3.887e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.421930256579 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.39461586825042, dt = 0.011277992544642953 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (1.2%)
patch tree reduce : 1844.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 404.57 us (95.5%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 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: 3.9562500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8014383701559662e-17,-2.2926325129289122e-17,1.9182689953095086e-17)
sum a = (1.6930255413275895e-16,-1.2396028894496364e-16,-1.9681466852789057e-18)
sum e = 4.144510726421945
sum de = 5.38712954453735e-19
Info: CFL hydro = 0.011278706602873053 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011278706602873053 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0690e+04 | 800 | 1 | 3.867e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1050.0237339822932 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.40589386079506, dt = 0.011278706602873053 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (1.1%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 397.84 us (95.8%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.9562500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1574722111687486e-17,-2.5915803641831767e-17,1.9280048807389704e-17)
sum a = (-3.433022985281013e-17,-1.254341522161314e-16,2.0989071157392165e-17)
sum e = 4.144510727964124
sum de = 4.0826988057657276e-19
Info: CFL hydro = 0.011280108780087533 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011280108780087533 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0435e+04 | 800 | 1 | 3.915e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1037.1728610548553 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.417172567397934, dt = 0.011280108780087533 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (1.1%)
patch tree reduce : 1774.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 391.27 us (91.8%)
LB move op cnt : 0
LB apply : 18.95 us (4.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.9562500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9997508672114663e-17,-2.7160452341133788e-17,1.9762349593279968e-17)
sum a = (-3.1656905496732667e-16,4.5617865636875455e-17,3.680464258042106e-17)
sum e = 4.144510729082409
sum de = -2.6520601578532144e-18
Info: CFL hydro = 0.011282199710536933 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011282199710536933 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9225e+04 | 800 | 1 | 4.161e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 975.864588951168 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.428452676178022, dt = 0.011282199710536933 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (1.1%)
patch tree reduce : 1332.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 412.15 us (95.8%)
LB move op cnt : 0
LB apply : 3.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.9562500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4524443232229488e-17,-2.5808147216409834e-17,1.9336966291438868e-17)
sum a = (6.981678332893481e-17,2.773379301721782e-16,-1.0818815454923543e-16)
sum e = 4.1445107296968065
sum de = -8.03834266944331e-19
Info: CFL hydro = 0.011284970307514875 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011284970307514875 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0256e+04 | 800 | 1 | 3.950e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1028.376236306953 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.439734875888558, dt = 0.011284970307514875 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.48 us (1.1%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 387.88 us (95.7%)
LB move op cnt : 0
LB apply : 3.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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: 3.9562500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.769909079649786e-17,-2.141501614493112e-17,1.770882668192732e-17)
sum a = (-7.26476792461168e-17,-6.673125656205921e-17,-3.497130046262701e-17)
sum e = 4.144510729772528
sum de = -1.1180834903756764e-18
Info: CFL hydro = 0.011288401383126132 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011288401383126132 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0868e+04 | 800 | 1 | 3.834e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1059.7490216560864 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.451019846196072, dt = 0.011288401383126132 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (1.1%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 374.45 us (95.5%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.9562500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6531533459226242e-17,-2.419142854942131e-17,1.7791207250945845e-17)
sum a = (-1.2254933447195548e-16,-3.858406287122116e-18,-9.485148933940028e-17)
sum e = 4.14451072932411
sum de = 7.487771253728015e-19
Info: CFL hydro = 0.011292464183935983 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011292464183935983 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0778e+04 | 800 | 1 | 3.850e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1055.4757214063218 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.462308247579198, dt = 0.011292464183935983 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (1.1%)
patch tree reduce : 1322.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 392.39 us (95.8%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.9562500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4522196489438074e-17,-2.366569073623037e-17,1.7144145327018534e-17)
sum a = (1.2723154644926283e-16,1.960357976935336e-17,1.0523144103573423e-16)
sum e = 4.144510728415617
sum de = -1.0537089863843496e-18
Info: CFL hydro = 0.011289964195280363 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011289964195280363 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0425e+04 | 800 | 1 | 3.917e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1037.913119918307 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.473600711763133, dt = 0.011289964195280363 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (0.9%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 399.56 us (96.1%)
LB move op cnt : 0
LB apply : 3.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.9562500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7347101092509623e-17,-2.35758210245738e-17,1.7940990103706797e-17)
sum a = (1.2539520867441357e-16,-3.8116740370606994e-17,1.3298470582381098e-16)
sum e = 4.144510727032263
sum de = -1.9786689647860456e-18
Info: CFL hydro = 0.011286971159834455 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011286971159834455 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1163e+04 | 800 | 1 | 3.780e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1075.1804711383945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.484890675958415, dt = 0.011286971159834455 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (0.8%)
patch tree reduce : 852.00 ns (0.2%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 378.88 us (96.4%)
LB move op cnt : 0
LB apply : 3.01 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.9562500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8805986078401293e-17,-2.4368172315679233e-17,1.8925063446346248e-17)
sum a = (-2.1343457387024576e-16,-1.7123175727632e-17,5.213941104608729e-18)
sum e = 4.1445107254327676
sum de = 1.043544591017298e-18
Info: CFL hydro = 0.011284798235073487 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011284798235073487 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0636e+04 | 800 | 1 | 3.877e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.1371220900814 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.496177647118248, dt = 0.0038223528817518115 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.69 us (1.2%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 383.43 us (95.6%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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: 3.9562500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.625593301014609e-17,-2.4563638938532277e-17,1.969794296659276e-17)
sum a = (-1.2318141811060669e-17,-2.7152635548505327e-17,-2.320286172119903e-17)
sum e = 4.144510639453294
sum de = -1.3688052427629493e-18
Info: CFL hydro = 0.011284625232057425 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011284625232057425 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0384e+04 | 800 | 1 | 3.925e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 350.611932570012 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 2010 [SPH][rank=0]
Info: time since start : 955.73618636 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.1510493630986284 max=0.1512800140957925 delta=0.0002306509971641002
Number of particle pairs: 319600
Distance min=0.122052 max=2.267799 mean=0.931274
---------------- t = 17.5, dt = 0.011284625232057425 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.94 us (1.6%)
patch tree reduce : 1302.00 ns (0.2%)
gen split merge : 571.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.1%)
LB compute : 614.21 us (96.4%)
LB move op cnt : 0
LB apply : 3.87 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 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: 3.9562500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.650457254572927e-17,-2.470743047718279e-17,1.944780560248197e-17)
sum a = (7.974439080993069e-17,1.6428183290821185e-17,-2.2103455581933644e-17)
sum e = 4.144510723236469
sum de = 1.1587410718438829e-18
Info: CFL hydro = 0.011283285782629495 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011283285782629495 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9097e+04 | 800 | 1 | 4.189e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 969.7753072867007 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.511284625232058, dt = 0.011283285782629495 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (1.1%)
patch tree reduce : 1313.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 391.47 us (95.8%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.9562500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7788211593890624e-17,-2.4380154943900112e-17,1.9718912565979292e-17)
sum a = (-2.989665741108596e-17,-1.4998056612659617e-16,-3.715064097029885e-17)
sum e = 4.144510721930598
sum de = 2.0735366548785272e-18
Info: CFL hydro = 0.011283250350625593 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011283250350625593 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0399e+04 | 800 | 1 | 3.922e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1035.7332490022147 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.522567911014686, dt = 0.011283250350625593 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.91 us (1.1%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 412.30 us (95.7%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.9562500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7039297330085868e-17,-2.6912234069823998e-17,1.8748319680088325e-17)
sum a = (1.3082633491552566e-16,5.876280879517658e-17,-1.382465774413032e-16)
sum e = 4.144510720957757
sum de = 4.743384504624082e-19
Info: CFL hydro = 0.011284199428363152 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011284199428363152 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0056e+04 | 800 | 1 | 3.989e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1018.3567617844984 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.533851161365313, dt = 0.011284199428363152 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.94 us (1.3%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 373.40 us (95.5%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.9562500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.975336262211431e-17,-2.505193103853298e-17,1.7487148059841113e-17)
sum a = (2.145309843524559e-16,2.2089375993774114e-16,-7.495508409289926e-18)
sum e = 4.144510720556499
sum de = 2.1006417091906648e-19
Info: CFL hydro = 0.011286148596569968 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011286148596569968 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0168e+04 | 800 | 1 | 3.967e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1024.0926387862926 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.545135360793676, dt = 0.011286148596569968 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.90 us (1.2%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 382.97 us (95.5%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.9562500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1970148842976398e-17,-2.124519983561339e-17,1.8129716498185594e-17)
sum a = (9.866496077069411e-17,2.07775777692937e-16,-3.3393338108790377e-17)
sum e = 4.144510720819464
sum de = 6.844026213814747e-19
Info: CFL hydro = 0.011289102495751541 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011289102495751541 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0581e+04 | 800 | 1 | 3.887e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1045.2503113462299 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.556421509390248, dt = 0.011289102495751541 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.34 us (1.1%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 390.90 us (95.6%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.9562500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.237156688837575e-17,-1.903889841444457e-17,1.6375759292354852e-17)
sum a = (-2.906386474973507e-16,-1.2805834779650329e-16,-1.2627742967717556e-16)
sum e = 4.1445107218090875
sum de = 1.1248597539537109e-18
Info: CFL hydro = 0.011293050413033712 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011293050413033712 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0373e+04 | 800 | 1 | 3.927e-02 | 0.1% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1034.949195746 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.567710611886, dt = 0.011293050413033712 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.79 us (1.2%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 376.46 us (95.4%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 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: 3.9562500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.724599766689598e-17,-2.254831065463367e-17,1.404663593192205e-17)
sum a = (4.32333226209211e-17,-6.352889917003006e-17,-7.975187995256874e-17)
sum e = 4.144510723533404
sum de = 1.009663273127126e-18
Info: CFL hydro = 0.011294017117638215 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011294017117638215 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0472e+04 | 800 | 1 | 3.908e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.3465668885792 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.579003662299034, dt = 0.011294017117638215 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.45 us (1.1%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 403.32 us (95.7%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.9537500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9567631884690732e-17,-2.326277486230341e-17,1.402416850400791e-17)
sum a = (1.385431474897699e-16,5.901069941649595e-17,4.06510662393223e-18)
sum e = 4.144510725877943
sum de = 2.2158381900172497e-18
Info: CFL hydro = 0.011288725909637273 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011288725909637273 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0424e+04 | 800 | 1 | 3.917e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1038.0218778025244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.590297679416672, dt = 0.011288725909637273 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (1.1%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 402.52 us (95.6%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.9537500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1702037536534293e-17,-2.1779924619969988e-17,1.5692749483764912e-17)
sum a = (3.315593228716427e-17,6.038345926205007e-17,-1.835708686867672e-16)
sum e = 4.144510728676648
sum de = -3.4558944247975454e-19
Info: CFL hydro = 0.011280953766915588 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011280953766915588 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0061e+04 | 800 | 1 | 3.988e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1019.0799720183828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.60158640532631, dt = 0.011280953766915588 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (1.0%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 405.77 us (95.9%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.9537500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.125268897825144e-17,-2.1411458802178048e-17,1.2151882844496013e-17)
sum a = (7.98402518356977e-17,-1.2360081009833736e-16,-1.0251438008665058e-16)
sum e = 4.144510731827069
sum de = 1.4907779871675686e-18
Info: CFL hydro = 0.011273516177670527 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011273516177670527 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0309e+04 | 800 | 1 | 3.939e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1030.984903900319 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.612867359093226, dt = 0.011273516177670527 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (1.2%)
patch tree reduce : 1423.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 391.82 us (95.4%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9537500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2326632032547463e-17,-2.3713621249113874e-17,1.0952122193880789e-17)
sum a = (1.0920967360506511e-16,2.7725405177463207e-16,-3.8104757742386116e-18)
sum e = 4.14451073518014
sum de = -7.657177843178875e-19
Info: CFL hydro = 0.011266517274956145 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011266517274956145 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0147e+04 | 800 | 1 | 3.971e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1022.0768247011264 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.624140875270896, dt = 0.011266517274956145 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (1.0%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.2%)
LB compute : 429.73 us (96.1%)
LB move op cnt : 0
LB apply : 3.64 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.9537500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3554851425187266e-17,-1.7892310676559486e-17,1.1314596697562292e-17)
sum a = (-3.510910068716708e-18,-1.7231019381619886e-17,3.926108136570066e-17)
sum e = 4.144510738523988
sum de = -9.012430558785756e-19
Info: CFL hydro = 0.011260052746815512 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011260052746815512 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0453e+04 | 800 | 1 | 3.911e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1036.962719183477 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.63540739254585, dt = 0.011260052746815512 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.56 us (1.1%)
patch tree reduce : 1363.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 397.60 us (95.8%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.9537500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3222333492057953e-17,-2.0261875407237742e-17,1.1804386626090604e-17)
sum a = (1.4594841173027135e-17,3.1993617349739287e-18,-7.267464015961377e-17)
sum e = 4.144510741641296
sum de = -1.6263032587282567e-19
Info: CFL hydro = 0.011254208996663597 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011254208996663597 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0658e+04 | 800 | 1 | 3.873e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1046.7663149444645 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.646667445292668, dt = 0.011254208996663597 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.78 us (1.1%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 401.89 us (95.7%)
LB move op cnt : 0
LB apply : 3.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 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: 3.9562500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.354286879696639e-17,-2.0057421813219044e-17,1.0712469629463267e-17)
sum a = (1.9411857717819342e-17,1.7796599433645238e-16,-2.596036404052815e-17)
sum e = 4.144510744328336
sum de = -3.0154372922253092e-18
Info: CFL hydro = 0.011249061276463489 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011249061276463489 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0266e+04 | 800 | 1 | 3.947e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1026.3726593487643 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.657921654289332, dt = 0.011249061276463489 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.2%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 400.04 us (95.6%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9562500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3435025142978507e-17,-1.6925462361987545e-17,1.0092368619032927e-17)
sum a = (-1.2038946573514255e-16,-1.1982628220876138e-18,-1.19233142111828e-16)
sum e = 4.144510746410697
sum de = -2.541098841762901e-19
Info: CFL hydro = 0.01124467320918595 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01124467320918595 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0652e+04 | 800 | 1 | 3.874e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1045.410175877152 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.669170715565794, dt = 0.01124467320918595 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.2%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.3%)
LB compute : 396.61 us (95.5%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.9562500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1556748169356172e-17,-1.7896055247878512e-17,8.948027623939256e-18)
sum a = (-1.7299320362478878e-16,3.840432344790802e-18,1.026911238529085e-16)
sum e = 4.144510747757405
sum de = 2.888382350137164e-18
Info: CFL hydro = 0.011241096484133989 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011241096484133989 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0645e+04 | 800 | 1 | 3.875e-02 | 0.1% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.669002355965 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.680415388774982, dt = 0.011241096484133989 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.2%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 411.35 us (95.6%)
LB move op cnt : 0
LB apply : 4.03 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (74.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9562500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.910929635524222e-17,-1.7823410564289448e-17,1.1019524477623218e-17)
sum a = (3.085526766875605e-17,1.1130663354371844e-16,7.198264337985817e-17)
sum e = 4.144510748291035
sum de = 3.3881317890172014e-19
Info: CFL hydro = 0.011238370061113946 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011238370061113946 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0479e+04 | 800 | 1 | 3.906e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1035.9421646898895 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.691656485259116, dt = 0.011238370061113946 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (1.3%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 369.13 us (95.2%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.9562500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.153278291291442e-17,-1.5498780689439477e-17,1.1083931104310428e-17)
sum a = (-8.511859956699364e-17,-4.156773729821932e-17,-1.4102355153149126e-16)
sum e = 4.144510747995145
sum de = 1.6644197413547002e-19
Info: CFL hydro = 0.01123652102958868 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01123652102958868 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0441e+04 | 800 | 1 | 3.914e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1033.746910465648 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.70289485532023, dt = 0.01123652102958868 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.4%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 378.33 us (95.3%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.9562500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9432827317205877e-17,-1.7108197442355906e-17,9.232615044185064e-18)
sum a = (-7.851317576023567e-17,-1.7803789010577763e-16,1.6738233796036353e-17)
sum e = 4.144510746918419
sum de = 1.6466320494623599e-18
Info: CFL hydro = 0.0112355623832399 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0112355623832399 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0292e+04 | 800 | 1 | 3.942e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1026.0712714436124 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.71413137634982, dt = 0.0112355623832399 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.2%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 1162.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 403.47 us (95.5%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 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: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8168660039903443e-17,-1.9748494679399582e-17,9.71192017302011e-18)
sum a = (1.2138102822042005e-16,-5.677369251051114e-17,-1.5316644740482162e-16)
sum e = 4.144510745166617
sum de = -2.2124500582282325e-18
Info: CFL hydro = 0.011235494110094118 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011235494110094118 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0449e+04 | 800 | 1 | 3.912e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1033.9089512863397 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.72536693873306, dt = 0.011235494110094118 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.2%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 401.38 us (95.6%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.093365150187061e-17,-1.9879554675565415e-17,5.980829310744802e-18)
sum a = (-1.7690852739596006e-16,-5.347247843565976e-17,1.7312800819227364e-16)
sum e = 4.14451074290322
sum de = 1.3315357930837601e-18
Info: CFL hydro = 0.0112363038135792 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0112363038135792 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0502e+04 | 800 | 1 | 3.902e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1036.558007801362 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.736602432843153, dt = 0.0112363038135792 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.94 us (1.2%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 394.52 us (95.7%)
LB move op cnt : 0
LB apply : 3.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7024319044809772e-17,-2.0470260801141416e-17,1.1242700928237036e-17)
sum a = (-1.1999853248943646e-16,1.7606075644933308e-16,1.2418121865278604e-17)
sum e = 4.144510740332222
sum de = 1.4907779871675686e-19
Info: CFL hydro = 0.01123796710381428 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01123796710381428 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0225e+04 | 800 | 1 | 3.956e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1022.6399689204974 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.747838736656732, dt = 0.01123796710381428 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.71 us (1.2%)
patch tree reduce : 1423.00 ns (0.4%)
gen split merge : 1202.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 372.52 us (95.4%)
LB move op cnt : 0
LB apply : 3.36 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.650307471720166e-17,-1.687350643493609e-17,9.990516279155479e-18)
sum a = (2.956713513501187e-17,-8.877330117436086e-17,-7.076341095838402e-17)
sum e = 4.144510737685253
sum de = 8.267041565201971e-19
Info: CFL hydro = 0.011240448835660284 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011240448835660284 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9736e+04 | 800 | 1 | 4.053e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 998.0749234774769 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.759076703760545, dt = 0.011240448835660284 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (1.1%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 377.99 us (95.6%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7533580744197007e-17,-1.936832707623569e-17,9.054373449399531e-18)
sum a = (-4.788258237062104e-17,3.559439713011256e-17,-1.227740087510969e-16)
sum e = 4.144510735205524
sum de = -2.0261028098322864e-18
Info: CFL hydro = 0.011243703401610123 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011243703401610123 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9903e+04 | 800 | 1 | 4.019e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1006.7438698808891 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.770317152596206, dt = 0.011243703401610123 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (1.1%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 386.53 us (95.7%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (74.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5954869476096578e-17,-1.8499305687373245e-17,7.212044360439824e-18)
sum a = (1.740476749082259e-17,9.122973995964047e-17,1.1957165135906775e-16)
sum e = 4.144510733129806
sum de = 1.4704491964334654e-18
Info: CFL hydro = 0.011247675584991993 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011247675584991993 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0458e+04 | 800 | 1 | 3.910e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1035.1050381405967 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.781560855997817, dt = 0.011247675584991993 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (1.3%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 376.15 us (95.4%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.755155468652832e-17,-1.7384172348567958e-17,9.653504860443338e-18)
sum a = (1.0628591231917133e-16,-2.8118435383107944e-16,-1.7848124734995007e-16)
sum e = 4.144510731669769
sum de = -1.8973538018496328e-19
Info: CFL hydro = 0.011252301689191453 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011252301689191453 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8420e+04 | 800 | 1 | 4.343e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 932.3253934977835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.79280853158281, dt = 0.011252301689191453 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.3%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 393.28 us (95.4%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9366922861991057e-17,-2.2646418423192094e-17,6.190525304610134e-18)
sum a = (-9.27455424295813e-18,1.8915177778064025e-16,4.858955743565274e-18)
sum e = 4.14451073099412
sum de = 4.54009659728305e-19
Info: CFL hydro = 0.011257510905538727 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011257510905538727 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0604e+04 | 800 | 1 | 3.883e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.3133490260866 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.804060833272, dt = 0.011257510905538727 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (1.1%)
patch tree reduce : 961.00 ns (0.2%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 392.65 us (96.0%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.777622896566975e-17,-1.7460936060607946e-17,6.711769632218246e-18)
sum a = (-1.4068803794130672e-16,-5.111190067614716e-17,8.841382232773458e-17)
sum e = 4.144510731215813
sum de = -1.4568966692773966e-18
Info: CFL hydro = 0.011257063825928868 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011257063825928868 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0301e+04 | 800 | 1 | 3.941e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1028.4442389589642 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.815318344177538, dt = 0.011257063825928868 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (1.1%)
patch tree reduce : 932.00 ns (0.2%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.2%)
LB compute : 374.54 us (95.8%)
LB move op cnt : 0
LB apply : 3.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 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: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.557442103008376e-17,-1.9725278337221634e-17,9.508215493265215e-18)
sum a = (-2.6019078918810445e-16,5.798992927493007e-17,-1.2623698830693012e-16)
sum e = 4.144510732286932
sum de = -1.8634724839594607e-18
Info: CFL hydro = 0.011254774242261801 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011254774242261801 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0378e+04 | 800 | 1 | 3.926e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1032.2885157686142 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.826575408003468, dt = 0.011254774242261801 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.48 us (2.6%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 385.50 us (94.4%)
LB move op cnt : 0
LB apply : 3.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2369067980999393e-17,-1.8530011172189238e-17,6.85556117086876e-18)
sum a = (-4.8589557435652737e-17,-1.7029711227509167e-16,3.286834920986324e-17)
sum e = 4.144510734237777
sum de = 1.700842158086635e-18
Info: CFL hydro = 0.011252713257708002 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011252713257708002 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0471e+04 | 800 | 1 | 3.908e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1036.7850959969842 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.837830182245728, dt = 0.011252713257708002 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.80 us (1.2%)
patch tree reduce : 1654.00 ns (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 395.93 us (95.6%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2785464311674838e-17,-2.1380004403098247e-17,7.406762069029062e-18)
sum a = (2.3845430159543514e-18,-1.180678315173478e-16,-3.5840041008640523e-17)
sum e = 4.14451073700113
sum de = -9.690056916589196e-19
Info: CFL hydro = 0.011250885534936219 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011250885534936219 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0754e+04 | 800 | 1 | 3.855e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1050.9383401976906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.849082895503436, dt = 0.011250885534936219 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.41 us (1.1%)
patch tree reduce : 1733.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 369.84 us (95.5%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 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: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3022121219037142e-17,-2.251498396989436e-17,7.69284731780248e-18)
sum a = (5.320286930069005e-18,-3.358861750307747e-17,4.2622208581656417e-17)
sum e = 4.144510740414317
sum de = -1.7414997395548415e-18
Info: CFL hydro = 0.011249293754510526 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011249293754510526 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0691e+04 | 800 | 1 | 3.866e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.5795130000045 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.86033378103837, dt = 0.011249293754510526 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (1.0%)
patch tree reduce : 1733.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1393.00 ns (0.3%)
LB compute : 411.73 us (95.7%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3097012645417618e-17,-2.2133412152485836e-17,7.544562293569139e-18)
sum a = (-2.5235415033165146e-17,-1.6760551441097735e-16,-7.480754798292972e-17)
sum e = 4.144510744262337
sum de = -1.5585406229479126e-19
Info: CFL hydro = 0.01124793809180375 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01124793809180375 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0550e+04 | 800 | 1 | 3.893e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.2589168241232 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.87158307479288, dt = 0.01124793809180375 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.2%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 391.07 us (95.5%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2813923053699418e-17,-2.501598315387035e-17,6.212992732524277e-18)
sum a = (-3.268621326090593e-16,-1.54737669530284e-16,-1.0825106334739503e-16)
sum e = 4.1445107482937535
sum de = 2.032879073410321e-18
Info: CFL hydro = 0.011246817177636948 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011246817177636948 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0641e+04 | 800 | 1 | 3.876e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.765389770437 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.882831012884683, dt = 0.011246817177636948 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.73 us (1.1%)
patch tree reduce : 1403.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 402.30 us (95.4%)
LB move op cnt : 0
LB apply : 4.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.16561167608393e-18,-2.702082663807569e-17,5.714215832830308e-18)
sum a = (-5.418544481480189e-17,-5.628839606756565e-17,-7.649709856207326e-17)
sum e = 4.1445107522389035
sum de = -1.883801274693564e-18
Info: CFL hydro = 0.011245928103186469 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011245928103186469 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0603e+04 | 800 | 1 | 3.883e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1042.7372816107318 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.89407783006232, dt = 0.011245928103186469 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (1.0%)
patch tree reduce : 1423.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 475.39 us (96.2%)
LB move op cnt : 0
LB apply : 4.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.72035768774261e-18,-2.691560418401112e-17,4.244846047245372e-18)
sum a = (-1.8644969511683268e-17,-1.2079387943759713e-16,3.241300933746995e-17)
sum e = 4.1445107558301775
sum de = -1.6940658945086007e-19
Info: CFL hydro = 0.011245266963129007 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011245266963129007 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0523e+04 | 800 | 1 | 3.898e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1038.6252501965519 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.905323758165505, dt = 0.011245266963129007 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.56 us (1.2%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.2%)
LB compute : 376.10 us (95.5%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 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: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.504670379766838e-18,-2.8706258188768296e-17,4.961556997706526e-18)
sum a = (-3.21853394012733e-17,5.187579322522802e-17,3.549254479023512e-17)
sum e = 4.144510758822919
sum de = -1.345088320239829e-18
Info: CFL hydro = 0.011244829278185455 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011244829278185455 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0123e+04 | 800 | 1 | 3.976e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1018.2957372641141 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.916569025128634, dt = 0.011244829278185455 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.83 us (1.2%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 383.08 us (95.4%)
LB move op cnt : 0
LB apply : 4.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.835889942189189e-18,-2.6998733667293448e-17,5.76963548835186e-18)
sum a = (7.958861664305931e-17,4.6870050285957013e-17,-5.332269558289881e-17)
sum e = 4.144510761014336
sum de = -3.9641141931501256e-19
Info: CFL hydro = 0.011244609987828967 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011244609987828967 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0 | 8.4087e+03 | 800 | 1 | 9.514e-02 | 0.0% | 0.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 425.4958096978321 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.92781385440682, dt = 0.011244609987828967 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (0.7%)
patch tree reduce : 1403.00 ns (0.2%)
gen split merge : 771.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 762.75 us (97.7%)
LB move op cnt : 0
LB apply : 3.51 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 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: 3.9587500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.377904411363187e-18,-2.624832157496108e-17,4.82225894463884e-18)
sum a = (1.7077641740392672e-16,5.4694706514189127e-17,6.2669145595182195e-18)
sum e = 4.144510762257955
sum de = 1.7787691892340307e-18
Info: CFL hydro = 0.011244603944016258 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011244603944016258 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.4126e+04 | 800 | 1 | 5.663e-02 | 0.0% | 1.1% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 714.780174892273 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.939058464394652, dt = 0.011244603944016258 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.4%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 391.60 us (95.3%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.958750000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1108270817884081e-17,-2.6068207694516037e-17,5.641571149241246e-18)
sum a = (-1.96287432886172e-16,-1.7581511257080513e-17,-9.152331435105193e-17)
sum e = 4.144510762475872
sum de = 1.8084153423879312e-19
Info: CFL hydro = 0.011244806090856797 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011244806090856797 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0243e+04 | 800 | 1 | 3.952e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1024.3241966022354 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.95030306833867, dt = 0.011244806090856797 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.05 us (1.2%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 400.30 us (95.5%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.958750000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.541192179382017e-18,-2.6863180185544788e-17,2.3468164599151865e-18)
sum a = (3.607969357305805e-17,8.615509690809943e-18,-1.0555497199769789e-16)
sum e = 4.144510761666824
sum de = 8.538092108323347e-19
Info: CFL hydro = 0.011245211805466815 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011245211805466815 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0469e+04 | 800 | 1 | 3.908e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1035.7774351445705 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.961547874429527, dt = 0.011245211805466815 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.3%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 396.70 us (95.5%)
LB move op cnt : 0
LB apply : 3.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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: 3.958750000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.90327999667692e-18,-2.571387763345341e-17,2.2385047345124233e-18)
sum a = (1.1491340463820217e-16,1.8211198370087554e-16,6.767788419150842e-17)
sum e = 4.144510759904648
sum de = 1.3044307387716225e-18
Info: CFL hydro = 0.011245817354634806 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011245817354634806 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0089e+04 | 800 | 1 | 3.982e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1016.5566773581276 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.972793086234994, dt = 0.011245817354634806 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.3%)
patch tree reduce : 1213.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 415.80 us (95.6%)
LB move op cnt : 0
LB apply : 4.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 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: 3.958750000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0749260042672675e-17,-2.313255739468436e-17,3.7281888195030635e-18)
sum a = (-1.7578515600025292e-17,-4.726547701724592e-17,-3.967448203932089e-17)
sum e = 4.144510757334603
sum de = 8.605854744103691e-19
Info: CFL hydro = 0.011246619184355225 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011246619184355225 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0464e+04 | 800 | 1 | 3.909e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1035.622801228089 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.984038903589628, dt = 0.011246619184355225 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (1.2%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 380.86 us (95.6%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.963750000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.44455778084181e-18,-2.5243278632935093e-17,1.8202361181774656e-18)
sum a = (-5.418544481480189e-17,-7.394180309397142e-17,-2.3342159774266715e-17)
sum e = 4.144510754163805
sum de = 9.046311876675928e-19
Info: CFL hydro = 0.011247614888762953 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011247614888762953 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0727e+04 | 800 | 1 | 3.860e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.9653448419165 (tsim/hr) [sph::Model][rank=0]
---------------- t = 17.995285522773983, dt = 0.004714477226016811 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.79 us (1.2%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 385.76 us (95.6%)
LB move op cnt : 0
LB apply : 3.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 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: 3.963750000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.9470914811095e-18,-2.5731243082945384e-17,2.761246890648145e-18)
sum a = (-2.6229973175497863e-17,3.303610600495551e-17,-6.730043140255082e-17)
sum e = 4.144510673554688
sum de = -6.2341624917916505e-19
Info: CFL hydro = 0.01124817034044505 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01124817034044505 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0444e+04 | 800 | 1 | 3.913e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 433.714933046311 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 2055 [SPH][rank=0]
Info: time since start : 958.520201732 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15106450434112068 max=0.1512576329341983 delta=0.00019312859307762942
Number of particle pairs: 319600
Distance min=0.120537 max=2.266749 mean=0.931136
---------------- t = 18, dt = 0.01124817034044505 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.52 us (1.4%)
patch tree reduce : 1383.00 ns (0.2%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.1%)
LB compute : 663.46 us (96.5%)
LB move op cnt : 0
LB apply : 4.84 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (73.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.963750000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.421341438663863e-18,-2.5487764034711233e-17,1.333816303836275e-18)
sum a = (5.586900407983499e-17,-3.6091676201278926e-17,-1.017325135952384e-16)
sum e = 4.144510749730626
sum de = 1.2739375526704677e-18
Info: CFL hydro = 0.011249360136647008 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011249360136647008 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8624e+04 | 800 | 1 | 4.296e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 942.6818858492906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.011248170340444, dt = 0.011249360136647008 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.05 us (1.0%)
patch tree reduce : 1363.00 ns (0.3%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 393.26 us (95.7%)
LB move op cnt : 0
LB apply : 3.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.963750000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0603877061211577e-17,-2.502239573225418e-17,6.8675437990896365e-19)
sum a = (1.2746520769956991e-17,4.432523961754844e-17,1.89613108967144e-16)
sum e = 4.144510745909914
sum de = 2.7850443305721395e-18
Info: CFL hydro = 0.011250820104717823 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011250820104717823 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0510e+04 | 800 | 1 | 3.901e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1038.2521405664472 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.02249753047709, dt = 0.011250820104717823 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (1.1%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 420.26 us (95.8%)
LB move op cnt : 0
LB apply : 4.01 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (76.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: 3.963750000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0533104663282026e-17,-2.475180364731322e-17,5.2094476190259e-18)
sum a = (-8.66224194087136e-17,9.899598087529582e-17,-2.8912883634152033e-16)
sum e = 4.144510742709462
sum de = 9.486769009248164e-19
Info: CFL hydro = 0.011252474721981279 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011252474721981279 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0468e+04 | 800 | 1 | 3.908e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1036.2806993556944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.033748350581806, dt = 0.011252474721981279 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (1.1%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1173.00 ns (0.3%)
LB compute : 399.06 us (95.7%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.963750000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.72222997340212e-18,-2.315188874411882e-17,-2.1190529094355645e-18)
sum a = (-9.528436178387944e-17,-1.948390326999736e-16,2.031654614849549e-17)
sum e = 4.144510740133525
sum de = 1.497554250745603e-18
Info: CFL hydro = 0.01125432502380044 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01125432502380044 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0527e+04 | 800 | 1 | 3.897e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1039.3845497248085 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.045000825303788, dt = 0.01125432502380044 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.54 us (1.1%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 412.39 us (95.8%)
LB move op cnt : 0
LB apply : 3.65 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.968750000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.320636928691515e-18,-2.6711291011416885e-17,7.833643199397774e-19)
sum a = (-1.3416050121798445e-16,-2.5981333639914685e-17,-4.995108356724979e-17)
sum e = 4.144510738388193
sum de = -2.0735366548785272e-18
Info: CFL hydro = 0.011256373385776348 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011256373385776348 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0261e+04 | 800 | 1 | 3.949e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1026.0849092925234 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.056255150327587, dt = 0.011256373385776348 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (1.1%)
patch tree reduce : 1293.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1382.00 ns (0.3%)
LB compute : 408.43 us (95.7%)
LB move op cnt : 0
LB apply : 3.48 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (78.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: 3.968750000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.378128327693226e-18,-2.6278137724088807e-17,-5.2161878474001435e-19)
sum a = (1.5591196709592986e-16,1.8370117976866923e-17,-7.117381597494904e-17)
sum e = 4.144510737638715
sum de = 2.2497195079074217e-18
Info: CFL hydro = 0.011258622743306822 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011258622743306822 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0489e+04 | 800 | 1 | 3.904e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1037.862988138125 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.067511523713364, dt = 0.011258622743306822 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.77 us (1.2%)
patch tree reduce : 1352.00 ns (0.3%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 384.34 us (95.5%)
LB move op cnt : 0
LB apply : 3.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.968750000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.888863397098679e-18,-2.6318157830060873e-17,-1.4367920151094292e-18)
sum a = (1.0165462651180271e-16,2.5631066438733196e-16,8.412254359613331e-17)
sum e = 4.144510737979469
sum de = -5.624298769768554e-19
Info: CFL hydro = 0.011261077024941465 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011261077024941465 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0587e+04 | 800 | 1 | 3.886e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.0100737799246 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.07877014645667, dt = 0.011261077024941465 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (1.0%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 380.93 us (95.7%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.968750000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.94483250906339e-18,-2.1491826664112597e-17,-6.893755798322802e-19)
sum a = (-2.540317182825741e-18,2.4590000720618206e-16,-1.4115835609897612e-16)
sum e = 4.144510739428278
sum de = -2.520770051028798e-18
Info: CFL hydro = 0.011263740765418308 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011263740765418308 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0634e+04 | 800 | 1 | 3.877e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1045.642384109749 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.09003122348161, dt = 0.011263740765418308 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.54 us (1.1%)
patch tree reduce : 1142.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 403.51 us (95.9%)
LB move op cnt : 0
LB apply : 3.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.968750000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.313029713261099e-18,-1.9115755740767535e-17,-2.164362222395752e-18)
sum a = (1.9235713082972462e-16,-2.2033057641135998e-18,-5.1824867055289293e-17)
sum e = 4.144510741925126
sum de = 1.7279472123987727e-18
Info: CFL hydro = 0.011266618821588173 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011266618821588173 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0677e+04 | 800 | 1 | 3.869e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.0463256396908 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.101294964247028, dt = 0.011266618821588173 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.54 us (1.0%)
patch tree reduce : 1142.00 ns (0.3%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 417.23 us (96.1%)
LB move op cnt : 0
LB apply : 3.58 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.9687500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2406794537038557e-17,-2.0402460656696342e-17,-2.9986527122742533e-18)
sum a = (1.4618806429468888e-17,9.585803010995388e-17,-3.969844729576264e-17)
sum e = 4.144510745336752
sum de = 1.0977546996415732e-18
Info: CFL hydro = 0.011269715387968757 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011269715387968757 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0484e+04 | 800 | 1 | 3.906e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1038.5145286704435 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.112561583068615, dt = 0.011269715387968757 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.64 us (1.1%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 396.47 us (95.7%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.9687500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1713393543038327e-17,-1.8573822656621816e-17,-2.5152285549882815e-18)
sum a = (-8.522045190687109e-17,-2.0238659065059796e-17,1.0828701123205766e-16)
sum e = 4.144510749466007
sum de = -1.6263032587282567e-18
Info: CFL hydro = 0.011273034175626376 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011273034175626376 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0596e+04 | 800 | 1 | 3.884e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.5124457395016 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.123831298456583, dt = 0.011273034175626376 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.88 us (1.1%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 412.30 us (95.7%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.9687500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.781569199553951e-18,-1.9529718100085617e-17,3.6472124647291743e-19)
sum a = (8.946230229706124e-17,-3.189775632397228e-17,-1.3422341001614406e-16)
sum e = 4.144510754066939
sum de = -2.371692252312041e-19
Info: CFL hydro = 0.01127657814522467 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01127657814522467 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0065e+04 | 800 | 1 | 3.987e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1017.8523160593301 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.13510433263221, dt = 0.01127657814522467 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.3%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 382.13 us (95.3%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.973750000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2786213225938643e-17,-1.9993483257946714e-17,-3.625868408210739e-18)
sum a = (2.2008493253283201e-16,2.2320640718437024e-17,-4.582157031663035e-17)
sum e = 4.144510758863354
sum de = -4.0657581468206416e-20
Info: CFL hydro = 0.011280348714963797 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011280348714963797 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0180e+04 | 800 | 1 | 3.964e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1024.0176689286448 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.146380910777435, dt = 0.011280348714963797 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.65 us (1.1%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 388.99 us (95.5%)
LB move op cnt : 0
LB apply : 4.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.973750000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.52501411538563e-17,-1.9662182310496083e-17,-4.051158095768866e-18)
sum a = (-9.424337095719082e-17,1.0866745967807047e-16,-9.241002883939676e-17)
sum e = 4.1445107635679985
sum de = -7.453889935837843e-20
Info: CFL hydro = 0.011280868020974031 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011280868020974031 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0545e+04 | 800 | 1 | 3.894e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1042.9112661899062 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.1576612594924, dt = 0.011280868020974031 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (1.1%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 371.73 us (95.5%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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: 3.973750000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3133709444344052e-17,-1.799154181651362e-17,-5.5194981242410705e-18)
sum a = (1.2677620657686953e-17,-1.762345045585358e-17,-3.204154786262279e-17)
sum e = 4.144510767842053
sum de = 4.641740550953566e-19
Info: CFL hydro = 0.011279720694064025 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011279720694064025 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0570e+04 | 800 | 1 | 3.889e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.2137012343471 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.168942127513375, dt = 0.011279720694064025 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (1.0%)
patch tree reduce : 1543.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 424.75 us (95.9%)
LB move op cnt : 0
LB apply : 4.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.973750000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3318691267503827e-17,-1.8349897291744196e-17,-6.084928393413663e-18)
sum a = (-1.7561739920516067e-16,-1.7314897779166017e-17,1.287533402333141e-16)
sum e = 4.144510771459598
sum de = -3.5914196963582334e-19
Info: CFL hydro = 0.01127918116442902 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01127918116442902 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0449e+04 | 800 | 1 | 3.912e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1037.985316383 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.180221848207438, dt = 0.01127918116442902 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (1.1%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.3%)
LB compute : 378.02 us (95.5%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 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: 3.9762500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0309553755536306e-17,-1.9119781154935487e-17,-3.156299164805155e-18)
sum a = (1.4086777736461987e-16,7.287834483936867e-17,-1.0503971898420022e-16)
sum e = 4.144510774262324
sum de = 1.1553529400548657e-18
Info: CFL hydro = 0.0112792584261071 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0112792584261071 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0661e+04 | 800 | 1 | 3.872e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.6775907699464 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.191501029371867, dt = 0.0112792584261071 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.70 us (1.1%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 409.84 us (95.9%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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: 3.9762500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3390587036829083e-17,-1.765340702640577e-17,-5.53672315230858e-18)
sum a = (2.1288337297208546e-16,-2.781467575770873e-17,1.485845899388641e-17)
sum e = 4.144510776118124
sum de = -1.2705494208814505e-19
Info: CFL hydro = 0.011279951306877964 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011279951306877964 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0514e+04 | 800 | 1 | 3.900e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.1987849109166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.202780287797975, dt = 0.011279951306877964 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.0%)
patch tree reduce : 1262.00 ns (0.3%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1433.00 ns (0.3%)
LB compute : 398.14 us (96.0%)
LB move op cnt : 0
LB apply : 3.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.9762500000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6556996544195604e-17,-1.8406814775793356e-17,-4.749239803917877e-18)
sum a = (-2.2361980785799046e-16,1.0347299034432066e-16,4.2658156466319045e-18)
sum e = 4.144510776965503
sum de = 1.754205233763656e-18
Info: CFL hydro = 0.011281250964450753 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011281250964450753 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0523e+04 | 800 | 1 | 3.898e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.7251807098964 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.214060239104853, dt = 0.011281250964450753 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.23 us (1.0%)
patch tree reduce : 1462.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1213.00 ns (0.3%)
LB compute : 400.89 us (95.8%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.9737500000000012
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1735486513820567e-17,-1.704753538698772e-17,-4.591593351386975e-18)
sum a = (-1.0651358225536798e-16,-1.4611017721125318e-16,9.190675845411997e-18)
sum e = 4.144510776811179
sum de = 2.146381488342397e-18
Info: CFL hydro = 0.01128314144292182 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01128314144292182 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0371e+04 | 800 | 1 | 3.927e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1034.1675028584962 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.225341490069304, dt = 0.01128314144292182 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (1.1%)
patch tree reduce : 1322.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 404.15 us (95.7%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.9687500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1058468019341066e-17,-1.9289784692819166e-17,-5.246893332216138e-18)
sum a = (3.5468579533793365e-17,-2.840482019758688e-17,9.820962089830082e-17)
sum e = 4.14451077574284
sum de = 7.657177843178875e-19
Info: CFL hydro = 0.01128560063969175 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01128560063969175 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0616e+04 | 800 | 1 | 3.880e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1046.7698430560342 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.236624631512225, dt = 0.01128560063969175 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.2%)
patch tree reduce : 1382.00 ns (0.3%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 380.88 us (95.3%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9687500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2270211298177164e-17,-1.9442563202635338e-17,-3.687653834974631e-18)
sum a = (1.6205306405912888e-16,-6.906487340807484e-17,-1.969944079512037e-17)
sum e = 4.144510773908341
sum de = -8.673617379884035e-19
Info: CFL hydro = 0.011288601453122056 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011288601453122056 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0858e+04 | 800 | 1 | 3.835e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1059.2715522531762 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.247910232151916, dt = 0.011288601453122056 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (1.1%)
patch tree reduce : 1233.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 371.92 us (95.5%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 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: 3.9687500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4969298304929515e-17,-2.026000312157823e-17,-3.678666863808974e-18)
sum a = (1.588776675805967e-16,-1.0775874583322637e-16,-2.7006447484210636e-16)
sum e = 4.144510771504891
sum de = 1.6940658945086007e-19
Info: CFL hydro = 0.011292111962997647 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011292111962997647 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0416e+04 | 800 | 1 | 3.918e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1037.123675330155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.259198833605037, dt = 0.011292111962997647 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.2%)
patch tree reduce : 1382.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 410.27 us (95.6%)
LB move op cnt : 0
LB apply : 3.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.9687500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6245448210452823e-17,-2.171701582181039e-17,-7.358831556145558e-18)
sum a = (-1.2967600260632156e-16,1.806905444281741e-17,-4.52943346749118e-18)
sum e = 4.144510768766179
sum de = 1.395910297075087e-18
Info: CFL hydro = 0.01129326849568654 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01129326849568654 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0627e+04 | 800 | 1 | 3.878e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.1755236917138 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.270490945568035, dt = 0.01129326849568654 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.2%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 395.52 us (95.5%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 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: 3.9687500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3153930129466779e-17,-2.1004798356932062e-17,-6.990365738353617e-18)
sum a = (-5.963754065530053e-17,3.746218930404163e-17,6.10634734135848e-17)
sum e = 4.144510765898073
sum de = 2.0328790734103208e-20
Info: CFL hydro = 0.011292776688021077 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011292776688021077 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0417e+04 | 800 | 1 | 3.918e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1037.5856055014285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.281784214063723, dt = 0.011292776688021077 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.4%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 399.13 us (95.2%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.96375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2986173334374514e-17,-2.0579789512222864e-17,-7.04129190829234e-18)
sum a = (-1.9625148500150937e-16,-9.698289933418862e-17,-3.8284497165699256e-17)
sum e = 4.144510763169999
sum de = 1.4772254600114998e-18
Info: CFL hydro = 0.011292839322551691 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011292839322551691 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8337e+04 | 800 | 1 | 4.363e-02 | 0.0% | 1.1% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 931.8590139140008 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.293076990751743, dt = 0.011292839322551691 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.63 us (1.1%)
patch tree reduce : 1392.00 ns (0.3%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 419.03 us (95.9%)
LB move op cnt : 0
LB apply : 4.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 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: 3.96375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0305060269953478e-17,-2.2379056031013797e-17,-7.147637733752616e-18)
sum a = (-7.35913112185108e-17,-3.64811116184574e-17,-7.212343926145347e-17)
sum e = 4.144510760851234
sum de = -6.776263578034403e-20
Info: CFL hydro = 0.01129346505505891 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01129346505505891 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0946e+04 | 800 | 1 | 3.819e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1064.4319101821175 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.304369830074293, dt = 0.01129346505505891 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.34 us (1.1%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 385.17 us (95.6%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.96375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.493237207989119e-18,-2.1906865587684896e-17,-7.779721372403831e-18)
sum a = (-3.0523498649890543e-17,1.0204106627192597e-16,-5.2657659716640187e-17)
sum e = 4.144510759134268
sum de = -9.825582188149884e-19
Info: CFL hydro = 0.011294656192607047 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011294656192607047 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1148e+04 | 800 | 1 | 3.783e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1074.7302373768996 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.31566329512935, dt = 0.011294656192607047 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.56 us (1.1%)
patch tree reduce : 1403.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1263.00 ns (0.3%)
LB compute : 397.35 us (95.7%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.64601571780529e-18,-2.0213195980090434e-17,-8.715864202159781e-18)
sum a = (5.223676990038191e-17,1.5353341539408595e-16,1.39597618773207e-17)
sum e = 4.144510758159221
sum de = -1.3552527156068805e-19
Info: CFL hydro = 0.011296408408152058 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011296408408152058 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0721e+04 | 800 | 1 | 3.861e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1053.1536385435547 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.32695795132196, dt = 0.011296408408152058 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.97 us (1.2%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 391.07 us (95.6%)
LB move op cnt : 0
LB apply : 3.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.091617430921816e-17,-1.8292979807695032e-17,-8.649959746944962e-18)
sum a = (1.516701167057397e-17,1.0662142590935587e-16,-2.8036953511205985e-16)
sum e = 4.144510758005699
sum de = -1.260385025514399e-18
Info: CFL hydro = 0.011298710688081741 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011298710688081741 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0641e+04 | 800 | 1 | 3.876e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1049.247253908893 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.33825435973011, dt = 0.011298710688081741 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (1.1%)
patch tree reduce : 1322.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 387.18 us (95.6%)
LB move op cnt : 0
LB apply : 3.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0508764949708372e-17,-1.7457378717854875e-17,-1.2866347052165752e-17)
sum a = (5.553349048965046e-17,5.692347536327209e-17,2.371961256322431e-16)
sum e = 4.144510758687636
sum de = -9.351243737687476e-19
Info: CFL hydro = 0.011301545526753035 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011301545526753035 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0347e+04 | 800 | 1 | 3.932e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1034.5189934002533 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.349553070418192, dt = 0.011301545526753035 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (1.0%)
patch tree reduce : 1233.00 ns (0.3%)
gen split merge : 601.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 396.42 us (96.0%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1775927884066024e-17,-1.6922841162064226e-17,-7.247992245102454e-18)
sum a = (-8.902493636699927e-17,-1.8940341297327866e-16,4.910780610620563e-17)
sum e = 4.144510760153286
sum de = 9.622294280808852e-19
Info: CFL hydro = 0.01130381023284015 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01130381023284015 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0373e+04 | 800 | 1 | 3.927e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1036.1025455659392 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.360854615944945, dt = 0.01130381023284015 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.65 us (0.7%)
patch tree reduce : 1412.00 ns (0.2%)
gen split merge : 692.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.1%)
LB compute : 658.92 us (97.5%)
LB move op cnt : 0
LB apply : 3.22 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.750863714737956e-18,-2.0038043656643096e-17,-7.706327774550966e-18)
sum a = (-1.7496434596712293e-16,-3.69843820037342e-17,-2.630486460187834e-17)
sum e = 4.144510762274903
sum de = -2.541098841762901e-18
Info: CFL hydro = 0.011301438166291814 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011301438166291814 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9268e+04 | 800 | 1 | 4.152e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 980.1153231507923 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.372158426177783, dt = 0.011301438166291814 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.80 us (1.1%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1093.00 ns (0.2%)
LB compute : 422.41 us (95.8%)
LB move op cnt : 0
LB apply : 4.09 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.375307669949263e-18,-2.0216332058570117e-17,-8.202109017189716e-18)
sum a = (2.1543567278313206e-16,7.224326554366224e-17,-1.785022169493366e-16)
sum e = 4.144510764828516
sum de = -5.421010862427522e-20
Info: CFL hydro = 0.011299975214623512 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011299975214623512 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0512e+04 | 800 | 1 | 3.900e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.186726780486 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.383459864344076, dt = 0.011299975214623512 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.64 us (1.1%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1223.00 ns (0.3%)
LB compute : 399.93 us (95.7%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2276202612287602e-17,-1.8979359730472095e-17,-1.0411406095413754e-17)
sum a = (1.8841484614505638e-16,2.5914230921877777e-16,1.2713868108055102e-16)
sum e = 4.144510767698764
sum de = 2.744386749103933e-18
Info: CFL hydro = 0.011299417472006098 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011299417472006098 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0629e+04 | 800 | 1 | 3.878e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.9696563883138 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.3947598395587, dt = 0.011299417472006098 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.23 us (1.1%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 379.52 us (95.7%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 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: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.433122335216786e-17,-1.4504971461370565e-17,-8.879127511669218e-18)
sum a = (-1.3660196171798797e-16,-3.5510518732566435e-17,8.297188363693879e-17)
sum e = 4.144510770672429
sum de = -1.8295911660692887e-19
Info: CFL hydro = 0.011299749658594385 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011299749658594385 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0756e+04 | 800 | 1 | 3.854e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1055.399660714117 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.406059257030705, dt = 0.011299749658594385 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.33 us (1.1%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 392.88 us (95.8%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 19.54 us (94.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: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0651058659831276e-17,-1.712954149887434e-17,-8.642470604306914e-18)
sum a = (-6.479007079027727e-17,-6.120726495223531e-17,6.462156508092121e-17)
sum e = 4.144510773535901
sum de = 1.4501204056993622e-18
Info: CFL hydro = 0.0113009438219778 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0113009438219778 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0123e+04 | 800 | 1 | 3.976e-02 | 0.1% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1023.227727946188 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.4173590066893, dt = 0.0113009438219778 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.91 us (1.2%)
patch tree reduce : 1362.00 ns (0.3%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 390.69 us (95.6%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.064057386013801e-17,-1.7821163821498034e-17,-7.427731668415596e-18)
sum a = (-2.4929858013532804e-16,-7.59998194909069e-17,6.92326302031671e-17)
sum e = 4.1445107760932345
sum de = 2.5817564232311074e-18
Info: CFL hydro = 0.011302960338686207 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011302960338686207 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0375e+04 | 800 | 1 | 3.926e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1036.1794780684386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.42865995051128, dt = 0.011302960338686207 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.3%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 400.21 us (95.3%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 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: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.455640953997019e-18,-1.858243517065557e-17,-6.0077902242417735e-18)
sum a = (6.8492702910528e-17,5.455091497553862e-18,-8.58824921160745e-17)
sum e = 4.144510778179418
sum de = 1.6263032587282567e-18
Info: CFL hydro = 0.011305748780572543 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011305748780572543 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0176e+04 | 800 | 1 | 3.965e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1026.1965985214115 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.439962910849964, dt = 0.011305748780572543 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.3%)
patch tree reduce : 1472.00 ns (0.4%)
gen split merge : 1092.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 373.59 us (95.3%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.11878007608674e-18,-1.8436022432081743e-17,-7.62694286258766e-18)
sum a = (1.1240903534003905e-16,-1.5755957847630034e-16,-4.225074710680926e-17)
sum e = 4.144510779673408
sum de = 1.328147661294743e-18
Info: CFL hydro = 0.011309249113946438 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011309249113946438 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0718e+04 | 800 | 1 | 3.861e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1054.0353405550998 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.451268659630536, dt = 0.011309249113946438 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 us (1.2%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 369.58 us (95.3%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0402419124248097e-17,-2.1289760234309774e-17,-8.149685018723383e-18)
sum a = (4.876929685896588e-18,8.983975508601884e-18,-2.6391738656479693e-17)
sum e = 4.144510780508907
sum de = -1.9651164376299768e-19
Info: CFL hydro = 0.01131339279544634 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01131339279544634 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0558e+04 | 800 | 1 | 3.891e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1046.254042090318 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.462577908744482, dt = 0.01131339279544634 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.79 us (1.1%)
patch tree reduce : 1893.00 ns (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 399.95 us (95.6%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0595639004309725e-17,-1.9910260160381408e-17,-8.546609578539905e-18)
sum a = (7.605374131790085e-17,7.480155666881929e-17,-8.129014985042371e-17)
sum e = 4.14451078067736
sum de = 4.620564727272208e-19
Info: CFL hydro = 0.011318103798366374 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011318103798366374 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0647e+04 | 800 | 1 | 3.875e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1051.1488017760732 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.47389130153993, dt = 0.011318103798366374 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (1.1%)
patch tree reduce : 1362.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 392.83 us (95.4%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1778923541121243e-17,-1.8533755743508264e-17,-9.68196360246792e-18)
sum a = (2.9117786576729014e-17,1.3972942768363665e-16,-2.659244767917937e-16)
sum e = 4.1445107802283685
sum de = -1.3671111768684407e-18
Info: CFL hydro = 0.011318551434630328 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011318551434630328 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0634e+04 | 800 | 1 | 3.877e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1050.9245420339253 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.485209405338296, dt = 0.011318551434630328 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (0.9%)
patch tree reduce : 972.00 ns (0.2%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 378.53 us (96.1%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1467375207378463e-17,-1.6722881053628355e-17,-1.3408560979160398e-17)
sum a = (-1.4749417077076438e-16,9.991021796283548e-17,5.254382474854186e-18)
sum e = 4.14451077918555
sum de = -7.098136097991037e-19
Info: CFL hydro = 0.011318437792248719 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011318437792248719 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1261e+04 | 800 | 1 | 3.763e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1082.9176439186633 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.496527956772926, dt = 0.00347204322707384 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (1.0%)
patch tree reduce : 942.00 ns (0.2%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 361.92 us (96.0%)
LB move op cnt : 0
LB apply : 3.29 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0224177529462564e-17,-1.643230231927211e-17,-1.1759451770262319e-17)
sum a = (1.8441264831928375e-17,1.1489767743866225e-16,-1.256378568958863e-16)
sum e = 4.144510693452216
sum de = -4.0318768289304696e-19
Info: CFL hydro = 0.011318678383321233 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011318678383321233 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0937e+04 | 800 | 1 | 3.821e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.13100964994163 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 2100 [SPH][rank=0]
Info: time since start : 961.0910496350001 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15103837481221835 max=0.15126294506840834 delta=0.00022457025618999316
Number of particle pairs: 319600
Distance min=0.119655 max=2.265990 mean=0.931177
---------------- t = 18.5, dt = 0.011318678383321233 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.45 us (1.3%)
patch tree reduce : 1423.00 ns (0.2%)
gen split merge : 561.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.1%)
LB compute : 693.44 us (96.5%)
LB move op cnt : 0
LB apply : 5.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (76.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0342505983143716e-17,-1.5245273211141567e-17,-1.3823459481308233e-17)
sum a = (-1.5434823411310553e-16,-8.850818552497398e-17,2.225114147475594e-16)
sum e = 4.14451077725224
sum de = -9.41900637346782e-19
Info: CFL hydro = 0.011318962038703258 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011318962038703258 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9501e+04 | 800 | 1 | 4.102e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 993.2888904576952 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.511318678383322, dt = 0.011318962038703258 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.2%)
patch tree reduce : 1382.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 413.04 us (95.5%)
LB move op cnt : 0
LB apply : 4.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (74.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: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.874459026775134e-18,-1.7585630285531438e-17,-9.18468453130156e-18)
sum a = (-9.479457185535112e-17,2.0637081453403926e-17,8.832994393018845e-17)
sum e = 4.144510775654453
sum de = -4.607859233063394e-19
Info: CFL hydro = 0.011319900802532541 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011319900802532541 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0300e+04 | 800 | 1 | 3.941e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1034.011583487147 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.522637640422026, dt = 0.011319900802532541 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.90 us (1.1%)
patch tree reduce : 1382.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 402.96 us (91.9%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.7012848325249796e-18,-1.617130569833615e-17,-9.735885429461861e-18)
sum a = (-1.7284941208613827e-16,3.465975212888423e-17,5.109392673381585e-17)
sum e = 4.144510774059341
sum de = -2.168404344971009e-19
Info: CFL hydro = 0.011321315881635046 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011321315881635046 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0384e+04 | 800 | 1 | 3.925e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1038.3627564797123 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.53395754122456, dt = 0.011321315881635046 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.2%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 403.54 us (95.6%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.780694202997676e-18,-1.5807707823258942e-17,-8.333917927619353e-18)
sum a = (-2.330081970690469e-16,-1.4926759974745404e-16,-7.561038407372842e-18)
sum e = 4.144510772727633
sum de = -1.1926223897340549e-18
Info: CFL hydro = 0.011323198332299852 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011323198332299852 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0343e+04 | 800 | 1 | 3.933e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1036.3942385468104 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.545278857106194, dt = 0.011323198332299852 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.3%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 409.17 us (95.3%)
LB move op cnt : 0
LB apply : 4.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9587499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7912156904550314e-18,-1.8608272712756836e-17,-8.419294153693096e-18)
sum a = (1.6096264489102914e-16,8.056520084306071e-17,-4.090869274607113e-17)
sum e = 4.144510771801946
sum de = 5.421010862427522e-20
Info: CFL hydro = 0.01131617268509988 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01131617268509988 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0527e+04 | 800 | 1 | 3.897e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1045.943602437533 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.556602055438493, dt = 0.01131617268509988 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (1.2%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.3%)
LB compute : 377.18 us (95.4%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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: 3.9587499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.414650127308404e-18,-1.6780921909073225e-17,-1.0496782321487496e-17)
sum a = (1.5227523943089395e-16,-1.263927624738015e-16,8.538820870196336e-17)
sum e = 4.144510771265366
sum de = -7.386127300057499e-19
Info: CFL hydro = 0.011309484567177633 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011309484567177633 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0660e+04 | 800 | 1 | 3.872e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1052.0844750272063 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.56791822812359, dt = 0.011309484567177633 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.46 us (1.1%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 394.67 us (95.7%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9587499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.561600093070695e-18,-1.9033468786031988e-17,-8.609518376699504e-18)
sum a = (-5.63902484074431e-17,-1.9778526141378152e-16,1.295741502664441e-16)
sum e = 4.144510771333963
sum de = 5.353248226647178e-19
Info: CFL hydro = 0.011303214773994204 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011303214773994204 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0499e+04 | 800 | 1 | 3.903e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.2509022289364 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.57922771269077, dt = 0.011303214773994204 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.2%)
patch tree reduce : 1282.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1333.00 ns (0.3%)
LB compute : 396.98 us (95.5%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.577164522554037e-18,-2.146538062917199e-17,-5.73818108927206e-18)
sum a = (7.2616224847037e-17,1.5131662917322385e-16,3.9941095517235384e-17)
sum e = 4.144510772028668
sum de = 5.89534931288993e-19
Info: CFL hydro = 0.011297438282618059 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011297438282618059 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0306e+04 | 800 | 1 | 3.940e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1032.8571726804214 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.590530927464766, dt = 0.011297438282618059 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.78 us (1.2%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 391.41 us (95.6%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (74.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.8642672991854905e-18,-1.7989388688005178e-17,-6.406212612585905e-18)
sum a = (-6.807480875132494e-17,-1.3011935985049397e-16,1.7553651646466976e-16)
sum e = 4.144510773317407
sum de = -1.3552527156068805e-18
Info: CFL hydro = 0.011292223207495972 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011292223207495972 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0645e+04 | 800 | 1 | 3.875e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1049.5570568749438 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.601828365747384, dt = 0.011292223207495972 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (1.1%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 389.50 us (95.8%)
LB move op cnt : 0
LB apply : 3.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.915580155510813e-18,-2.1254748492476902e-17,-2.794948032519359e-18)
sum a = (-8.992363348356497e-17,-1.448699751903925e-17,3.8969004802816805e-17)
sum e = 4.144510775118068
sum de = 7.995991022080595e-19
Info: CFL hydro = 0.011287628993650383 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011287628993650383 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0685e+04 | 800 | 1 | 3.868e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1051.1145802441956 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.613120588954878, dt = 0.011287628993650383 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.63 us (1.1%)
patch tree reduce : 1293.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 386.79 us (95.7%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.811025230681769e-18,-2.068164185210031e-17,-4.1669589638096765e-18)
sum a = (1.929832231542654e-16,1.8585056370578888e-16,2.1415952287760875e-17)
sum e = 4.144510777305042
sum de = -5.624298769768554e-19
Info: CFL hydro = 0.011283706234503418 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011283706234503418 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0457e+04 | 800 | 1 | 3.911e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1039.111956638147 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.624408217948528, dt = 0.011283706234503418 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (1.0%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 422.85 us (95.9%)
LB move op cnt : 0
LB apply : 4.14 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (8.58686372021941e-18,-1.715612795523941e-17,-4.012682625465897e-18)
sum a = (-2.6081089019853477e-16,9.429130147007432e-17,-5.0685768460042256e-17)
sum e = 4.144510779722091
sum de = 4.607859233063394e-19
Info: CFL hydro = 0.011280496018532635 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011280496018532635 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0903e+04 | 800 | 1 | 3.827e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1061.3843570131357 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.635691924183032, dt = 0.011280496018532635 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (0.9%)
patch tree reduce : 681.00 ns (0.2%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 721.00 ns (0.2%)
LB compute : 381.92 us (96.4%)
LB move op cnt : 0
LB apply : 3.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.521781554796573e-18,-1.6726251167815478e-17,-4.59234226565078e-18)
sum a = (-8.371363640809592e-17,2.3271462267763545e-16,5.0766276743401264e-17)
sum e = 4.1445107821956135
sum de = 9.690056916589196e-19
Info: CFL hydro = 0.011278029967691434 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011278029967691434 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0819e+04 | 800 | 1 | 3.843e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1056.8139975353927 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.646972420201564, dt = 0.011278029967691434 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.42 us (1.1%)
patch tree reduce : 1323.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 373.11 us (95.4%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.8569084585945064e-18,-1.2989917905693538e-17,-3.1154833374277957e-18)
sum a = (-1.5168209933396057e-16,1.0961708296457491e-16,1.267567348060106e-16)
sum e = 4.144510784549112
sum de = -9.215718466126788e-19
Info: CFL hydro = 0.011276329346081955 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011276329346081955 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0483e+04 | 800 | 1 | 3.906e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1039.524736939916 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.658250450169255, dt = 0.011276329346081955 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.06 us (1.2%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 405.61 us (95.6%)
LB move op cnt : 0
LB apply : 3.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3738587584404375e-19,-1.2754009912595039e-17,-9.67597228835748e-19)
sum a = (-1.2866347052165752e-16,-1.6320339636833297e-17,-4.245070721524513e-17)
sum e = 4.1445107866195725
sum de = 2.9070170749767588e-18
Info: CFL hydro = 0.011274706986418262 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011274706986418262 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0353e+04 | 800 | 1 | 3.931e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1032.7928049438315 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.669526779515337, dt = 0.011274706986418262 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (1.2%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 403.23 us (95.8%)
LB move op cnt : 0
LB apply : 3.57 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-9.915624852775003e-19,-1.343102840707454e-17,-4.439563755834609e-18)
sum a = (2.296710351095329e-16,5.4125531673697514e-17,4.876180771632783e-17)
sum e = 4.144510788257984
sum de = 9.961107459710572e-19
Info: CFL hydro = 0.011273434220102211 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011273434220102211 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0174e+04 | 800 | 1 | 3.966e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1023.5499817464886 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.680801486501757, dt = 0.011273434220102211 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.2%)
patch tree reduce : 1452.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 419.20 us (95.7%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 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: 3.96625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.974862455143756e-18,-1.2764494712288305e-17,-2.0235663408004575e-18)
sum a = (7.938491196330441e-18,-8.028360907987012e-17,-1.8935847811745037e-16)
sum e = 4.144510789369096
sum de = 2.4462311516704194e-18
Info: CFL hydro = 0.011272976103076994 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011272976103076994 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0224e+04 | 800 | 1 | 3.956e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1025.9804313217098 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.692074920721858, dt = 0.011272976103076994 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.71 us (1.1%)
patch tree reduce : 17.68 us (4.2%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.3%)
LB compute : 384.24 us (91.7%)
LB move op cnt : 0
LB apply : 3.48 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3470973027641136e-18,-1.4161968728547983e-17,-7.054772365040825e-18)
sum a = (1.891098385818672e-16,1.378361724247382e-16,-6.942435225470112e-18)
sum e = 4.144510789908216
sum de = 3.049318610115481e-19
Info: CFL hydro = 0.011273328490624178 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011273328490624178 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0363e+04 | 800 | 1 | 3.929e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1032.9577773547878 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.703347896824933, dt = 0.011273328490624178 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.92 us (1.2%)
patch tree reduce : 1403.00 ns (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 397.67 us (95.6%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (71.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.927656398014664e-18,-1.1543764462286549e-17,-4.864947057675712e-18)
sum a = (1.0830498517438896e-16,4.1238215022145224e-17,-1.2194271391827362e-16)
sum e = 4.144510789875145
sum de = 2.913793338554793e-19
Info: CFL hydro = 0.011274475940678371 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011274475940678371 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0138e+04 | 800 | 1 | 3.973e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1021.5982785630417 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.714621225315557, dt = 0.011274475940678371 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.2%)
patch tree reduce : 1342.00 ns (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 408.24 us (95.7%)
LB move op cnt : 0
LB apply : 3.59 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.957413510746207e-18,-1.1426933837133006e-17,-6.786661058598722e-18)
sum a = (-9.491439813755988e-17,1.8255534094504795e-17,-1.3869892165664128e-18)
sum e = 4.144510789319331
sum de = -6.742382260144231e-19
Info: CFL hydro = 0.01127639222163919 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01127639222163919 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0794e+04 | 800 | 1 | 3.847e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1054.994910145739 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.725895701256235, dt = 0.01127639222163919 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.73 us (1.1%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.2%)
LB compute : 409.32 us (95.8%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.556394380988151e-18,-1.1377505495721893e-17,-5.813072515652536e-18)
sum a = (7.244097890930668e-17,2.8930857576483346e-16,8.779072566024901e-17)
sum e = 4.144510788339011
sum de = 1.703383256928398e-18
Info: CFL hydro = 0.011279040496425233 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011279040496425233 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0643e+04 | 800 | 1 | 3.875e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.4797031134815 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.737172093477874, dt = 0.011279040496425233 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.74 us (1.1%)
patch tree reduce : 1422.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 401.54 us (95.7%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 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: 3.96625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.214490561051886e-18,-6.734237060132389e-18,-4.303261359822143e-18)
sum a = (-7.309403214734443e-19,1.3642222229467482e-16,-1.255135371280947e-16)
sum e = 4.144510787070689
sum de = -1.5820457872342195e-18
Info: CFL hydro = 0.011282374035249147 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011282374035249147 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0590e+04 | 800 | 1 | 3.885e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1045.0368107011636 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.7484511339743, dt = 0.011282374035249147 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (1.2%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 367.61 us (95.4%)
LB move op cnt : 0
LB apply : 3.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.96625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.45958498313669e-18,-5.983824967800021e-18,-6.898998198169436e-18)
sum a = (1.6895505791435353e-18,-3.436318208041754e-17,-1.0503073201303455e-16)
sum e = 4.144510785678712
sum de = 1.4501204056993622e-18
Info: CFL hydro = 0.011286336949569495 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011286336949569495 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0657e+04 | 800 | 1 | 3.873e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.7630432118315 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.75973350800955, dt = 0.011286336949569495 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (1.2%)
patch tree reduce : 1372.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 384.15 us (95.4%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.96625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.013781538352211e-18,-7.718310402771841e-18,-8.726349001853047e-18)
sum a = (2.5019727725189375e-17,-1.3103003959528056e-16,1.1055322579433084e-16)
sum e = 4.144510784341499
sum de = 1.9651164376299768e-18
Info: CFL hydro = 0.01129086504189162 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01129086504189162 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0483e+04 | 800 | 1 | 3.906e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.3224289373293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.77101984495912, dt = 0.01129086504189162 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (1.0%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 405.96 us (95.8%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.96625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.207001418413839e-18,-9.473765437130196e-18,-6.713267460745856e-18)
sum a = (1.0983876158666111e-16,8.698227271247178e-17,5.4115046874004245e-17)
sum e = 4.144510783238083
sum de = 1.1858461261560205e-18
Info: CFL hydro = 0.011295886920762879 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011295886920762879 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0269e+04 | 800 | 1 | 3.947e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1029.8699750890546 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.782310710001013, dt = 0.011295886920762879 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.65 us (1.1%)
patch tree reduce : 1372.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 378.29 us (91.5%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.310901043262053e-18,-7.727297373937498e-18,-5.565930808596965e-18)
sum a = (-4.5956374884115203e-17,-1.1153130782285986e-16,-3.1563366105183454e-17)
sum e = 4.144510782529888
sum de = 1.4568966692773966e-19
Info: CFL hydro = 0.011301324908510801 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011301324908510801 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0217e+04 | 800 | 1 | 3.957e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1027.6456186959897 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.793606596921776, dt = 0.011301324908510801 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.84 us (1.2%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 390.18 us (95.4%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (7.23001830277114e-18,-9.560639491731548e-18,-6.518549752156619e-18)
sum a = (-5.1096922390871066e-17,-9.968947548357903e-17,8.638988152980221e-17)
sum e = 4.144510782349437
sum de = 7.995991022080595e-19
Info: CFL hydro = 0.011307096409906424 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011307096409906424 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0479e+04 | 800 | 1 | 3.906e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.500374981652 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.80490792183029, dt = 0.011307096409906424 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.0%)
patch tree reduce : 1273.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 400.30 us (95.8%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (6.20400576135862e-18,-1.070198482977e-17,-3.9093324570608395e-18)
sum a = (1.6637280153275474e-16,6.032055046389048e-17,-7.44256017083893e-17)
sum e = 4.144510782786039
sum de = -2.541098841762901e-18
Info: CFL hydro = 0.011313114778992266 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011313114778992266 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0654e+04 | 800 | 1 | 3.873e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1050.9069763140067 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.816215018240197, dt = 0.011313114778992266 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (1.1%)
patch tree reduce : 1743.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 398.58 us (95.5%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 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: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.003447279460807e-18,-9.255082472099206e-18,-7.962456452772193e-18)
sum a = (1.4436370914806049e-16,8.732340315963485e-17,-1.0682513058911077e-17)
sum e = 4.1445107838787685
sum de = -2.778268066994105e-19
Info: CFL hydro = 0.0113192909990521 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0113192909990521 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0595e+04 | 800 | 1 | 3.885e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.4501879068725 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.82752813301919, dt = 0.0113192909990521 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.3%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 1182.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 404.44 us (95.4%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0684010887438686e-17,-8.317441813815648e-18,-5.932898797861297e-18)
sum a = (1.6634883627631296e-17,2.096959938653324e-17,-3.720606062582041e-17)
sum e = 4.1445107856107395
sum de = 2.507217523872729e-19
Info: CFL hydro = 0.011320669590605478 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011320669590605478 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0332e+04 | 800 | 1 | 3.935e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1035.6598031926803 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.83884742401824, dt = 0.011320669590605478 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.78 us (1.1%)
patch tree reduce : 1483.00 ns (0.3%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 423.89 us (95.7%)
LB move op cnt : 0
LB apply : 4.20 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.0643569517193229e-17,-8.166161132527088e-18,-7.177594304304807e-18)
sum a = (1.6468418709644095e-16,1.080114107829775e-16,-1.851615625830885e-16)
sum e = 4.144510787834808
sum de = 1.599198204416119e-18
Info: CFL hydro = 0.011321930828306778 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011321930828306778 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0771e+04 | 800 | 1 | 3.852e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1058.1372051661967 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.850168093608847, dt = 0.011321930828306778 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.78 us (1.1%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 418.79 us (95.9%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9637499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3040095161368456e-17,-6.04972942301484e-18,-9.314995613203588e-18)
sum a = (4.3408568558651413e-17,1.8267516722725672e-16,1.467272825646283e-17)
sum e = 4.144510790493843
sum de = -1.1519648082658485e-18
Info: CFL hydro = 0.011324489129695196 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011324489129695196 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9902e+04 | 800 | 1 | 4.020e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1013.9831774941986 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.861490024437153, dt = 0.011324489129695196 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (0.7%)
patch tree reduce : 1352.00 ns (0.2%)
gen split merge : 831.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.2%)
LB compute : 687.83 us (97.3%)
LB move op cnt : 0
LB apply : 3.53 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.9612499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.318089104296375e-17,-3.58205692377816e-18,-7.532579665348262e-18)
sum a = (9.536674235289795e-18,-2.270708047856028e-17,-5.2004606478602433e-17)
sum e = 4.144510793444401
sum de = 5.624298769768554e-19
Info: CFL hydro = 0.011328258029574729 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011328258029574729 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9033e+04 | 800 | 1 | 4.203e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 969.9340628469661 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.872814513566848, dt = 0.011328258029574729 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.80 us (1.2%)
patch tree reduce : 1262.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 393.28 us (95.6%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.9612499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1675573372716186e-17,-5.399671842032309e-18,-9.921616166885442e-18)
sum a = (2.5903895905037275e-16,-1.4107148204437477e-16,-4.90089494233834e-18)
sum e = 4.144510796493495
sum de = -7.318364664277155e-19
Info: CFL hydro = 0.011331984769094671 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011331984769094671 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0273e+04 | 800 | 1 | 3.946e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1033.4643229680096 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.884142771596423, dt = 0.011331984769094671 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (1.1%)
patch tree reduce : 1462.00 ns (0.3%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1323.00 ns (0.3%)
LB compute : 405.33 us (95.7%)
LB move op cnt : 0
LB apply : 3.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.9612499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6387741920575727e-17,-8.01225925131521e-18,-7.540817722250115e-18)
sum a = (-4.860753137798405e-17,-6.946329579641897e-17,-1.5128068128856123e-17)
sum e = 4.144510799415016
sum de = 8.538092108323347e-19
Info: CFL hydro = 0.011330857117790315 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011330857117790315 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0233e+04 | 800 | 1 | 3.954e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1031.7449079603311 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.895474756365516, dt = 0.011330857117790315 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (1.1%)
patch tree reduce : 1223.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.3%)
LB compute : 392.34 us (95.6%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.9612499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4163466557075595e-17,-8.04858159310974e-18,-8.631985804613647e-18)
sum a = (4.985971602706561e-17,5.2963216736272525e-18,-1.0488993613143926e-16)
sum e = 4.144510801923615
sum de = -1.6127507315721878e-18
Info: CFL hydro = 0.01133015133245615 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01133015133245615 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0495e+04 | 800 | 1 | 3.903e-02 | 0.1% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1045.0300835644464 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.906805613483307, dt = 0.01133015133245615 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.2%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 404.81 us (95.5%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 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: 3.9612499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.546283280477685e-17,-7.440837668032179e-18,-1.116930733038417e-17)
sum a = (-1.8274107168247154e-16,2.5642824392674932e-18,-1.3104202222350143e-16)
sum e = 4.144510803919194
sum de = 1.2671612890924333e-18
Info: CFL hydro = 0.011329869060704108 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011329869060704108 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0196e+04 | 800 | 1 | 3.961e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1029.7145422122449 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.918135764815762, dt = 0.011329869060704108 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.64 us (1.1%)
patch tree reduce : 1683.00 ns (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.2%)
LB compute : 413.63 us (95.8%)
LB move op cnt : 0
LB apply : 3.64 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 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: 3.9612499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.2615460773791158e-17,-7.526962808369727e-18,-1.4012185875787032e-17)
sum a = (-3.538470113624723e-17,-2.2287688490829614e-18,-3.331170645403566e-17)
sum e = 4.144510805258052
sum de = 1.1519648082658485e-19
Info: CFL hydro = 0.011330004831480812 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011330004831480812 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0437e+04 | 800 | 1 | 3.915e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.947123472692 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.929465633876465, dt = 0.011330004831480812 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.86 us (1.2%)
patch tree reduce : 1362.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 375.01 us (95.5%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9612499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3157674700785803e-17,-7.38916258382965e-18,-1.3294726011062073e-17)
sum a = (7.549055779151966e-17,5.303511250559778e-17,-1.2697991125662442e-16)
sum e = 4.1445108058454245
sum de = -1.951563910473908e-18
Info: CFL hydro = 0.011330546048444747 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011330546048444747 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0040e+04 | 800 | 1 | 3.992e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1021.717714288364 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.940795638707947, dt = 0.011330546048444747 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.86 us (1.1%)
patch tree reduce : 1342.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 408.33 us (95.8%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9612499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.442408872087965e-17,-6.543263922862176e-18,-1.499101681857985e-17)
sum a = (4.808628705037594e-17,1.0832295911672028e-17,9.082832191424113e-18)
sum e = 4.144510805643954
sum de = -8.809142651444724e-20
Info: CFL hydro = 0.011331472963570989 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011331472963570989 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0515e+04 | 800 | 1 | 3.900e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1046.0140873880005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.95212618475639, dt = 0.011331472963570989 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (1.2%)
patch tree reduce : 1413.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.2%)
LB compute : 394.70 us (95.8%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.9612499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.508163544450023e-17,-6.445905068567557e-18,-1.3827204052627257e-17)
sum a = (-5.996107161726419e-17,-9.931202269462143e-17,-1.3011935985049397e-16)
sum e = 4.144510804677453
sum de = 1.683901499141549e-18
Info: CFL hydro = 0.011330404346674244 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011330404346674244 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0357e+04 | 800 | 1 | 3.930e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1038.0331017670137 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.963457657719964, dt = 0.011330404346674244 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (1.1%)
patch tree reduce : 1203.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 422.04 us (96.0%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.9612499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3578564517044077e-17,-8.900097111055751e-18,-1.7270337380469635e-17)
sum a = (2.3974842544328977e-16,-7.051776707985606e-17,-1.0235561026272396e-16)
sum e = 4.144510802993777
sum de = -8.91078660511524e-19
Info: CFL hydro = 0.01133001062740243 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01133001062740243 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0314e+04 | 800 | 1 | 3.938e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1035.7341597791526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.974788062066636, dt = 0.01133001062740243 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.62 us (1.0%)
patch tree reduce : 1503.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 425.19 us (95.8%)
LB move op cnt : 0
LB apply : 3.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9612499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.809301969925916e-17,-9.309004299093149e-18,-1.7106325156696392e-17)
sum a = (-1.9759653501930272e-16,2.5331276058932152e-17,-1.4602030749959662e-16)
sum e = 4.144510800782413
sum de = 2.744386749103933e-19
Info: CFL hydro = 0.011330403866628851 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011330403866628851 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0480e+04 | 800 | 1 | 3.906e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.1595053433061 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.98611807269404, dt = 0.011330403866628851 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (1.3%)
patch tree reduce : 1522.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 376.42 us (95.3%)
LB move op cnt : 0
LB apply : 3.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 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: 3.9562499999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3069302817656842e-17,-8.300965700011945e-18,-1.8182889410915735e-17)
sum a = (-9.082832191424112e-17,1.7470671946037408e-16,1.2501476022840074e-16)
sum e = 4.144510798232216
sum de = 3.4728350837426314e-19
Info: CFL hydro = 0.011329232069021342 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011329232069021342 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0284e+04 | 800 | 1 | 3.944e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1034.2125310575686 (tsim/hr) [sph::Model][rank=0]
---------------- t = 18.99744847656067, dt = 0.0025515234393296282 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.80 us (1.2%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 382.94 us (95.4%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9562499999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3160670357841023e-17,-6.95142219663577e-18,-1.6091733557806895e-17)
sum a = (2.492461561368617e-17,1.321204587633803e-16,1.0222380135229432e-16)
sum e = 4.144510714049019
sum de = 6.318865786517081e-19
Info: CFL hydro = 0.011329488558975104 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011329488558975104 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0278e+04 | 800 | 1 | 3.945e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 232.8284424344267 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 2145 [SPH][rank=0]
Info: time since start : 963.78932438 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.1510568372092809 max=0.15125869479415063 delta=0.0002018575848697357
Number of particle pairs: 319600
Distance min=0.119509 max=2.264943 mean=0.931104
---------------- t = 19, dt = 0.011329488558975104 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.41 us (1.4%)
patch tree reduce : 1423.00 ns (0.2%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.1%)
LB compute : 716.99 us (96.6%)
LB move op cnt : 0
LB apply : 4.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (76.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9562499999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4243600383302704e-17,-5.965851025468707e-18,-1.608401037946141e-17)
sum a = (1.0896702538359238e-17,7.866595427005184e-17,-2.3744776082488153e-16)
sum e = 4.14451079544242
sum de = -2.2090619264392153e-18
Info: CFL hydro = 0.011328878157477329 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011328878157477329 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7965e+04 | 800 | 1 | 4.453e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 915.8852067534509 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.011329488558975, dt = 0.011328878157477329 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.2%)
patch tree reduce : 1523.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.2%)
LB compute : 428.75 us (95.6%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (74.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9562499999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3520898118731111e-17,-4.8439774582891784e-18,-2.046061852999493e-17)
sum a = (7.207550874856997e-17,4.441960281478784e-17,-2.1176898854754397e-16)
sum e = 4.144510792689703
sum de = -1.0782729418547243e-18
Info: CFL hydro = 0.011329347927045057 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011329347927045057 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0338e+04 | 800 | 1 | 3.933e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1036.8424762640254 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.022658366716453, dt = 0.011329347927045057 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.2%)
patch tree reduce : 1442.00 ns (0.3%)
gen split merge : 1142.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 424.39 us (95.7%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9562499999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4812026309530516e-17,-4.5054682110494275e-18,-2.2215231035806505e-17)
sum a = (1.0220657632422682e-16,3.235309619636557e-19,6.332819014733039e-17)
sum e = 4.14451079054883
sum de = -2.1175823681357508e-19
Info: CFL hydro = 0.011327205093687768 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011327205093687768 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0293e+04 | 800 | 1 | 3.942e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1034.5663556429436 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.033987714643498, dt = 0.011327205093687768 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (1.2%)
patch tree reduce : 1402.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 388.80 us (91.7%)
LB move op cnt : 0
LB apply : 3.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.9537499999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.65405204303919e-17,-4.387139757368276e-18,-2.060412922579652e-17)
sum a = (1.4524443232229488e-17,9.48544849964555e-17,-3.198163472151841e-17)
sum e = 4.1445107889830615
sum de = -1.7110065534536867e-18
Info: CFL hydro = 0.011324136247056674 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011324136247056674 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0248e+04 | 800 | 1 | 3.951e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1032.109709476445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.045314919737187, dt = 0.011324136247056674 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.2%)
patch tree reduce : 1392.00 ns (0.3%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 401.69 us (91.7%)
LB move op cnt : 0
LB apply : 20.98 us (4.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9537499999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6351045121649294e-17,-3.927306399392154e-18,-2.093365150187061e-17)
sum a = (5.595887379149156e-17,6.466425319395808e-17,8.489692094490743e-18)
sum e = 4.14451078816449
sum de = -2.303929616531697e-19
Info: CFL hydro = 0.011321573182857442 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011321573182857442 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0158e+04 | 800 | 1 | 3.969e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1027.2094830737517 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.056639055984245, dt = 0.011321573182857442 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.2%)
patch tree reduce : 1503.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 415.08 us (95.7%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.9537499999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6610918371189546e-17,-2.32612770337758e-18,-2.179939639082891e-17)
sum a = (-1.192451247400489e-16,-7.992413023324383e-18,-4.048330944423003e-17)
sum e = 4.144510788219234
sum de = -7.724940478959219e-19
Info: CFL hydro = 0.01131954493267971 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01131954493267971 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0738e+04 | 800 | 1 | 3.858e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1056.5229531179373 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.067960629167104, dt = 0.01131954493267971 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.1%)
patch tree reduce : 1322.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 431.75 us (95.9%)
LB move op cnt : 0
LB apply : 3.69 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (74.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9537499999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4826255680542804e-17,-3.0480810536853673e-18,-2.1986999413912005e-17)
sum a = (2.889011664053237e-17,3.461481727305594e-17,-8.184734206269445e-17)
sum e = 4.1445107891883115
sum de = -1.1519648082658485e-19
Info: CFL hydro = 0.011318072005056176 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011318072005056176 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0876e+04 | 800 | 1 | 3.832e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1063.3713812755077 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.079280174099782, dt = 0.011318072005056176 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (1.2%)
patch tree reduce : 1653.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 389.25 us (95.4%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.9537499999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5736935425329393e-17,-2.8129219748506732e-18,-2.1607674339294893e-17)
sum a = (1.7435922324196868e-16,1.0046235500382554e-16,8.285987414735848e-18)
sum e = 4.144510791044662
sum de = 1.9922214919421144e-18
Info: CFL hydro = 0.011317165637655646 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011317165637655646 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0474e+04 | 800 | 1 | 3.907e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1042.7819241278717 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.09059824610484, dt = 0.011317165637655646 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.71 us (1.1%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 401.99 us (95.6%)
LB move op cnt : 0
LB apply : 4.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.9537499999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.852064974389168e-17,-8.28299175768063e-19,-2.315268446552411e-17)
sum a = (2.0688606754753694e-16,-1.0359581228358464e-16,-2.225263930328355e-16)
sum e = 4.144510793694292
sum de = -9.41900637346782e-19
Info: CFL hydro = 0.011316828538070764 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011316828538070764 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0111e+04 | 800 | 1 | 3.978e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1024.1770876337507 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.101915411742496, dt = 0.011316828538070764 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.5%)
patch tree reduce : 1813.00 ns (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 388.62 us (95.1%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 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: 3.9537499999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0900699274263204e-17,-2.757502319329121e-18,-2.56690363919081e-17)
sum a = (-5.1633145003755275e-17,5.4026674990875284e-17,4.9206662789027856e-17)
sum e = 4.144510796982769
sum de = 1.2536087619363645e-18
Info: CFL hydro = 0.011317054281444073 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011317054281444073 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5793e+04 | 800 | 1 | 5.066e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 804.2701343464244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.113232240280567, dt = 0.011317054281444073 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.2%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 396.69 us (95.6%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.9537499999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9148239896960067e-17,-1.6730744653398306e-18,-2.380573770356186e-17)
sum a = (1.2180341586520593e-17,5.991314110438069e-19,-3.9022177715546945e-18)
sum e = 4.144510800706203
sum de = -1.3010426069826053e-18
Info: CFL hydro = 0.011317827406081163 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011317827406081163 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0045e+04 | 800 | 1 | 3.991e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1020.8422695908661 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.124549294562012, dt = 0.011317827406081163 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.92 us (0.7%)
patch tree reduce : 1462.00 ns (0.2%)
gen split merge : 851.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.1%)
LB compute : 694.32 us (97.4%)
LB move op cnt : 0
LB apply : 3.91 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 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: 3.9537499999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9524194857390056e-17,-1.5427633834378026e-18,-2.5043692981631128e-17)
sum a = (1.0556695462591877e-16,-5.154926660620914e-17,-1.2754983501137984e-16)
sum e = 4.144510804627128
sum de = -3.2526065174565133e-19
Info: CFL hydro = 0.01131912397053417 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01131912397053417 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9633e+04 | 800 | 1 | 4.075e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 999.9267105304673 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.135867121968094, dt = 0.01131912397053417 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.2%)
patch tree reduce : 1423.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 406.32 us (95.6%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 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: 3.9537499999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168106793714776e-17,-2.687104378531474e-18,-2.632358745847346e-17)
sum a = (1.3940589672167298e-16,9.489043288111812e-17,1.3947479683394302e-16)
sum e = 4.144510808489023
sum de = -1.8295911660692887e-19
Info: CFL hydro = 0.011320911750660731 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011320911750660731 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1046e+04 | 800 | 1 | 3.801e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1071.990199546642 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.147186245938627, dt = 0.011320911750660731 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.46 us (1.0%)
patch tree reduce : 1413.00 ns (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 409.58 us (95.8%)
LB move op cnt : 0
LB apply : 3.58 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9537499999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.271157396414311e-17,-5.811574687124927e-19,-2.263443579497122e-17)
sum a = (-2.2868845959542105e-16,1.4888415564438602e-17,-1.6086678386526215e-17)
sum e = 4.144510812038845
sum de = 6.505213034913027e-19
Info: CFL hydro = 0.011323150835598097 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011323150835598097 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0406e+04 | 800 | 1 | 3.920e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1039.564531777655 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.15850715768929, dt = 0.011323150835598097 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.3%)
patch tree reduce : 1412.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 385.02 us (95.2%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9537499999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8324434206774834e-17,-1.4244349297566508e-18,-2.4597340080403492e-17)
sum a = (-8.049929638784589e-17,-5.909832238536111e-17,8.589147908724015e-17)
sum e = 4.144510815044654
sum de = 9.825582188149884e-19
Info: CFL hydro = 0.0113257943989313 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0113257943989313 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0233e+04 | 800 | 1 | 3.954e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1030.9583337091997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.169830308524887, dt = 0.0113257943989313 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.2%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 419.50 us (95.5%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.10 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: 3.9537499999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.879625019297183e-17,-2.1508817656472667e-18,-2.3382601144512174e-17)
sum a = (-1.8629392094996132e-16,-6.226173623567241e-17,9.494435470811207e-17)
sum e = 4.144510817313925
sum de = -1.4772254600114998e-18
Info: CFL hydro = 0.011328789724929988 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011328789724929988 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0395e+04 | 800 | 1 | 3.922e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1039.4723164279708 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.18115610292382, dt = 0.011328789724929988 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.4%)
patch tree reduce : 1402.00 ns (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 386.23 us (95.2%)
LB move op cnt : 0
LB apply : 3.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 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: 3.9537499999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5532481831310692e-17,-2.8653459733170063e-18,-2.0907065045505542e-17)
sum a = (1.102761275167231e-16,-1.9816870551684955e-16,1.2045537019035737e-16)
sum e = 4.144510818707106
sum de = 2.710505431213761e-19
Info: CFL hydro = 0.011331318582695633 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011331318582695633 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0360e+04 | 800 | 1 | 3.929e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1037.9269104057169 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.19248489264875, dt = 0.011331318582695633 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.3%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1053.00 ns (0.3%)
LB compute : 394.08 us (95.3%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 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: 3.9537499999999994
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8387343004934433e-17,-5.667783148474413e-18,-2.0877108474953353e-17)
sum a = (-4.910780610620563e-17,6.278897187739096e-18,-1.2797446939895715e-17)
sum e = 4.144510819138342
sum de = 3.3881317890172014e-19
Info: CFL hydro = 0.011330075471097297 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011330075471097297 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0467e+04 | 800 | 1 | 3.909e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.6146519285558 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.203816211231445, dt = 0.011330075471097297 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.3%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1332.00 ns (0.3%)
LB compute : 388.06 us (95.2%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.95375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7377806577325617e-17,-4.194668791570453e-18,-2.07745072208121e-17)
sum a = (1.3444508863823026e-17,1.529582492394839e-16,6.646763874119993e-17)
sum e = 4.144510818550773
sum de = -1.0503208545953324e-19
Info: CFL hydro = 0.011325711525934286 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011325711525934286 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1335e+04 | 800 | 1 | 3.750e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1087.7480430892954 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.21514628670254, dt = 0.011325711525934286 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.2%)
patch tree reduce : 1413.00 ns (0.3%)
gen split merge : 1202.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 410.92 us (95.6%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 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: 3.95375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7302915150945142e-17,-2.3186385607395324e-18,-1.9520824743202936e-17)
sum a = (-1.4059816822965016e-16,-8.299168305778813e-17,6.13151086062232e-17)
sum e = 4.1445108170291824
sum de = -2.3818566476790926e-18
Info: CFL hydro = 0.011320621326540369 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011320621326540369 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0412e+04 | 800 | 1 | 3.919e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.294249635682 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.226471998228476, dt = 0.011320621326540369 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.4%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 383.24 us (95.1%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 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: 3.95375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5244898754009664e-17,-5.395927270713286e-18,-1.973941409395095e-17)
sum a = (1.4366422322566684e-16,1.9531684000028105e-16,1.3672178800019674e-16)
sum e = 4.144510814759619
sum de = 7.318364664277155e-19
Info: CFL hydro = 0.011316466792318281 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011316466792318281 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0251e+04 | 800 | 1 | 3.950e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1031.6230803058827 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.237792619555016, dt = 0.011316466792318281 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.72 us (1.2%)
patch tree reduce : 1313.00 ns (0.3%)
gen split merge : 981.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 381.02 us (95.5%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (74.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8454745288676862e-17,-9.473765437130195e-19,-1.7649849683652698e-17)
sum a = (-1.7655653769197183e-16,-1.1228920905783028e-16,1.395856361449861e-16)
sum e = 4.1445108119678045
sum de = 5.759824041329242e-20
Info: CFL hydro = 0.011313316477802135 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011313316477802135 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0620e+04 | 800 | 1 | 3.880e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1050.0523876199425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.249109086347335, dt = 0.011313316477802135 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.3%)
patch tree reduce : 1403.00 ns (0.3%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 399.96 us (95.5%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4591845515971917e-17,-4.086076223318763e-18,-1.6562238944042235e-17)
sum a = (-1.634580272180266e-17,6.937941739887283e-18,-4.727146833135636e-17)
sum e = 4.144510808893137
sum de = -2.8985467455042158e-18
Info: CFL hydro = 0.011311223918865462 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011311223918865462 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0081e+04 | 800 | 1 | 3.984e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1022.3466802158348 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.26042240282514, dt = 0.011311223918865462 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (1.2%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 400.75 us (95.6%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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: 3.95375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.528683795278273e-17,-2.953717856445968e-18,-1.7831274164059398e-17)
sum a = (-2.4108299066138985e-17,-1.3848323434866552e-16,-5.424535795590627e-17)
sum e = 4.1445108057991025
sum de = -2.219226321806267e-19
Info: CFL hydro = 0.01131022555008294 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01131022555008294 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0437e+04 | 800 | 1 | 3.915e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.2401629991966 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.271733626744005, dt = 0.01131022555008294 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.2%)
patch tree reduce : 1803.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 388.53 us (95.3%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 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: 3.95375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.514304641413222e-17,-5.85931797144248e-18,-1.7948479246344845e-17)
sum a = (1.5263172262046501e-16,-1.3195270196828801e-16,-1.0557893725413964e-16)
sum e = 4.144510802950902
sum de = 7.250602028496811e-19
Info: CFL hydro = 0.011310342286819394 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011310342286819394 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0238e+04 | 800 | 1 | 3.953e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1030.0211163348054 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.28304385229409, dt = 0.011310342286819394 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.3%)
patch tree reduce : 1453.00 ns (0.3%)
gen split merge : 1021.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 402.74 us (95.5%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 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: 3.95375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7978435816897034e-17,-7.253421873515038e-18,-1.9902396560611458e-17)
sum a = (1.1022520134678437e-16,6.142295226021108e-17,-3.2556800876120467e-17)
sum e = 4.144510800598034
sum de = -1.0431210745436709e-18
Info: CFL hydro = 0.011311579128608246 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011311579128608246 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9685e+04 | 800 | 1 | 4.064e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1001.8849668445024 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.294354194580908, dt = 0.011311579128608246 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.2%)
patch tree reduce : 1513.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 414.19 us (95.7%)
LB move op cnt : 0
LB apply : 3.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8935548246039517e-17,-5.013232081909054e-18,-1.9068854984996763e-17)
sum a = (1.836038209143746e-16,2.4396631057703817e-17,-2.15926960540188e-17)
sum e = 4.144510798955626
sum de = 8.724439356719293e-19
Info: CFL hydro = 0.011313924845800051 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011313924845800051 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0218e+04 | 800 | 1 | 3.957e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1029.1610489019477 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.305665773709517, dt = 0.011313924845800051 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.2%)
patch tree reduce : 1933.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 762.00 ns (0.2%)
LB compute : 427.70 us (95.5%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (73.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.133956303285279e-17,-4.791179002690943e-18,-2.0197468780550534e-17)
sum a = (-2.4612318365679585e-17,-9.782617679523278e-17,7.414850343078154e-17)
sum e = 4.144510798188928
sum de = -1.3552527156068805e-20
Info: CFL hydro = 0.011317352256216386 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011317352256216386 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0110e+04 | 800 | 1 | 3.978e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1023.8477192332458 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.31697969855532, dt = 0.011317352256216386 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.2%)
patch tree reduce : 1703.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 411.35 us (95.7%)
LB move op cnt : 0
LB apply : 3.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.03494983761029e-17,-6.340308157371086e-18,-1.7292430351251876e-17)
sum a = (-9.282342951301699e-17,1.4373162550940927e-16,3.549254479023512e-17)
sum e = 4.144510798401024
sum de = 2.0633722595114756e-18
Info: CFL hydro = 0.011321817912033865 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011321817912033865 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0062e+04 | 800 | 1 | 3.988e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1021.732932191086 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.328297050811535, dt = 0.011321817912033865 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.05 us (1.2%)
patch tree reduce : 1773.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 403.78 us (95.6%)
LB move op cnt : 0
LB apply : 3.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (75.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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.854910848591626e-17,-4.332469016110528e-18,-1.7701337539289272e-17)
sum a = (-2.4989771154637183e-16,6.56288547657386e-17,-7.141646419642177e-18)
sum e = 4.144510799625272
sum de = -9.994988777600744e-19
Info: CFL hydro = 0.011318752952448545 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011318752952448545 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0721e+04 | 800 | 1 | 3.861e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1055.7013595831932 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.33961886872357, dt = 0.011318752952448545 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.06 us (1.2%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 391.77 us (95.4%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4937843905849714e-17,-4.208898162582743e-18,-1.8904093846959716e-17)
sum a = (-9.88986220210012e-17,1.3022720350448187e-16,-2.2874837273652545e-17)
sum e = 4.144510801707059
sum de = 2.290377089375628e-18
Info: CFL hydro = 0.011315828861295906 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011315828861295906 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0544e+04 | 800 | 1 | 3.894e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1046.4045366864175 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.350937621676017, dt = 0.011315828861295906 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.69 us (1.1%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 423.61 us (95.7%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4132012157995794e-17,-1.646862466106664e-18,-1.9545164456776588e-17)
sum a = (-3.094513738041262e-17,-2.268371435352957e-16,1.3579912562718925e-16)
sum e = 4.144510804630126
sum de = -1.8092623753351855e-18
Info: CFL hydro = 0.011313294114777382 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011313294114777382 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0686e+04 | 800 | 1 | 3.867e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1053.3598837428979 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.362253450537313, dt = 0.011313294114777382 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.86 us (1.1%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 423.75 us (95.8%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5039696245727162e-17,-6.66833260491757e-18,-1.5772134395728216e-17)
sum a = (2.9914631353417273e-17,-1.4661344759652998e-16,-4.290979165895745e-17)
sum e = 4.144510808222641
sum de = 1.1045309632196076e-18
Info: CFL hydro = 0.01131121184459568 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01131121184459568 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0653e+04 | 800 | 1 | 3.874e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1051.4272762525175 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.37356674465209, dt = 0.01131121184459568 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.3%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 395.70 us (95.4%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (77.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5466577376095875e-17,-7.249490073630063e-18,-1.8095266442050578e-17)
sum a = (1.2360081009833736e-17,-1.3342656523945578e-17,-3.341116226826893e-16)
sum e = 4.144510812261122
sum de = -1.4501204056993622e-18
Info: CFL hydro = 0.01130963974689158 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01130963974689158 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0703e+04 | 800 | 1 | 3.864e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1053.8167856080458 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.384877956496688, dt = 0.01130963974689158 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (1.1%)
patch tree reduce : 1452.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 399.70 us (95.7%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.541565120615715e-17,-7.050278879457997e-18,-2.3445509942671773e-17)
sum a = (-1.1234313088482423e-16,-5.1417457695779506e-17,2.5972346668749028e-17)
sum e = 4.144510816491222
sum de = 1.8973538018496328e-18
Info: CFL hydro = 0.011308628879415958 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011308628879415958 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0674e+04 | 800 | 1 | 3.870e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1052.1868069105851 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.39618759624358, dt = 0.011308628879415958 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (1.0%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 400.71 us (95.8%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3776277882688534e-17,-8.080784906453345e-18,-2.1138854010153116e-17)
sum a = (1.127625228725549e-16,1.0193022696088286e-16,-5.5257890040570304e-17)
sum e = 4.144510820647158
sum de = -2.8494188345634663e-18
Info: CFL hydro = 0.011308222974165222 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011308222974165222 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0507e+04 | 800 | 1 | 3.901e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.5668404369158 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.407496225122994, dt = 0.011308222974165222 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.58 us (1.1%)
patch tree reduce : 1462.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 410.17 us (95.8%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.600429781750769e-17,-5.73818108927206e-18,-2.134705217549084e-17)
sum a = (1.3330673895724703e-17,1.3107497445110885e-17,1.7704333196344492e-16)
sum e = 4.144510824468998
sum de = 9.690056916589196e-19
Info: CFL hydro = 0.011308457677302803 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011308457677302803 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0988e+04 | 800 | 1 | 3.812e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1067.9936827201632 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.41880444809716, dt = 0.011308457677302803 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (1.1%)
patch tree reduce : 1653.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 378.87 us (95.6%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5751913710605486e-17,-6.615908606451237e-18,-1.8943037388677565e-17)
sum a = (-1.8703684389965562e-16,-1.0078195416590421e-16,1.203655004787008e-17)
sum e = 4.144510827722236
sum de = -2.168404344971009e-19
Info: CFL hydro = 0.011309359375742198 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011309359375742198 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0821e+04 | 800 | 1 | 3.842e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1059.522784793199 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.43011290577446, dt = 0.011309359375742198 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (1.2%)
patch tree reduce : 1203.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 401.04 us (95.6%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.1654603773329653e-17,-8.016378279766136e-18,-1.8773782765057687e-17)
sum a = (8.714965505043215e-17,-7.502548203369691e-17,-1.6507568202784488e-16)
sum e = 4.144510830214535
sum de = 2.185345003916095e-18
Info: CFL hydro = 0.01130653943205237 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01130653943205237 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1083e+04 | 800 | 1 | 3.794e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1072.9686285867174 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.4414222651502, dt = 0.01130653943205237 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.31 us (1.0%)
patch tree reduce : 1233.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1393.00 ns (0.3%)
LB compute : 397.57 us (95.9%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4826255680542804e-17,-8.634981461668866e-18,-2.1739483249724533e-17)
sum a = (1.0420692632284933e-16,-7.451846707710109e-17,-3.362924610188888e-17)
sum e = 4.144510831735807
sum de = -8.165397611531455e-19
Info: CFL hydro = 0.011303302183829857 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011303302183829857 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1496e+04 | 800 | 1 | 3.722e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1093.693189474281 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.452728804582254, dt = 0.011303302183829857 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (1.1%)
patch tree reduce : 1462.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 386.68 us (95.9%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6458888775637178e-17,-9.637028746639633e-18,-2.1326082576104304e-17)
sum a = (-1.4936346077322105e-17,1.9477762173034162e-17,-3.687054703563587e-17)
sum e = 4.144510832270017
sum de = -1.1807639284724947e-18
Info: CFL hydro = 0.011301156910480245 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011301156910480245 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5723e+04 | 800 | 1 | 5.088e-02 | 0.0% | 1.0% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 799.7234225565801 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.464032106766084, dt = 0.011301156910480245 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.31 us (1.0%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 407.37 us (96.0%)
LB move op cnt : 0
LB apply : 3.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5216440011985084e-17,-8.895603625472923e-18,-2.2961711328253897e-17)
sum a = (2.0895007525858287e-16,1.8678520870701724e-16,-3.633769453693879e-17)
sum e = 4.144510831846238
sum de = 1.268855354986942e-18
Info: CFL hydro = 0.011300133750751177 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011300133750751177 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0260e+04 | 800 | 1 | 3.949e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1030.341355228924 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.475333263676564, dt = 0.011300133750751177 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.79 us (1.1%)
patch tree reduce : 1273.00 ns (0.3%)
gen split merge : 1052.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 417.18 us (95.9%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9190179095733134e-17,-5.9785825679533874e-18,-2.4028165239911873e-17)
sum a = (-7.576765606912742e-17,2.8872142698201054e-17,1.884957288855473e-16)
sum e = 4.144510830536086
sum de = -1.887189406482581e-18
Info: CFL hydro = 0.011300246296625955 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011300246296625955 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0238e+04 | 800 | 1 | 3.953e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1029.115100069235 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.486633397427315, dt = 0.011300246296625955 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (1.1%)
patch tree reduce : 1432.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 401.46 us (95.7%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6326330950943736e-17,-6.547757408445004e-18,-1.860902162702064e-17)
sum a = (1.3641763519480902e-16,9.759850685903614e-18,1.4196418784683002e-17)
sum e = 4.1445108284736065
sum de = -1.2087160157318866e-18
Info: CFL hydro = 0.011301490850616323 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011301490850616323 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0376e+04 | 800 | 1 | 3.926e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1036.1345755602993 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.49793364372394, dt = 0.0020663562760603327 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.4%)
patch tree reduce : 1382.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1091.00 ns (0.3%)
LB compute : 378.49 us (95.1%)
LB move op cnt : 0
LB apply : 3.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.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: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8109495813062867e-17,-6.230217760591787e-18,-2.1317095604938647e-17)
sum a = (1.5265943244822578e-16,-6.290879815959972e-18,-7.942984681913269e-17)
sum e = 4.144510739542297
sum de = 9.50370966819325e-19
Info: CFL hydro = 0.011302367782985065 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011302367782985065 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0399e+04 | 800 | 1 | 3.922e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 189.6805906882265 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 2190 [SPH][rank=0]
Info: time since start : 966.5311956690001 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15104154346204013 max=0.15126146813408525 delta=0.00021992467204512423
Number of particle pairs: 319600
Distance min=0.119312 max=2.265341 mean=0.931165
---------------- t = 19.5, dt = 0.011302367782985065 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.02 us (1.5%)
patch tree reduce : 1413.00 ns (0.2%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.1%)
LB compute : 658.96 us (96.4%)
LB move op cnt : 0
LB apply : 4.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (73.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.003944787088773e-17,-6.577713978997195e-18,-2.2000105413528587e-17)
sum a = (-1.3113189193515802e-16,4.4335724417241706e-18,3.614559802827287e-17)
sum e = 4.144510825895666
sum de = -1.5191535909005877e-18
Info: CFL hydro = 0.011304391039771227 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011304391039771227 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8825e+04 | 800 | 1 | 4.250e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 957.4570115561706 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.511302367782985, dt = 0.011304391039771227 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.1%)
patch tree reduce : 1442.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 459.64 us (95.2%)
LB move op cnt : 0
LB apply : 6.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.95375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.650607037425688e-17,-6.42268872638961e-18,-1.920665520953684e-17)
sum a = (2.0274606949722424e-17,-9.280545557068568e-17,-2.301862881230306e-17)
sum e = 4.144510822634307
sum de = -1.549858535238556e-18
Info: CFL hydro = 0.01130801238944825 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01130801238944825 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9201e+04 | 800 | 1 | 4.167e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 976.7275546589102 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.522606758822757, dt = 0.01130801238944825 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.05 us (1.3%)
patch tree reduce : 1273.00 ns (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.3%)
LB compute : 375.21 us (95.3%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 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: 3.95375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7914029190209826e-17,-7.843379084827237e-18,-2.0355489690213338e-17)
sum a = (1.399151584210602e-16,3.7301921651587414e-17,1.563732982824336e-16)
sum e = 4.144510819554059
sum de = -4.747619669360353e-19
Info: CFL hydro = 0.011312642306711708 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011312642306711708 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0381e+04 | 800 | 1 | 3.925e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1037.0870829115602 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.533914771212206, dt = 0.011312642306711708 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.3%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 375.34 us (95.4%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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: 3.95375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.948674914419982e-17,-6.660843462279523e-18,-1.8263023237142843e-17)
sum a = (9.205054999277048e-17,7.15302991645201e-17,9.39557878798898e-17)
sum e = 4.144510816685753
sum de = -9.39359538505019e-19
Info: CFL hydro = 0.011315923160846484 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011315923160846484 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9858e+04 | 800 | 1 | 4.029e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1010.9314334274377 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.54522741351892, dt = 0.011315923160846484 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.91 us (1.2%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 396.54 us (95.5%)
LB move op cnt : 0
LB apply : 3.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.95375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.009636535493689e-17,-5.735185432216841e-18,-1.7942487932234406e-17)
sum a = (-3.3559746858207797e-16,-2.968097010311019e-17,4.0842788290856315e-17)
sum e = 4.14451081421246
sum de = 1.3611819462376606e-18
Info: CFL hydro = 0.011309474591340298 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011309474591340298 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8848e+04 | 800 | 1 | 4.244e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 959.7710161737306 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.556543336679766, dt = 0.011309474591340298 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.1%)
patch tree reduce : 1523.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 425.46 us (95.6%)
LB move op cnt : 0
LB apply : 3.71 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.50456875598376e-17,-6.799018143951501e-18,-1.7235512867202713e-17)
sum a = (1.215158327879049e-16,-7.884569369336498e-18,-2.454042259635433e-17)
sum e = 4.144510812222782
sum de = 8.148456952586369e-19
Info: CFL hydro = 0.011303317664928147 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011303317664928147 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0380e+04 | 800 | 1 | 3.925e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1037.2157947725743 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.567852811271106, dt = 0.011303317664928147 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.2%)
patch tree reduce : 1953.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 430.05 us (95.6%)
LB move op cnt : 0
LB apply : 3.77 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (74.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9257581379475563e-17,-6.042989194640597e-18,-1.790354439051656e-17)
sum a = (-7.779122240992788e-17,9.287735134001094e-17,-2.0951625444201925e-17)
sum e = 4.144510811007508
sum de = 1.4264034831762418e-18
Info: CFL hydro = 0.011297533312431026 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011297533312431026 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9637e+04 | 800 | 1 | 4.074e-02 | 0.1% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 998.8534131181981 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.579156128936035, dt = 0.011297533312431026 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.1%)
patch tree reduce : 1422.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 432.77 us (95.6%)
LB move op cnt : 0
LB apply : 3.75 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.95375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.619901552609693e-17,-5.2476422464799435e-18,-1.8713869623953306e-17)
sum a = (-8.599932274122804e-17,-2.8434776768139075e-17,2.4744127276109223e-18)
sum e = 4.144510810654267
sum de = 1.878719077010038e-18
Info: CFL hydro = 0.01129219834644569 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01129219834644569 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0534e+04 | 800 | 1 | 3.896e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.9210413099443 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.590453662248464, dt = 0.01129219834644569 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.3%)
patch tree reduce : 1412.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 387.68 us (95.2%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (73.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.556693188744571e-17,-6.579679878939682e-18,-1.7575519942970074e-17)
sum a = (6.785762361482156e-17,2.485197093009711e-17,3.112487680372577e-17)
sum e = 4.144510811187194
sum de = 4.692562527788824e-19
Info: CFL hydro = 0.011287384272934521 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011287384272934521 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0617e+04 | 800 | 1 | 3.880e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.6499546801135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.60174586059491, dt = 0.011287384272934521 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.1%)
patch tree reduce : 1473.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 398.98 us (92.0%)
LB move op cnt : 0
LB apply : 19.89 us (4.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 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: 3.95375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7289434694196655e-17,-5.583062222381499e-18,-1.6175050269655176e-17)
sum a = (-1.116181818774612e-16,-1.032902552639523e-17,-3.3791011582870706e-18)
sum e = 4.144510812565391
sum de = -2.7816561987831223e-18
Info: CFL hydro = 0.011283156458217413 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011283156458217413 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0703e+04 | 800 | 1 | 3.864e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1051.5915667719296 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.613033244867843, dt = 0.011283156458217413 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.2%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 418.24 us (95.7%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (73.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.95375
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.483149808038944e-17,-5.778435230951566e-18,-1.7445208861068046e-17)
sum a = (-7.933698145042091e-17,6.453843559763887e-17,-1.21941216089746e-16)
sum e = 4.144510814689619
sum de = -1.6178329292557136e-18
Info: CFL hydro = 0.011279573028885633 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011279573028885633 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0612e+04 | 800 | 1 | 3.881e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1046.5754571111752 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.62431640132606, dt = 0.011279573028885633 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (1.1%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 422.55 us (95.8%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9537500000000008
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.424135364051129e-17,-4.7864982885421634e-18,-1.885316767702099e-17)
sum a = (-5.0267125386575396e-17,2.6637382535007653e-17,-6.686306547248884e-18)
sum e = 4.144510817411066
sum de = 6.996492144320521e-19
Info: CFL hydro = 0.011276684283326966 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011276684283326966 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1128e+04 | 800 | 1 | 3.786e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1072.4419860024827 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.635595974354946, dt = 0.011276684283326966 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.16 us (0.7%)
patch tree reduce : 1212.00 ns (0.2%)
gen split merge : 772.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 568.84 us (96.9%)
LB move op cnt : 0
LB apply : 4.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 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: 3.9537500000000008
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4657749971186734e-17,-4.5489052383501036e-18,-1.7969448845731377e-17)
sum a = (-5.625843949701346e-17,-9.574119948480034e-17,2.01607719816241e-17)
sum e = 4.144510820542491
sum de = -5.963111948670274e-19
Info: CFL hydro = 0.011274311281455724 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011274311281455724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0480e+04 | 800 | 1 | 3.906e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1039.2613785638077 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.646872658638273, dt = 0.011274311281455724 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.2%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 423.68 us (95.7%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.9537500000000008
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3827952966891062e-17,-6.362026671021424e-18,-1.8454745288676862e-17)
sum a = (-9.619653935719363e-17,-6.475412290561464e-17,-1.1683062515354234e-18)
sum e = 4.144510823870332
sum de = 5.675120746603812e-19
Info: CFL hydro = 0.011272439850746324 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011272439850746324 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0848e+04 | 800 | 1 | 3.837e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1057.686818622747 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.658146969919727, dt = 0.011272439850746324 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.3%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.3%)
LB compute : 414.55 us (95.5%)
LB move op cnt : 0
LB apply : 3.68 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 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: 3.9537500000000008
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.246792466382162e-17,-6.849569856758322e-18,-1.9924115074261798e-17)
sum a = (-1.991512810309614e-17,7.556245356084493e-17,-1.4437269611922614e-16)
sum e = 4.144510827177595
sum de = -2.4106557678857388e-18
Info: CFL hydro = 0.011271325554461361 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011271325554461361 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0039e+04 | 800 | 1 | 3.992e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1016.4933880156834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.669419409770473, dt = 0.011271325554461361 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.3%)
patch tree reduce : 1443.00 ns (0.3%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 398.06 us (95.2%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (77.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9537500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.181786708283909e-17,-5.324780415651833e-18,-2.0923166702177345e-17)
sum a = (5.4580871546090807e-17,-1.5685260341126862e-16,5.320586495774527e-17)
sum e = 4.144510830257059
sum de = 5.717472393966527e-19
Info: CFL hydro = 0.01127099122590208 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01127099122590208 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9971e+04 | 800 | 1 | 4.006e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1012.9666044940176 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.680690735324934, dt = 0.01127099122590208 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.2%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 1052.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 416.50 us (95.7%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9537500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.3330673895724703e-17,-8.291978728846288e-18,-1.9380403318739544e-17)
sum a = (1.5595390629470293e-16,-7.590994977925032e-17,1.2328626610753935e-16)
sum e = 4.144510832924869
sum de = -2.498747194400186e-18
Info: CFL hydro = 0.01127144984179168 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01127144984179168 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0257e+04 | 800 | 1 | 3.949e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1027.399113941067 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.691961726550836, dt = 0.01127144984179168 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.2%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 397.53 us (95.7%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 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: 3.9537500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4759602311064182e-17,-8.403566954153196e-18,-1.798742278806269e-17)
sum a = (5.2435981094553976e-17,1.2234263413514536e-17,3.8943541717847446e-17)
sum e = 4.144510835034234
sum de = -1.98544522836408e-18
Info: CFL hydro = 0.01127270435453792 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01127270435453792 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0784e+04 | 800 | 1 | 3.849e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1054.1918892808085 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.70323317639263, dt = 0.01127270435453792 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.4%)
patch tree reduce : 1463.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.3%)
LB compute : 409.55 us (95.2%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 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: 3.9537500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5062163673641303e-17,-8.166910046790892e-18,-1.812222735554755e-17)
sum a = (-3.713416485649515e-17,-1.0937743040015738e-16,-2.949523936568661e-17)
sum e = 4.144510836484219
sum de = -1.493530844246145e-18
Info: CFL hydro = 0.0112747474882366 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0112747474882366 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0508e+04 | 800 | 1 | 3.901e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.3311730423452 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.71450588074717, dt = 0.0112747474882366 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.3%)
patch tree reduce : 1694.00 ns (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1213.00 ns (0.3%)
LB compute : 393.28 us (95.4%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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: 3.9537500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.4232366669345633e-17,-1.0382947353389173e-17,-1.7372564177478985e-17)
sum a = (1.1856810624556938e-16,-1.2668034555110252e-16,2.714383580590562e-17)
sum e = 4.1445108372260195
sum de = 1.1765287637362232e-18
Info: CFL hydro = 0.011277561798561006 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011277561798561006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0307e+04 | 800 | 1 | 3.940e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1030.2966010277246 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.725780628235405, dt = 0.011277561798561006 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.2%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 442.53 us (95.8%)
LB move op cnt : 0
LB apply : 3.79 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (74.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9537500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.5781121366893873e-17,-1.101503099204039e-17,-1.7911033533154605e-17)
sum a = (8.891110139890094e-18,8.770085594859245e-17,-1.3386393116951777e-16)
sum e = 4.144510837267166
sum de = 2.2149911570699954e-18
Info: CFL hydro = 0.011281119533785244 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011281119533785244 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0072e+04 | 800 | 1 | 3.986e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1018.6515784288324 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.737058190033967, dt = 0.011281119533785244 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (1.3%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 382.76 us (95.2%)
LB move op cnt : 0
LB apply : 4.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.9537500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.6269413466894576e-17,-8.992962479767541e-18,-2.0232667750949357e-17)
sum a = (1.3676971851308022e-16,1.3892659159283793e-16,-4.050278121508895e-17)
sum e = 4.144510836668805
sum de = 4.675621868843738e-19
Info: CFL hydro = 0.011285382894594473 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011285382894594473 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0513e+04 | 800 | 1 | 3.900e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.328183250518 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.74833930956775, dt = 0.011285382894594473 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.88 us (1.2%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 399.69 us (95.3%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (75.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9537500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8219586209842167e-17,-7.441212125164081e-18,-1.9650012453709254e-17)
sum a = (2.7092722407400946e-17,7.140448156820091e-17,-1.0688803938727037e-16)
sum e = 4.1445108355393545
sum de = 1.3145951341386741e-18
Info: CFL hydro = 0.011290304860514402 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011290304860514402 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0903e+04 | 800 | 1 | 3.827e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1061.5635658676879 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.759624692462346, dt = 0.011290304860514402 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (1.0%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 386.44 us (95.9%)
LB move op cnt : 0
LB apply : 3.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.9537500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8623999912296736e-17,-6.7102718036906366e-18,-2.1790409419663254e-17)
sum a = (-1.695317218974832e-17,2.0852169629968653e-16,-6.02606373227861e-17)
sum e = 4.144510834024483
sum de = 1.285796013932028e-18
Info: CFL hydro = 0.011295828539578993 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011295828539578993 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0724e+04 | 800 | 1 | 3.860e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1052.8999143085257 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.77091499732286, dt = 0.011295828539578993 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (1.0%)
patch tree reduce : 1022.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 387.37 us (96.0%)
LB move op cnt : 0
LB apply : 3.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.9537500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.780918119327716e-17,-3.713116919943993e-18,-2.2349099460461604e-17)
sum a = (7.897825151805842e-17,-9.457888454737536e-17,4.2328634190244956e-17)
sum e = 4.144510832295245
sum de = -2.3107058801097313e-18
Info: CFL hydro = 0.011301888699124981 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011301888699124981 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0737e+04 | 800 | 1 | 3.858e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1054.082278291121 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.78221082586244, dt = 0.011301888699124981 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (1.1%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 397.92 us (95.6%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.9537500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.911229201229744e-17,-6.1156338782296584e-18,-2.0983079843281726e-17)
sum a = (5.515004638658242e-18,-3.536912371956009e-16,1.7188481051435774e-16)
sum e = 4.144510830535577
sum de = -1.128247885742728e-18
Info: CFL hydro = 0.011308412243836214 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011308412243836214 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0430e+04 | 800 | 1 | 3.916e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1039.0270069916755 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.793512714561565, dt = 0.011308412243836214 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.48 us (1.1%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 406.59 us (95.7%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.9537500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8078790328246873e-17,-1.1913728108606099e-17,-1.8466727916897737e-17)
sum a = (-2.8392837569366004e-17,-6.290879815959972e-18,-1.1741777393636526e-16)
sum e = 4.144510828926897
sum de = -3.7269449679189215e-20
Info: CFL hydro = 0.011315318990635847 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011315318990635847 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0270e+04 | 800 | 1 | 3.947e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1031.4784994053741 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.8048211268054, dt = 0.011315318990635847 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.4%)
patch tree reduce : 1413.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 376.42 us (95.0%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.95875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.799491193070074e-17,-9.469271951547367e-18,-2.1387493545736295e-17)
sum a = (9.690950573633576e-17,1.2531432593392263e-16,3.510310937305664e-17)
sum e = 4.144510827634018
sum de = 1.3213713977167085e-19
Info: CFL hydro = 0.01132252242625084 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01132252242625084 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0588e+04 | 800 | 1 | 3.886e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.312297112396 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.816136445796037, dt = 0.01132252242625084 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.90 us (1.2%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 405.34 us (95.6%)
LB move op cnt : 0
LB apply : 3.59 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (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: 3.9587499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9660497253402523e-17,-8.013382622710917e-18,-1.960507759788097e-17)
sum a = (1.5663092478918242e-16,-1.6607922714134325e-17,1.4929156500389579e-16)
sum e = 4.144510826792508
sum de = 1.531435568635775e-18
Info: CFL hydro = 0.011329931493566557 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011329931493566557 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0583e+04 | 800 | 1 | 3.887e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.7222441572917 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.827458968222288, dt = 0.011329931493566557 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (1.1%)
patch tree reduce : 1683.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 418.26 us (95.8%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (72.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9587499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.233561900371312e-17,-8.648461918417352e-18,-1.7887068276712855e-17)
sum a = (-8.154178504306211e-18,1.729452731119053e-16,1.5577416687138977e-17)
sum e = 4.144510826499408
sum de = 2.0803129184565616e-18
Info: CFL hydro = 0.011333317254962234 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011333317254962234 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0459e+04 | 800 | 1 | 3.910e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.0854427078918 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.838788899715855, dt = 0.011333317254962234 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (1.1%)
patch tree reduce : 1362.00 ns (0.3%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 389.02 us (95.5%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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: 3.9587499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1305112976717772e-17,-5.907435712891936e-18,-1.8399325633155308e-17)
sum a = (-8.072696632404253e-17,2.983674426998158e-17,7.827052753876293e-17)
sum e = 4.144510826748499
sum de = 3.3881317890172014e-21
Info: CFL hydro = 0.011331253143121755 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011331253143121755 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0502e+04 | 800 | 1 | 3.902e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1045.5815548968908 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.850122216970817, dt = 0.011331253143121755 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.74 us (1.1%)
patch tree reduce : 1293.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1173.00 ns (0.3%)
LB compute : 411.16 us (95.8%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.9587499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.889360904726645e-17,-6.3897364987822005e-18,-1.7885570448185246e-17)
sum a = (2.464347319905386e-16,1.1518900508728232e-16,-1.4587651596094608e-16)
sum e = 4.144510827521065
sum de = 4.845028458294598e-19
Info: CFL hydro = 0.011321271643064448 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011321271643064448 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0315e+04 | 800 | 1 | 3.938e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1035.8505461315488 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.86145347011394, dt = 0.011321271643064448 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.4%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 382.71 us (95.0%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 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: 3.9587499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4055126153408844e-17,-4.472515983442018e-18,-1.9712921251868856e-17)
sum a = (-2.413301323684454e-17,1.4415101749713992e-17,-4.350892307000125e-17)
sum e = 4.144510828731227
sum de = -1.412850956020173e-18
Info: CFL hydro = 0.011312192628375545 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011312192628375545 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0691e+04 | 800 | 1 | 3.866e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1054.0973993557518 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.872774741757006, dt = 0.011312192628375545 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.77 us (1.1%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1403.00 ns (0.3%)
LB compute : 404.19 us (95.6%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.9587499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2194823122117826e-17,-4.796046945405674e-18,-1.9687458166899494e-17)
sum a = (-3.786510517796859e-17,1.0824507203328458e-16,-1.8335817703584666e-16)
sum e = 4.144510830398659
sum de = 2.0328790734103208e-19
Info: CFL hydro = 0.0113041167141412 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0113041167141412 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0685e+04 | 800 | 1 | 3.868e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1052.9503076211513 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.88408693438538, dt = 0.0113041167141412 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (0.9%)
patch tree reduce : 1113.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.2%)
LB compute : 405.00 us (96.6%)
LB move op cnt : 0
LB apply : 2.76 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.9587499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1456393658006333e-17,-2.7230522631941023e-18,-2.317290515064684e-17)
sum a = (-6.913976483445531e-18,-4.46173161804323e-17,-7.268662278783464e-17)
sum e = 4.1445108323973745
sum de = -6.556035011748285e-19
Info: CFL hydro = 0.011297126176618481 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011297126176618481 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1068e+04 | 800 | 1 | 3.797e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1071.6990836572427 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.89539105109952, dt = 0.011297126176618481 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.59 us (0.9%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 612.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 389.85 us (96.5%)
LB move op cnt : 0
LB apply : 2.96 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 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: 3.9587499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.21753513512589e-17,-4.199911191417086e-18,-2.3494938284082885e-17)
sum a = (1.9843232333770885e-17,-6.69828917546976e-17,-2.646243616298286e-16)
sum e = 4.144510834578899
sum de = 2.219226321806267e-19
Info: CFL hydro = 0.011291287013842263 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011291287013842263 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1193e+04 | 800 | 1 | 3.775e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1077.3692606009527 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.906688177276138, dt = 0.011291287013842263 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (0.9%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 701.00 ns (0.2%)
LB compute : 356.81 us (96.3%)
LB move op cnt : 0
LB apply : 2.79 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.9587499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2796950190216852e-17,-5.5359742380447755e-18,-2.689201338470127e-17)
sum a = (1.4429480903579045e-16,7.34654936221916e-17,-1.6899100579901616e-16)
sum e = 4.144510836785537
sum de = -1.370499308657458e-18
Info: CFL hydro = 0.011286649139604178 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011286649139604178 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0586e+04 | 800 | 1 | 3.886e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1045.9763423803374 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.91797946428998, dt = 0.011286649139604178 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 us (0.9%)
patch tree reduce : 942.00 ns (0.2%)
gen split merge : 521.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 387.08 us (96.6%)
LB move op cnt : 0
LB apply : 2.77 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9587499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4664742364145918e-17,-3.573818866876308e-18,-2.841680282580776e-17)
sum a = (-9.743075006394387e-17,9.598085204921785e-18,3.191573026630359e-16)
sum e = 4.144510838864248
sum de = 1.2451384324638215e-19
Info: CFL hydro = 0.011283243328905443 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011283243328905443 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1154e+04 | 800 | 1 | 3.782e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1074.4239063861776 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.929266113429584, dt = 0.011283243328905443 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (0.8%)
patch tree reduce : 1112.00 ns (0.2%)
gen split merge : 621.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 440.37 us (96.8%)
LB move op cnt : 0
LB apply : 2.85 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.9587499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2347601631933995e-17,-3.966249941110001e-18,-2.329123360432799e-17)
sum a = (5.907435712891936e-18,1.1431427322715835e-16,6.447852245653449e-17)
sum e = 4.144510840677966
sum de = 3.057788939588024e-19
Info: CFL hydro = 0.011281082778952185 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011281082778952185 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0424e+04 | 800 | 1 | 3.917e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1037.0021235496429 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.94054935675849, dt = 0.011281082778952185 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (0.9%)
patch tree reduce : 951.00 ns (0.3%)
gen split merge : 512.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 366.86 us (96.6%)
LB move op cnt : 0
LB apply : 2.77 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.9587499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3066559325186563e-17,-1.749463720247916e-18,-2.295871567119868e-17)
sum a = (1.6116634957078404e-17,-1.8297473293277862e-17,-7.09012111829241e-17)
sum e = 4.1445108421163015
sum de = -2.235108189567285e-18
Info: CFL hydro = 0.011280162126749045 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011280162126749045 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1226e+04 | 800 | 1 | 3.769e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1077.5222308297064 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.951830439537442, dt = 0.011280162126749045 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (0.9%)
patch tree reduce : 771.00 ns (0.2%)
gen split merge : 490.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 378.60 us (96.8%)
LB move op cnt : 0
LB apply : 2.33 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.9587499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.362150479466589e-17,-3.1724008214769573e-18,-2.525039331844124e-17)
sum a = (4.6264927560802766e-17,6.40231825841412e-17,3.1214746515382336e-18)
sum e = 4.14451084310465
sum de = 9.22418879559933e-19
Info: CFL hydro = 0.01128045813747826 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01128045813747826 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1290e+04 | 800 | 1 | 3.758e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1080.673181383856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.96311060166419, dt = 0.01128045813747826 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (0.9%)
patch tree reduce : 932.00 ns (0.2%)
gen split merge : 531.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 384.74 us (96.5%)
LB move op cnt : 0
LB apply : 2.83 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.9587499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4335220088071826e-17,-1.998103255831096e-18,-2.276699361966466e-17)
sum a = (1.776544460027096e-16,-1.71642162292885e-16,-4.69000068565092e-17)
sum e = 4.1445108436084075
sum de = -8.080694316806025e-19
Info: CFL hydro = 0.01128192932046154 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01128192932046154 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0887e+04 | 800 | 1 | 3.830e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1060.2738458240353 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.97439105980167, dt = 0.01128192932046154 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.33 us (1.1%)
patch tree reduce : 1233.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 393.59 us (96.0%)
LB move op cnt : 0
LB apply : 3.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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: 3.9587499999999993
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6694300019056813e-17,-4.637277121479065e-18,-2.4357687515985967e-17)
sum a = (-4.181937249085772e-17,5.651007468965187e-17,2.0259029533035286e-16)
sum e = 4.1445108436338325
sum de = -4.0149361699853836e-19
Info: CFL hydro = 0.011284516942396917 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011284516942396917 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0648e+04 | 800 | 1 | 3.875e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.2586392322928 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.98567298912213, dt = 0.011284516942396917 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.81 us (1.2%)
patch tree reduce : 1323.00 ns (0.3%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 393.17 us (95.6%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 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: 3.9599999999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.545185125540472e-17,-2.711069634973226e-18,-2.0759903392667906e-17)
sum a = (5.12916400994603e-17,-2.5708728847889753e-17,1.1932301182348458e-16)
sum e = 4.144510843229934
sum de = 3.333921680392926e-18
Info: CFL hydro = 0.011288146821203524 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011288146821203524 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1016e+04 | 800 | 1 | 3.807e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1067.196651881919 (tsim/hr) [sph::Model][rank=0]
---------------- t = 19.996957506064525, dt = 0.0030424939354745106 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.89 us (0.9%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 385.12 us (91.7%)
LB move op cnt : 0
LB apply : 3.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 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: 3.9599999999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5691503819822244e-17,-3.0705484815995102e-18,-2.1451900172423506e-17)
sum a = (1.321683892762638e-17,-2.7530088337462925e-17,-7.773130926882351e-17)
sum e = 4.144510765458383
sum de = 2.608861477543245e-19
Info: CFL hydro = 0.011289748879205846 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011289748879205846 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0809e+04 | 800 | 1 | 3.845e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 284.8942407084701 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 2235 [SPH][rank=0]
Info: time since start : 969.096991115 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15106604624359693 max=0.1512707807500217 delta=0.0002047345064247752
Number of particle pairs: 319600
Distance min=0.118524 max=2.264793 mean=0.931123
---------------- t = 20, dt = 0.011289748879205846 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.90 us (1.3%)
patch tree reduce : 1412.00 ns (0.2%)
gen split merge : 470.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.1%)
LB compute : 729.60 us (96.6%)
LB move op cnt : 0
LB apply : 4.75 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (76.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9599999999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6165566548810655e-17,-4.086076223318763e-18,-2.1385995717208686e-17)
sum a = (-8.881524037313393e-17,1.0016353821256743e-16,-3.614559802827287e-17)
sum e = 4.144510842091626
sum de = 1.531435568635775e-18
Info: CFL hydro = 0.011294106101351776 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011294106101351776 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8535e+04 | 800 | 1 | 4.316e-02 | 0.0% | 1.8% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 941.6699147666214 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.011289748879207, dt = 0.011294106101351776 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (1.0%)
patch tree reduce : 1382.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 422.16 us (95.9%)
LB move op cnt : 0
LB apply : 3.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (72.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9599999999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3783270275647717e-17,-2.0699990251563527e-18,-2.2919772129480833e-17)
sum a = (6.029658520744872e-17,1.8720235395195648e-17,-2.3306211889604085e-18)
sum e = 4.144510841161121
sum de = 7.521652571618187e-19
Info: CFL hydro = 0.011299737571624592 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011299737571624592 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0501e+04 | 800 | 1 | 3.902e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.9148016904944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.02258385498056, dt = 0.011299737571624592 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.97 us (0.9%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 410.95 us (96.2%)
LB move op cnt : 0
LB apply : 3.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.9599999999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5346254344208248e-17,-1.7854116049105443e-18,-2.2533332369357575e-17)
sum a = (-2.560807477083439e-16,3.6274411281647284e-17,1.1156426005046728e-16)
sum e = 4.1445108400679125
sum de = 6.776263578034403e-20
Info: CFL hydro = 0.011304019316372498 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011304019316372498 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0484e+04 | 800 | 1 | 3.905e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.5857989190486 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.033883592552186, dt = 0.011304019316372498 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (1.0%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1423.00 ns (0.3%)
LB compute : 389.39 us (93.1%)
LB move op cnt : 0
LB apply : 8.84 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9599999999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.116319372372677e-17,-1.6176548098182786e-18,-1.98612062761022e-17)
sum a = (-1.758900039971856e-17,2.42992722034092e-16,1.2104851028729073e-16)
sum e = 4.144510839043443
sum de = 7.216720710606639e-19
Info: CFL hydro = 0.011303766405245292 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011303766405245292 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0865e+04 | 800 | 1 | 3.834e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1061.3700132222682 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.04518761186856, dt = 0.011303766405245292 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.2%)
patch tree reduce : 1413.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 413.51 us (95.6%)
LB move op cnt : 0
LB apply : 3.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (76.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9599999999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1912107987531528e-17,2.645165179758407e-18,-1.8767791450947248e-17)
sum a = (3.2957844464387915e-17,2.0942338907330746e-16,1.1233713957071378e-19)
sum e = 4.1445108381711355
sum de = 1.294266343404571e-18
Info: CFL hydro = 0.011304321199922827 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011304321199922827 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0294e+04 | 800 | 1 | 3.942e-02 | 0.1% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1032.2943669201916 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.056491378273805, dt = 0.011304321199922827 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.80 us (1.1%)
patch tree reduce : 1402.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.2%)
LB compute : 423.46 us (95.9%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.959999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.229817329052288e-17,4.46652466933158e-18,-1.861201728407586e-17)
sum a = (3.3642726558637366e-17,1.3174899728853313e-17,1.210118134883643e-16)
sum e = 4.1445108376460285
sum de = -4.1674021004911577e-19
Info: CFL hydro = 0.011305659352340751 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011305659352340751 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0501e+04 | 800 | 1 | 3.902e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1042.852097296224 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.067795699473727, dt = 0.011305659352340751 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (1.0%)
patch tree reduce : 1142.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 662.00 ns (0.2%)
LB compute : 374.85 us (96.0%)
LB move op cnt : 0
LB apply : 3.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 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: 3.959999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2799196933008266e-17,3.756553947244669e-18,-1.8075794671191652e-17)
sum a = (-1.0497980584309584e-16,4.2208807908036194e-17,1.8769733947318992e-17)
sum e = 4.144510837560172
sum de = -5.522654816098038e-19
Info: CFL hydro = 0.011307746904376414 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011307746904376414 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8578e+04 | 800 | 1 | 4.306e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 945.1419053316174 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.07910135882607, dt = 0.011307746904376414 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 us (0.9%)
patch tree reduce : 1153.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 409.67 us (96.3%)
LB move op cnt : 0
LB apply : 3.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.959999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0918673216594518e-17,3.576814523931527e-18,-1.82405558092287e-17)
sum a = (4.75920036362648e-17,5.509013324547804e-17,-7.996906508907213e-17)
sum e = 4.144510837969634
sum de = -1.4264034831762418e-18
Info: CFL hydro = 0.01131053982013762 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01131053982013762 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0573e+04 | 800 | 1 | 3.889e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1046.8763074450471 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.090409105730444, dt = 0.01131053982013762 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (1.0%)
patch tree reduce : 1243.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 742.00 ns (0.2%)
LB compute : 388.57 us (96.4%)
LB move op cnt : 0
LB apply : 3.08 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.959999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.221279706444914e-17,4.4245854705585136e-18,-1.9618558054629456e-17)
sum a = (2.40257687142677e-16,-9.71671322430846e-17,2.1646617881012742e-17)
sum e = 4.144510838891715
sum de = 5.421010862427522e-20
Info: CFL hydro = 0.01131398436553489 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01131398436553489 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0687e+04 | 800 | 1 | 3.867e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1052.9178546960331 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.10171964555058, dt = 0.01131398436553489 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (0.9%)
patch tree reduce : 741.00 ns (0.2%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 541.00 ns (0.1%)
LB compute : 383.08 us (96.5%)
LB move op cnt : 0
LB apply : 2.83 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 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: 3.959999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6271163460007126e-17,2.4744127276109223e-18,-1.898947007303346e-17)
sum a = (-1.0521945840751336e-16,1.319347280259567e-16,9.858108237314798e-17)
sum e = 4.144510840302595
sum de = 8.233160247311799e-19
Info: CFL hydro = 0.011318017918239767 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011318017918239767 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0851e+04 | 800 | 1 | 3.837e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1061.590819277576 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.113033629916117, dt = 0.011318017918239767 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (0.9%)
patch tree reduce : 871.00 ns (0.2%)
gen split merge : 581.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 651.00 ns (0.2%)
LB compute : 388.39 us (96.8%)
LB move op cnt : 0
LB apply : 2.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.959999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2858361159848843e-17,5.67677011964007e-18,-1.765041136935055e-17)
sum a = (-2.913336399341615e-16,-4.3526897012332567e-17,-1.3273456845970018e-16)
sum e = 4.144510842139173
sum de = -5.319366908757006e-19
Info: CFL hydro = 0.01132226253355855 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01132226253355855 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0932e+04 | 800 | 1 | 3.822e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1066.1036573760177 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.124351647834356, dt = 0.01132226253355855 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (0.8%)
patch tree reduce : 942.00 ns (0.2%)
gen split merge : 1022.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.1%)
LB compute : 410.82 us (96.8%)
LB move op cnt : 0
LB apply : 2.70 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.959999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.8438269174873157e-17,4.06211096687701e-18,-1.984922364788132e-17)
sum a = (2.65942450734125e-16,3.0357988597589694e-17,-1.1712120388789858e-16)
sum e = 4.144510844298986
sum de = 5.522654816098038e-19
Info: CFL hydro = 0.011315578648031066 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011315578648031066 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9081e+04 | 800 | 1 | 4.193e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 972.17175697049 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.135673910367913, dt = 0.011315578648031066 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (1.0%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 379.89 us (95.8%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.959999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4231121005402965e-17,4.987768996939692e-18,-2.044835505892513e-17)
sum a = (-6.178243110683736e-17,-8.816817844920662e-17,5.2034563049154626e-17)
sum e = 4.144510846498073
sum de = -3.4897757426877174e-19
Info: CFL hydro = 0.011308507973638016 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011308507973638016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0896e+04 | 800 | 1 | 3.828e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1064.051288465942 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.146989489015944, dt = 0.011308507973638016 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (0.8%)
patch tree reduce : 962.00 ns (0.2%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1143.00 ns (0.3%)
LB compute : 405.84 us (96.4%)
LB move op cnt : 0
LB apply : 3.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.959999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2122178438528763e-17,3.6157580656493745e-18,-1.9975041244200522e-17)
sum a = (2.5731495841509416e-16,8.84317962700659e-17,6.771982339028149e-17)
sum e = 4.144510848735338
sum de = 1.7042302898756523e-18
Info: CFL hydro = 0.011301608879560512 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011301608879560512 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0484e+04 | 800 | 1 | 3.906e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1042.3910330943634 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.15829799698958, dt = 0.011301608879560512 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.3%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 1112.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 376.62 us (95.2%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 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: 3.959999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7059770179793536e-17,5.574917779762623e-18,-1.8785765393278565e-17)
sum a = (-1.4137104774989667e-16,1.0394330850199005e-16,-5.610865664425251e-17)
sum e = 4.144510850873489
sum de = -1.094366567852556e-18
Info: CFL hydro = 0.01129496047732479 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01129496047732479 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0433e+04 | 800 | 1 | 3.915e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1039.1696093418427 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.16959960586914, dt = 0.01129496047732479 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (1.0%)
patch tree reduce : 1142.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 417.60 us (96.2%)
LB move op cnt : 0
LB apply : 3.65 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.959999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2569280254020203e-17,7.213542188967435e-18,-2.0208702494507604e-17)
sum a = (-4.089671011785026e-17,-1.8040445917940067e-16,-5.864298251296782e-17)
sum e = 4.144510852774673
sum de = -5.878408653944844e-19
Info: CFL hydro = 0.01128863962982961 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01128863962982961 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0609e+04 | 800 | 1 | 3.882e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.5254094679976 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.180894566346467, dt = 0.01128863962982961 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.10 us (1.0%)
patch tree reduce : 1243.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 390.05 us (95.9%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 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: 3.959999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.347696434175157e-17,2.887813401231149e-18,-2.0580163969354766e-17)
sum a = (-2.1107399611073315e-17,-3.67327468110958e-17,-1.290229493682838e-16)
sum e = 4.1445108543192655
sum de = -1.0079692072326174e-18
Info: CFL hydro = 0.011282719747794306 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011282719747794306 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0549e+04 | 800 | 1 | 3.893e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.8890190824402 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.192183205976296, dt = 0.011282719747794306 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (1.1%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 993.00 ns (0.2%)
LB compute : 382.83 us (95.7%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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: 3.959999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3130965951873774e-17,3.933297713502592e-18,-2.242548871536969e-17)
sum a = (-3.4503977962012837e-17,8.865946620626254e-17,3.5288840110480224e-17)
sum e = 4.144510855413794
sum de = -3.9217625457874106e-19
Info: CFL hydro = 0.011277269985547506 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011277269985547506 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0887e+04 | 800 | 1 | 3.830e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1060.4999036062168 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.20346592572409, dt = 0.011277269985547506 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (1.0%)
patch tree reduce : 1243.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 378.38 us (96.0%)
LB move op cnt : 0
LB apply : 2.81 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 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: 3.959999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2666639108314824e-17,4.793051288350455e-18,-2.0789859963220098e-17)
sum a = (9.285338608356918e-17,5.0422899553446786e-17,1.8449652671682989e-16)
sum e = 4.144510855997689
sum de = -8.322098706773501e-20
Info: CFL hydro = 0.011272354227009538 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011272354227009538 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9987e+04 | 800 | 1 | 4.003e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1014.2745572478717 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.214743195709637, dt = 0.011272354227009538 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (0.9%)
patch tree reduce : 892.00 ns (0.2%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 389.88 us (96.4%)
LB move op cnt : 0
LB apply : 2.75 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.959999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.462729665095568e-17,5.80108988743166e-18,-1.8432277860762718e-17)
sum a = (4.824206121724733e-17,4.1304119477360044e-17,6.16146743117451e-17)
sum e = 4.144510856048322
sum de = 7.436949276892757e-19
Info: CFL hydro = 0.011268030174501325 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011268030174501325 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0910e+04 | 800 | 1 | 3.826e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1060.6615841559594 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.226015549936648, dt = 0.011268030174501325 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (0.9%)
patch tree reduce : 1031.00 ns (0.3%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.2%)
LB compute : 390.16 us (96.2%)
LB move op cnt : 0
LB apply : 2.88 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 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: 3.959999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4203411177642186e-17,6.278897187739096e-18,-1.7949977074872454e-17)
sum a = (-4.767887769086615e-17,2.6811130644210357e-17,1.984922364788132e-17)
sum e = 4.14451085558303
sum de = -6.352747104407253e-20
Info: CFL hydro = 0.011264348623996208 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011264348623996208 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0811e+04 | 800 | 1 | 3.844e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1055.2549716162637 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.23728358011115, dt = 0.011264348623996208 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 us (0.9%)
patch tree reduce : 852.00 ns (0.2%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 376.92 us (96.4%)
LB move op cnt : 0
LB apply : 2.88 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 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: 3.959999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.384992364512634e-17,6.254931931297344e-18,-1.8339412492050926e-17)
sum a = (-4.996755968105349e-18,-1.0950324799647657e-16,-3.3791011582870706e-18)
sum e = 4.144510854655935
sum de = -7.979050363135509e-19
Info: CFL hydro = 0.011261352767835024 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011261352767835024 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1317e+04 | 800 | 1 | 3.753e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1080.5661212296236 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.248547928735146, dt = 0.011261352767835024 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (0.8%)
patch tree reduce : 942.00 ns (0.2%)
gen split merge : 631.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 591.00 ns (0.1%)
LB compute : 420.81 us (96.8%)
LB move op cnt : 0
LB apply : 3.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (72.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.959999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4182441578255654e-17,4.502472553994209e-18,-1.73748109202704e-17)
sum a = (-6.540118482954196e-17,-1.6613914028244763e-16,1.2679418051920086e-16)
sum e = 4.144510853352491
sum de = 4.70950318673391e-19
Info: CFL hydro = 0.011259077820356019 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011259077820356019 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1609e+04 | 800 | 1 | 3.702e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1095.0843427586383 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.25980928150298, dt = 0.011259077820356019 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (0.8%)
patch tree reduce : 601.00 ns (0.1%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.2%)
LB compute : 397.19 us (96.7%)
LB move op cnt : 0
LB apply : 2.92 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.954999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.323431612027883e-17,1.6536026944809069e-18,-1.612562192824406e-17)
sum a = (1.460038313857929e-16,1.3881874793885004e-17,7.833044067986731e-17)
sum e = 4.144510851784545
sum de = -1.3349239248727773e-18
Info: CFL hydro = 0.011257550340148189 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011257550340148189 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0527e+04 | 800 | 1 | 3.897e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.0430685682707 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.271068359323337, dt = 0.011257550340148189 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.05 us (1.0%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 692.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 591.00 ns (0.1%)
LB compute : 398.16 us (96.3%)
LB move op cnt : 0
LB apply : 3.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.954999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5536478567214658e-17,2.85336334509613e-18,-1.513106378591134e-17)
sum a = (6.214153549633175e-17,5.155525792031958e-18,1.1722605188483126e-16)
sum e = 4.144510850082543
sum de = -7.487771253728015e-19
Info: CFL hydro = 0.011256788287692618 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011256788287692618 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0821e+04 | 800 | 1 | 3.842e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1054.7502163073716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.282325909663484, dt = 0.011256788287692618 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.2%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 385.49 us (95.3%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.954999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.60936707794854e-17,3.4015685862012135e-18,-1.3522395947258721e-17)
sum a = (3.27664968699858e-17,6.009288052769383e-17,-3.258675744667265e-17)
sum e = 4.144510848384031
sum de = 4.0996394647108136e-19
Info: CFL hydro = 0.011256799563639768 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011256799563639768 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0522e+04 | 800 | 1 | 3.898e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1039.5297898661977 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.293582697951177, dt = 0.011256799563639768 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.71 us (1.2%)
patch tree reduce : 1764.00 ns (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 379.93 us (95.4%)
LB move op cnt : 0
LB apply : 3.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 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: 3.954999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6253938431939616e-17,3.826951888042317e-18,-1.529133143836556e-17)
sum a = (-2.5531086384515264e-16,1.4318192243977657e-16,1.3396578350939522e-17)
sum e = 4.144510846825165
sum de = 8.876905287225068e-19
Info: CFL hydro = 0.011257583522977581 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011257583522977581 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0478e+04 | 800 | 1 | 3.907e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1037.3096193436343 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.304839497514816, dt = 0.011257583522977581 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 21.73 us (4.8%)
patch tree reduce : 1213.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 421.84 us (92.5%)
LB move op cnt : 0
LB apply : 3.31 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (74.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.954999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.18443312466572e-17,6.36127775675762e-18,-1.464426951443825e-17)
sum a = (5.914625289824461e-17,-1.14480532193723e-16,-2.496460763537334e-16)
sum e = 4.144510845530801
sum de = 1.0164395367051604e-19
Info: CFL hydro = 0.011259129583441324 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011259129583441324 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0641e+04 | 800 | 1 | 3.876e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1045.6665942259128 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.316097081037793, dt = 0.011259129583441324 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.08 us (1.0%)
patch tree reduce : 1013.00 ns (0.2%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1123.00 ns (0.3%)
LB compute : 402.32 us (96.0%)
LB move op cnt : 0
LB apply : 3.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.954999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4161471978869122e-17,3.4270316711705752e-18,-1.9040396242972183e-17)
sum a = (-9.505219836209996e-17,1.273524961028673e-16,5.512008981603023e-18)
sum e = 4.144510844605695
sum de = -1.0367683274392636e-18
Info: CFL hydro = 0.011261418222256918 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011261418222256918 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0532e+04 | 800 | 1 | 3.896e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.2520722442023 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.327356210621232, dt = 0.011261418222256918 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (0.9%)
patch tree reduce : 892.00 ns (0.2%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 369.11 us (96.3%)
LB move op cnt : 0
LB apply : 2.96 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.954999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2377558202486188e-17,6.130612163505754e-18,-1.6917973219349497e-17)
sum a = (-9.841332557805571e-17,8.506168208294448e-18,-7.157822967740361e-17)
sum e = 4.144510844128343
sum de = -2.879912020664621e-19
Info: CFL hydro = 0.0112644210478729 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0112644210478729 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0949e+04 | 800 | 1 | 3.819e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1061.6352151223039 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.33861762884349, dt = 0.0112644210478729 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (1.0%)
patch tree reduce : 1313.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 397.60 us (95.8%)
LB move op cnt : 0
LB apply : 3.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.954999999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1516306799110714e-17,5.5269872668791185e-18,-1.9567631884690732e-17)
sum a = (3.548056216201424e-17,-3.0190231802497426e-17,5.857108674364255e-17)
sum e = 4.14451084414675
sum de = 1.1519648082658485e-18
Info: CFL hydro = 0.011268100839955086 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011268100839955086 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0756e+04 | 800 | 1 | 3.854e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1052.123682604055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.349882049891363, dt = 0.011268100839955086 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.58 us (0.7%)
patch tree reduce : 1293.00 ns (0.2%)
gen split merge : 781.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.2%)
LB compute : 665.60 us (97.4%)
LB move op cnt : 0
LB apply : 3.38 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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: 3.955
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2284692833774396e-17,5.167508420252834e-18,-1.787658347701959e-17)
sum a = (4.805033916571331e-18,1.0160969165597443e-16,5.945180991787696e-17)
sum e = 4.144510844674415
sum de = -8.571973426213519e-19
Info: CFL hydro = 0.011272412459213276 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011272412459213276 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0295e+04 | 800 | 1 | 3.942e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1029.0765932006002 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.36115015073132, dt = 0.011272412459213276 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.72 us (1.2%)
patch tree reduce : 1422.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 391.21 us (95.4%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 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: 3.955
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.171402016475517e-17,7.501125266268462e-18,-1.70917213285522e-17)
sum a = (2.854262042212696e-17,1.7358334806466695e-16,1.1086926761365646e-16)
sum e = 4.144510845691462
sum de = 3.398296184384253e-18
Info: CFL hydro = 0.011276851570936847 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011276851570936847 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0613e+04 | 800 | 1 | 3.881e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1045.604538815089 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.372422563190533, dt = 0.011276851570936847 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.3%)
patch tree reduce : 1372.00 ns (0.3%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 382.36 us (95.3%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.955
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.224125580647372e-17,9.08882350553455e-18,-1.4843480708610314e-17)
sum a = (4.1639633067544575e-17,8.875532723202955e-17,4.852964429454835e-17)
sum e = 4.144510847141135
sum de = -4.2012834183813297e-19
Info: CFL hydro = 0.011281379334117922 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011281379334117922 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0615e+04 | 800 | 1 | 3.881e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1046.1429626772701 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.38369941476147, dt = 0.011281379334117922 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (1.0%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 418.19 us (96.2%)
LB move op cnt : 0
LB apply : 3.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.955
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2731045735002032e-17,9.719409315658156e-18,-1.4867445965052067e-17)
sum a = (5.3154938787806544e-17,-2.7008844009854812e-17,1.2848972241245482e-16)
sum e = 4.1445108489455285
sum de = 6.132518538121134e-19
Info: CFL hydro = 0.01128632889626103 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01128632889626103 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1611e+04 | 800 | 1 | 3.702e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1097.097480132046 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.394980794095588, dt = 0.01128632889626103 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (1.2%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 387.04 us (95.6%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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: 3.955
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2775231676566513e-17,8.347398384367839e-18,-1.3492439376706531e-17)
sum a = (8.028360907987011e-18,-1.861381467830899e-16,1.114893686240868e-16)
sum e = 4.144510851011466
sum de = 3.7269449679189215e-20
Info: CFL hydro = 0.011286609817424707 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011286609817424707 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0446e+04 | 800 | 1 | 3.913e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1038.4036592643872 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.40626712299185, dt = 0.011286609817424707 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (1.0%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 404.12 us (95.9%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 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: 3.955
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2769240362456074e-17,5.24239984663331e-18,-1.0883222081610752e-17)
sum a = (-1.7470671946037408e-17,1.845324746014925e-18,1.7596489542356606e-17)
sum e = 4.144510853161396
sum de = 1.1621292036329e-18
Info: CFL hydro = 0.01128271411996676 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01128271411996676 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0441e+04 | 800 | 1 | 3.914e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1038.1838636340196 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.417553732809274, dt = 0.01128271411996676 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.98 us (1.0%)
patch tree reduce : 1143.00 ns (0.3%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 389.54 us (96.0%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.955
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2969200470891945e-17,6.227971017800373e-18,-1.1753460456151881e-17)
sum a = (-6.362775585285229e-18,2.7309607978198804e-16,-7.903142443078857e-17)
sum e = 4.144510855283302
sum de = 7.284483346386983e-20
Info: CFL hydro = 0.011279748050041729 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011279748050041729 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0383e+04 | 800 | 1 | 3.925e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1034.872817848371 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.428836446929242, dt = 0.011279748050041729 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (1.1%)
patch tree reduce : 1323.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 383.63 us (95.7%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.955
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2645295051796387e-17,1.1152831216580464e-17,-1.3007142933761047e-17)
sum a = (1.8266318459903584e-16,6.39273215583742e-17,1.627001259830562e-16)
sum e = 4.144510857335967
sum de = -1.0842021724855044e-19
Info: CFL hydro = 0.011277775094940086 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011277775094940086 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0687e+04 | 800 | 1 | 3.867e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1050.0377102013288 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.440116194979286, dt = 0.011277775094940086 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (1.0%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 396.98 us (95.9%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.955
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5725485804542385e-17,1.1320588011672731e-17,-1.0538721520260563e-17)
sum a = (8.186531600502577e-17,1.0341008154616106e-16,-3.3925816150355565e-18)
sum e = 4.144510859227867
sum de = -1.3222184306639628e-18
Info: CFL hydro = 0.011276839238693619 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011276839238693619 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0595e+04 | 800 | 1 | 3.885e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1045.177965835655 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.451393970074225, dt = 0.011276839238693619 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (1.0%)
patch tree reduce : 1323.00 ns (0.3%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 389.26 us (95.8%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.9549999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5928816027165376e-17,1.2668633686521296e-17,-1.1554249261979815e-17)
sum a = (-9.541766852283669e-17,-5.359829603197896e-17,5.0121836019397275e-17)
sum e = 4.144510860885681
sum de = 4.1610493533867504e-19
Info: CFL hydro = 0.01127696598047198 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01127696598047198 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0756e+04 | 800 | 1 | 3.854e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1053.2824233680924 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.462670809312918, dt = 0.01127696598047198 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (1.0%)
patch tree reduce : 1032.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 394.40 us (96.2%)
LB move op cnt : 0
LB apply : 3.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 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: 3.9549999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4138630093823076e-17,1.1251687899402693e-17,-1.0375458210751125e-17)
sum a = (1.5694846443703565e-16,-6.953519156574422e-17,3.71266757138571e-17)
sum e = 4.144510862258136
sum de = -1.0257568991249577e-18
Info: CFL hydro = 0.011278162995818233 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011278162995818233 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0559e+04 | 800 | 1 | 3.891e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.2817986902253 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.47394777529339, dt = 0.011278162995818233 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.93 us (0.9%)
patch tree reduce : 1142.00 ns (0.3%)
gen split merge : 591.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 412.35 us (96.3%)
LB move op cnt : 0
LB apply : 3.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.9549999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6867673671127615e-17,1.0661543459524543e-17,-1.0001001078848746e-17)
sum a = (-1.7340061298429858e-16,4.912877570559216e-19,-3.8052333743919786e-18)
sum e = 4.144510863318983
sum de = 5.21772295508649e-19
Info: CFL hydro = 0.011280419251859887 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011280419251859887 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0986e+04 | 800 | 1 | 3.812e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1065.0761264689484 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.485225938289208, dt = 0.011280419251859887 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (1.1%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 591.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 389.35 us (96.0%)
LB move op cnt : 0
LB apply : 3.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 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: 3.9549999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3264647147962923e-17,1.0236160157683441e-17,-9.95606622302046e-18)
sum a = (3.618753722704593e-18,-4.938041089823056e-17,-4.6186291563103263e-17)
sum e = 4.144510864067237
sum de = -1.0706496453294356e-18
Info: CFL hydro = 0.011283704353857834 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011283704353857834 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0094e+04 | 800 | 1 | 3.981e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1020.0109247904932 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.49650635754107, dt = 0.0034936424589311343 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (0.9%)
patch tree reduce : 952.00 ns (0.2%)
gen split merge : 571.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 672.00 ns (0.2%)
LB compute : 410.24 us (96.3%)
LB move op cnt : 0
LB apply : 3.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.9549999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4297399917749684e-17,1.0559691119647097e-17,-1.0871239453389876e-17)
sum a = (1.9125472903340404e-16,-2.192820964420333e-18,1.625765551295284e-16)
sum e = 4.144510790219304
sum de = 1.145188544687814e-18
Info: CFL hydro = 0.011285390286311495 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011285390286311495 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0927e+04 | 800 | 1 | 3.823e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 329.0084819742425 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 2280 [SPH][rank=0]
Info: time since start : 971.8094095060001 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15105486951937905 max=0.15125689068101464 delta=0.00020202116163559047
Number of particle pairs: 319600
Distance min=0.118983 max=2.264730 mean=0.931148
---------------- t = 20.5, dt = 0.011285390286311495 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.44 us (1.4%)
patch tree reduce : 1673.00 ns (0.2%)
gen split merge : 561.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.1%)
LB compute : 658.53 us (96.4%)
LB move op cnt : 0
LB apply : 4.85 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.97 us (81.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9549999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6945186297431408e-17,9.786811599400585e-18,-8.16166764694426e-18)
sum a = (1.6892510134380134e-16,-7.479556535470885e-17,1.3108995273638494e-17)
sum e = 4.144510864032858
sum de = -2.8866882842426556e-18
Info: CFL hydro = 0.011289477756442626 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011289477756442626 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7713e+04 | 800 | 1 | 4.516e-02 | 0.0% | 1.1% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 899.5468573890113 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.51128539028631, dt = 0.011289477756442626 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.34 us (0.7%)
patch tree reduce : 1363.00 ns (0.2%)
gen split merge : 712.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.1%)
LB compute : 621.50 us (97.5%)
LB move op cnt : 0
LB apply : 2.83 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.9549999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8771788186851214e-17,8.726349001853047e-18,-9.912629195719784e-18)
sum a = (-1.1478159572777252e-16,-7.364523304550474e-17,-2.1586845161332826e-17)
sum e = 4.144510864478834
sum de = -7.386127300057499e-19
Info: CFL hydro = 0.011294919295450453 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011294919295450453 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9393e+04 | 800 | 1 | 4.125e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 985.1978573159681 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.522574868042753, dt = 0.011294919295450453 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (1.0%)
patch tree reduce : 1032.00 ns (0.2%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 403.68 us (96.2%)
LB move op cnt : 0
LB apply : 3.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.9549999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5589651479944795e-17,8.169156789582306e-18,-1.0291579813204992e-17)
sum a = (-2.707115367660337e-16,-2.0966004598066978e-16,-7.944856967572781e-18)
sum e = 4.144510864429128
sum de = 5.658180087658726e-19
Info: CFL hydro = 0.011301159512481415 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011301159512481415 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0814e+04 | 800 | 1 | 3.843e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1057.938054154931 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.533869787338205, dt = 0.011301159512481415 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.81 us (1.2%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 378.80 us (95.3%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 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: 3.9549999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1290134691441676e-17,4.7900556312952355e-18,-1.0230168843573002e-17)
sum a = (-6.741426637064914e-17,5.521595084179724e-17,1.3909210164513878e-16)
sum e = 4.144510864283612
sum de = -1.497554250745603e-18
Info: CFL hydro = 0.011308092014134212 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011308092014134212 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0600e+04 | 800 | 1 | 3.883e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.6174181880863 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.545170946850686, dt = 0.011308092014134212 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.2%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 388.06 us (95.6%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 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: 3.9549999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1801643133620328e-17,7.13265944847652e-18,-6.867543799089636e-18)
sum a = (2.4596366491860547e-16,-3.7960966203735604e-17,-1.1367994284571572e-16)
sum e = 4.1445108640934105
sum de = -5.89534931288993e-19
Info: CFL hydro = 0.011315596178494064 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011315596178494064 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0347e+04 | 800 | 1 | 3.932e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1035.371635158155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.55647903886482, dt = 0.011315596178494064 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.3%)
patch tree reduce : 1724.00 ns (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 391.20 us (95.3%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.9549999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6455396368903096e-17,6.0092880527693825e-18,-9.803287713204289e-18)
sum a = (-1.1557918941872458e-16,-4.414400236570769e-17,2.2564786768437377e-18)
sum e = 4.144510863918188
sum de = 9.317362419797304e-19
Info: CFL hydro = 0.011323539335723607 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011323539335723607 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0107e+04 | 800 | 1 | 3.979e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1023.8330169575662 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.567794635043313, dt = 0.011323539335723607 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.3%)
patch tree reduce : 1332.00 ns (0.3%)
gen split merge : 1091.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 416.09 us (95.5%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 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: 3.9549999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2670383679633847e-17,5.694744061971384e-18,-9.918620509830223e-18)
sum a = (4.4000210827057174e-17,-9.514206807375653e-17,-2.6928710183627703e-17)
sum e = 4.144510863807812
sum de = 7.453889935837843e-19
Info: CFL hydro = 0.01133177767123031 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01133177767123031 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0682e+04 | 800 | 1 | 3.868e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1053.8541254638283 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.579118174379037, dt = 0.01133177767123031 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.2%)
patch tree reduce : 1403.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 404.19 us (95.7%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.9549999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4597340080403492e-17,4.280793931908e-18,-9.891659596333252e-18)
sum a = (9.166111457559201e-17,1.784213342088457e-17,-7.435370593906404e-17)
sum e = 4.144510863797508
sum de = 1.1248597539537109e-18
Info: CFL hydro = 0.011335153091305077 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011335153091305077 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1492e+04 | 800 | 1 | 3.722e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1095.964917656861 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.590449952050268, dt = 0.011335153091305077 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.79 us (1.1%)
patch tree reduce : 1313.00 ns (0.3%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 428.63 us (95.7%)
LB move op cnt : 0
LB apply : 4.03 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 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: 3.9549999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6319093972890632e-17,5.008738596326225e-18,-1.1337064125476435e-17)
sum a = (2.3977239069973152e-17,3.968646466754177e-17,-6.442759628659577e-17)
sum e = 4.14451086383587
sum de = -1.938011383317839e-18
Info: CFL hydro = 0.011336600939859363 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011336600939859363 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0468e+04 | 800 | 1 | 3.909e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.0382978935809 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.601785105141573, dt = 0.011336600939859363 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.31 us (1.0%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.2%)
LB compute : 415.94 us (96.1%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.9549999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5939394441141618e-17,5.7037310331370416e-18,-1.1349046753697311e-17)
sum a = (1.0528536286272818e-16,-2.448889729500456e-16,1.3852217789038336e-16)
sum e = 4.144510863966381
sum de = 1.8973538018496328e-19
Info: CFL hydro = 0.011338948431947254 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011338948431947254 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0581e+04 | 800 | 1 | 3.887e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1049.9548632431445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.613121706081433, dt = 0.011338948431947254 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.3%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 371.07 us (95.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7724057131788357e-17,1.3540369889590035e-18,-8.455242038355724e-18)
sum a = (2.7143049445928625e-16,1.4973492224806822e-16,6.963554607709406e-17)
sum e = 4.144510864215302
sum de = 1.1655173354219173e-18
Info: CFL hydro = 0.011340803407840005 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011340803407840005 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0552e+04 | 800 | 1 | 3.893e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.682352572403 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.62446065451338, dt = 0.011340803407840005 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (1.1%)
patch tree reduce : 1492.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 414.87 us (95.9%)
LB move op cnt : 0
LB apply : 3.59 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1053355491532414e-17,4.787059974240017e-18,-8.673925003386714e-18)
sum a = (-8.858757043693728e-17,-1.082630459756159e-16,-1.3641473315203677e-16)
sum e = 4.144510864538444
sum de = 1.1858461261560205e-19
Info: CFL hydro = 0.01133747353947956 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01133747353947956 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0609e+04 | 800 | 1 | 3.882e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1051.7305135147358 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.63580145792122, dt = 0.01133747353947956 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.92 us (1.1%)
patch tree reduce : 1412.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 443.06 us (96.0%)
LB move op cnt : 0
LB apply : 3.66 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8545241622050275e-17,2.7560044908015116e-18,-1.2300167868729355e-17)
sum a = (8.148187190195774e-19,-1.2322335730937975e-16,-9.168657766056138e-17)
sum e = 4.144510864836904
sum de = 1.3654171109739321e-18
Info: CFL hydro = 0.011334288947842839 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011334288947842839 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0856e+04 | 800 | 1 | 3.836e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1064.0655161938535 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.647138931460702, dt = 0.011334288947842839 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (1.0%)
patch tree reduce : 1553.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 444.17 us (96.1%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.9043644064612344e-17,7.908534625778251e-19,-1.2205804671489955e-17)
sum a = (5.211245013259032e-17,5.861302594241563e-17,1.2775578643392615e-16)
sum e = 4.144510865144431
sum de = -2.1921212674941293e-18
Info: CFL hydro = 0.011331314671498909 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011331314671498909 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0525e+04 | 800 | 1 | 3.898e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1046.8702325491367 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.658473220408546, dt = 0.011331314671498909 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.64 us (1.1%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 403.90 us (95.6%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.9657098460951414e-17,2.7560044908015116e-18,-9.255082472099206e-18)
sum a = (-4.904489730804603e-17,-9.387790079645409e-17,2.5295328174269524e-17)
sum e = 4.144510865425697
sum de = -3.4897757426877174e-19
Info: CFL hydro = 0.011328750640438213 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011328750640438213 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0336e+04 | 800 | 1 | 3.934e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1036.9702227065573 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.669804535080043, dt = 0.011328750640438213 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (1.0%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 395.27 us (95.7%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.853026333677418e-17,3.2952227607409377e-19,-9.123273561669569e-18)
sum a = (-8.115834093999408e-17,-8.516653007987714e-17,-1.2429730036367579e-17)
sum e = 4.144510865652798
sum de = -9.808641529204798e-19
Info: CFL hydro = 0.01132332766590166 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01132332766590166 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0499e+04 | 800 | 1 | 3.903e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1045.0314343617765 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.68113328572048, dt = 0.01132332766590166 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.4%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 389.30 us (95.2%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7106202864149433e-17,5.931400969333688e-19,-9.548656863510672e-18)
sum a = (-2.56560052837179e-16,7.908834191483772e-17,-6.26069857112864e-17)
sum e = 4.144510865761622
sum de = 3.6422416731934915e-19
Info: CFL hydro = 0.011318654473511752 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011318654473511752 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0581e+04 | 800 | 1 | 3.887e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.6965377058605 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.692456613386383, dt = 0.011318654473511752 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.2%)
patch tree reduce : 1392.00 ns (0.3%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 409.50 us (95.6%)
LB move op cnt : 0
LB apply : 3.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (72.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.408732946675245e-17,1.042488655216224e-18,-1.0642071688665619e-17)
sum a = (-5.931400969333688e-18,9.450698877805009e-17,1.7992365622203802e-16)
sum e = 4.144510865794315
sum de = 1.6872896309305663e-18
Info: CFL hydro = 0.011314791971863029 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011314791971863029 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0275e+04 | 800 | 1 | 3.946e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1032.6719430629419 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.703775267859896, dt = 0.011314791971863029 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.3%)
patch tree reduce : 1423.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 410.83 us (95.4%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.48032915029498e-17,2.462430099390046e-18,-8.712868545104561e-18)
sum a = (1.5313798866279702e-17,1.3008490979435896e-16,8.761173515119968e-17)
sum e = 4.144510865760829
sum de = -3.4897757426877174e-19
Info: CFL hydro = 0.011311791906478087 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011311791906478087 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0432e+04 | 800 | 1 | 3.915e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.3300445737264 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.71509005983176, dt = 0.011311791906478087 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.3%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 408.59 us (95.6%)
LB move op cnt : 0
LB apply : 3.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.52601292038707e-17,4.643268435589503e-18,-6.331321186205429e-18)
sum a = (9.729894115351424e-18,-1.0895803841242672e-16,5.769111248367196e-17)
sum e = 4.144510865683882
sum de = 4.1758724299637007e-19
Info: CFL hydro = 0.011309696026695975 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011309696026695975 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9933e+04 | 800 | 1 | 4.013e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1014.6629876712939 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.72640185173824, dt = 0.011309696026695975 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.3%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 391.05 us (95.3%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4866949215373202e-17,2.096959938653324e-18,-6.743224031298046e-18)
sum a = (-5.581508225284105e-17,-2.3189381264450543e-17,1.664549948732073e-16)
sum e = 4.144510865599768
sum de = 8.571973426213519e-19
Info: CFL hydro = 0.011308535099426984 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011308535099426984 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0249e+04 | 800 | 1 | 3.951e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1030.5593953672762 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.737711547764935, dt = 0.011308535099426984 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.3%)
patch tree reduce : 1523.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 433.88 us (95.5%)
LB move op cnt : 0
LB apply : 3.69 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4432578942366445e-17,1.8692900024566773e-18,-3.837436687735583e-18)
sum a = (5.591094327860805e-17,-1.0661468568098163e-16,-3.967579263928255e-17)
sum e = 4.144510865553565
sum de = -8.334804200982315e-19
Info: CFL hydro = 0.011308328742500857 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011308328742500857 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9856e+04 | 800 | 1 | 4.029e-02 | 0.1% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1010.4336985995615 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.749020082864362, dt = 0.011308328742500857 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.3%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 414.30 us (95.3%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5290834688686697e-17,4.793051288350455e-20,-5.947877083137392e-18)
sum a = (-1.2872937497687234e-16,7.152131219335445e-18,-8.538446413064432e-17)
sum e = 4.144510865595847
sum de = -2.1108061045577164e-18
Info: CFL hydro = 0.011309089433486949 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011309089433486949 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7914e+04 | 800 | 1 | 4.466e-02 | 0.1% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 911.6226283191236 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.760328411606864, dt = 0.011309089433486949 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (1.6%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 388.16 us (94.9%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.348445348438962e-17,1.743472406137478e-18,-6.8345915714822266e-18)
sum a = (-1.2368468849588349e-16,9.903492441701366e-17,-7.86599629559414e-17)
sum e = 4.144510865777281
sum de = 1.3078188705606397e-18
Info: CFL hydro = 0.011310813935147745 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011310813935147745 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0048e+04 | 800 | 1 | 3.990e-02 | 0.1% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1020.2588141749762 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.77163750104035, dt = 0.011310813935147745 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.3%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 388.86 us (95.4%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.174397673530736e-17,2.4085082723961037e-18,-7.893556340502155e-18)
sum a = (-7.939689459152528e-17,-5.264567708841931e-17,4.6072456595004943e-17)
sum e = 4.144510866142519
sum de = 3.703228045395801e-18
Info: CFL hydro = 0.01131348463409813 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01131348463409813 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9957e+04 | 800 | 1 | 4.009e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1015.780995618553 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.782948314975496, dt = 0.01131348463409813 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.3%)
patch tree reduce : 1532.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 382.33 us (95.0%)
LB move op cnt : 0
LB apply : 4.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.168406359420298e-17,1.569724296934774e-18,-6.500575809825304e-18)
sum a = (6.639574297187467e-17,1.4787162355972197e-16,3.4508471447595664e-17)
sum e = 4.144510866725653
sum de = -6.776263578034403e-21
Info: CFL hydro = 0.011317073149937072 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011317073149937072 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0281e+04 | 800 | 1 | 3.945e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1032.4973139724914 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.794261799609593, dt = 0.011317073149937072 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.3%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 388.74 us (95.3%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3256783548192972e-17,3.648710293256784e-18,-6.5320302089051045e-18)
sum a = (-1.5928507694010648e-16,1.447741141646255e-16,-9.149485560902735e-17)
sum e = 4.144510867546304
sum de = -1.2807138162485021e-18
Info: CFL hydro = 0.011321541079638352 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011321541079638352 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0508e+04 | 800 | 1 | 3.901e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.3904695685046 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.80557887275953, dt = 0.011321541079638352 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.2%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 426.22 us (95.4%)
LB move op cnt : 0
LB apply : 4.23 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (73.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.854611282886104e-17,5.697739719026603e-18,-7.653903776084633e-18)
sum a = (2.587199215739919e-16,-2.6733243560774662e-17,-1.3630089818393846e-16)
sum e = 4.144510868606372
sum de = -1.633079522306291e-18
Info: CFL hydro = 0.011321299887063076 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011321299887063076 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9628e+04 | 800 | 1 | 4.076e-02 | 0.1% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 999.9674398937182 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.816900413839168, dt = 0.011321299887063076 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.3%)
patch tree reduce : 1422.00 ns (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.2%)
LB compute : 443.55 us (95.5%)
LB move op cnt : 0
LB apply : 3.79 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4887918814759738e-17,4.092067537429201e-18,-1.0355986439892202e-17)
sum a = (-1.1212744357684845e-17,-6.544911534242546e-17,-1.751036440201906e-16)
sum e = 4.144510869814851
sum de = -1.0401564592282808e-18
Info: CFL hydro = 0.011317719167408398 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011317719167408398 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0041e+04 | 800 | 1 | 3.992e-02 | 0.1% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1020.9849182136496 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.82822171372623, dt = 0.011317719167408398 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.4%)
patch tree reduce : 1683.00 ns (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 384.47 us (95.1%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.35758210245738e-17,3.738580004913355e-18,-1.3192873671184627e-17)
sum a = (-1.663997624462517e-16,-6.103950815714304e-17,-8.829699170258104e-18)
sum e = 4.1445108711478
sum de = -7.691059161069047e-19
Info: CFL hydro = 0.011314517267299823 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011314517267299823 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9132e+04 | 800 | 1 | 4.182e-02 | 0.1% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 974.3778247703611 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.839539432893638, dt = 0.011314517267299823 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.3%)
patch tree reduce : 1753.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1193.00 ns (0.3%)
LB compute : 417.55 us (95.2%)
LB move op cnt : 0
LB apply : 4.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (75.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.084228396168643e-17,1.4199414441738223e-18,-1.169654297210272e-17)
sum a = (4.761971346402557e-17,-8.689202854368331e-17,-1.473264139756721e-17)
sum e = 4.1445108725956326
sum de = -3.3881317890172014e-20
Info: CFL hydro = 0.01131172906746253 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01131172906746253 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9505e+04 | 800 | 1 | 4.102e-02 | 0.1% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 993.0989469342157 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.85085395016094, dt = 0.01131172906746253 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (1.5%)
patch tree reduce : 1522.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 442.77 us (95.4%)
LB move op cnt : 0
LB apply : 3.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (77.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2027066327025558e-17,1.845324746014925e-18,-1.2029060905232032e-17)
sum a = (8.163165475471868e-17,1.6760102092539453e-16,3.2191330715383744e-17)
sum e = 4.144510874086818
sum de = 1.0028870095490916e-18
Info: CFL hydro = 0.011306393805588408 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011306393805588408 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0349e+04 | 800 | 1 | 3.931e-02 | 0.1% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1035.8434829052965 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.8621656792284, dt = 0.011306393805588408 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.4%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 1182.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 391.89 us (95.1%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4142000208010196e-17,4.3886375858958855e-18,-1.1765443084372756e-17)
sum a = (6.618305132095412e-17,1.0243948866027009e-16,2.046782682978405e-16)
sum e = 4.144510875500057
sum de = 8.809142651444724e-20
Info: CFL hydro = 0.01129598683669894 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01129598683669894 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0019e+04 | 800 | 1 | 3.996e-02 | 0.1% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1018.54672866341 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.87347207303399, dt = 0.01129598683669894 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.4%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 386.35 us (95.0%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4282796089605493e-17,5.500026353382147e-18,-7.815669257066461e-18)
sum a = (-2.587948130003724e-16,-5.975137562339885e-17,4.9892668254673013e-17)
sum e = 4.144510876713788
sum de = -9.385125055577648e-19
Info: CFL hydro = 0.011285969529469341 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011285969529469341 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9886e+04 | 800 | 1 | 4.023e-02 | 0.1% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1010.8251555035416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.88476805987069, dt = 0.011285969529469341 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.5%)
patch tree reduce : 1793.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 399.66 us (95.2%)
LB move op cnt : 0
LB apply : 3.57 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9305511892359066e-17,4.322733130681066e-18,-7.656899433139851e-18)
sum a = (-6.804934566635559e-17,-1.292266540480387e-16,-5.732489340867144e-17)
sum e = 4.14451087772107
sum de = -1.2163393122571753e-18
Info: CFL hydro = 0.011276508054818018 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011276508054818018 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9680e+04 | 800 | 1 | 4.065e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 999.5082914985926 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.89605402940016, dt = 0.011276508054818018 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.3%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 398.31 us (95.1%)
LB move op cnt : 0
LB apply : 4.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.994508467364833e-17,2.4025169582856654e-18,-8.68440980307998e-18)
sum a = (-3.168206901599651e-17,-1.5010039240880493e-16,7.833343633692253e-17)
sum e = 4.144510878455644
sum de = 6.776263578034403e-19
Info: CFL hydro = 0.011267758485765849 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011267758485765849 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0106e+04 | 800 | 1 | 3.979e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1020.2745600913843 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.90733053745498, dt = 0.011267758485765849 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.2%)
patch tree reduce : 1653.00 ns (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 424.37 us (95.7%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (73.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9987023872421397e-17,5.392182699394261e-19,-7.462181724550615e-18)
sum a = (3.681662520864193e-17,-1.7599485199411826e-16,7.856410193017439e-17)
sum e = 4.14451087886947
sum de = -1.480613591800517e-18
Info: CFL hydro = 0.011259864471302707 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011259864471302707 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0230e+04 | 800 | 1 | 3.954e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1025.7736968697247 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.918598295940743, dt = 0.011259864471302707 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.3%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 393.83 us (95.5%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.955000000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0298572206164177e-17,-1.746468063192697e-18,-6.278897187739096e-18)
sum a = (2.2605228138682834e-17,-5.830746892278328e-17,-2.5648815706785372e-17)
sum e = 4.144510878936533
sum de = 6.132518538121134e-19
Info: CFL hydro = 0.011252955351924476 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011252955351924476 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0173e+04 | 800 | 1 | 3.966e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1022.1329418881264 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.929858160412046, dt = 0.011252955351924476 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.2%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 396.99 us (95.5%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.955000000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.032403529113354e-17,-1.5966852104317452e-18,-6.725250088966732e-18)
sum a = (-1.5047784519776252e-16,2.075391207855747e-17,2.589026566543603e-16)
sum e = 4.144510878654491
sum de = -3.7947076036992655e-19
Info: CFL hydro = 0.011247144181776206 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011247144181776206 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0036e+04 | 800 | 1 | 3.993e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1014.5873689178842 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.94111111576397, dt = 0.011247144181776206 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.4%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.3%)
LB compute : 411.21 us (95.5%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 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: 3.955000000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7383797891436056e-17,-8.687405460135199e-19,-3.494433954913003e-18)
sum a = (-3.406661203195086e-17,-1.3705730159038125e-16,-1.0583656376088849e-16)
sum e = 4.144510878047722
sum de = -2.964615315390051e-19
Info: CFL hydro = 0.01124252665325892 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01124252665325892 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0280e+04 | 800 | 1 | 3.945e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1026.4165833362467 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.952358259945747, dt = 0.01124252665325892 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.3%)
patch tree reduce : 1873.00 ns (0.5%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 385.10 us (95.3%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 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: 3.9500000000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.735608806367528e-17,-3.3551359018453183e-18,-6.786661058598722e-18)
sum a = (1.8804338467020923e-16,6.268711953751351e-17,1.271177114811645e-16)
sum e = 4.144510877166127
sum de = 2.3107058801097313e-18
Info: CFL hydro = 0.011239179176351583 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011239179176351583 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0316e+04 | 800 | 1 | 3.938e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1027.8339859355249 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.963600786599006, dt = 0.011239179176351583 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.3%)
patch tree reduce : 1572.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.2%)
LB compute : 399.31 us (95.5%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 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: 3.9500000000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.104673755570513e-17,-1.6206504668734975e-18,-3.078037624237558e-18)
sum a = (-1.6392235406158557e-17,-2.156573514052183e-16,-1.2132111507931566e-16)
sum e = 4.144510876083291
sum de = -3.1213164106320967e-19
Info: CFL hydro = 0.011237159987946943 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011237159987946943 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0381e+04 | 800 | 1 | 3.925e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1030.7809333193852 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.974839965775356, dt = 0.011237159987946943 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.1%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 427.72 us (95.8%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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: 3.9500000000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0246148207697844e-17,-5.7336876036892314e-18,-5.219932418719167e-18)
sum a = (1.0850269854003342e-17,-1.3156925786522e-16,2.8924566696667387e-17)
sum e = 4.1445108748923944
sum de = 1.105801512640489e-18
Info: CFL hydro = 0.011236504034924509 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011236504034924509 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0494e+04 | 800 | 1 | 3.904e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1036.3030585764745 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.986077125763302, dt = 0.011236504034924509 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.3%)
patch tree reduce : 1293.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 374.27 us (95.5%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 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: 3.9500000000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0506770371501898e-17,-6.6054238067579704e-18,-4.481502954607675e-18)
sum a = (9.799393359032505e-17,-3.44979866479024e-17,-2.010535232610255e-17)
sum e = 4.144510873700137
sum de = -1.8168856718604742e-18
Info: CFL hydro = 0.011237226189411052 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011237226189411052 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0363e+04 | 800 | 1 | 3.929e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1029.6350557713884 (tsim/hr) [sph::Model][rank=0]
---------------- t = 20.997313629798228, dt = 0.0026863702017720925 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.3%)
patch tree reduce : 1743.00 ns (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 387.47 us (95.3%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.9500000000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1083434354631562e-17,-6.090170793260296e-18,-5.080634365651482e-18)
sum a = (-1.969344948100993e-17,-1.5501926129347458e-16,6.0003010816037254e-18)
sum e = 4.144510805985228
sum de = 6.522153693858113e-19
Info: CFL hydro = 0.01123825905197547 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01123825905197547 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0217e+04 | 800 | 1 | 3.957e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 244.39619646971605 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 2325 [SPH][rank=0]
Info: time since start : 974.3962530790001 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.1510746060934993 max=0.1512428197799649 delta=0.00016821368646560697
Number of particle pairs: 319600
Distance min=0.120641 max=2.265902 mean=0.931119
---------------- t = 21, dt = 0.01123825905197547 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.22 us (1.6%)
patch tree reduce : 1643.00 ns (0.3%)
gen split merge : 501.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.1%)
LB compute : 616.16 us (96.1%)
LB move op cnt : 0
LB apply : 4.43 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (81.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9500000000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1187533437300424e-17,-8.232065587741906e-18,-4.866444886203321e-18)
sum a = (-1.243317504198108e-16,1.0481204904800357e-16,7.808929028692218e-18)
sum e = 4.144510872385703
sum de = 6.911788849595091e-19
Info: CFL hydro = 0.011239944758578138 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011239944758578138 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6955e+04 | 800 | 1 | 4.718e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 857.4577142649982 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.011238259051975, dt = 0.011239944758578138 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.06 us (0.7%)
patch tree reduce : 1453.00 ns (0.2%)
gen split merge : 862.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.1%)
LB compute : 672.45 us (97.2%)
LB move op cnt : 0
LB apply : 3.71 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9500000000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.9065859327941545e-17,-4.721155519025198e-18,-5.267862931602672e-18)
sum a = (8.694595037067725e-17,-5.49103938221649e-17,1.283938613866878e-17)
sum e = 4.144510871609895
sum de = -1.3433942543453203e-18
Info: CFL hydro = 0.011243254294306214 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011243254294306214 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9705e+04 | 800 | 1 | 4.060e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 996.6537926055652 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.022478203810554, dt = 0.011243254294306214 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.0%)
patch tree reduce : 1533.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 424.62 us (96.2%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.9500000000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1287887948650263e-17,-7.282442301237473e-18,-5.374208757062948e-18)
sum a = (3.159219930433993e-17,-9.412354467498206e-18,1.2665900149458408e-16)
sum e = 4.1445108711420575
sum de = -2.1006417091906648e-19
Info: CFL hydro = 0.011247840764232096 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011247840764232096 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0402e+04 | 800 | 1 | 3.921e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1032.2272208183906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.03372145810486, dt = 0.011247840764232096 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.62 us (1.1%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 384.33 us (95.2%)
LB move op cnt : 0
LB apply : 4.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9450000000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1519302456165932e-17,-6.371762556450886e-18,-2.6706282647277692e-18)
sum a = (-1.7111193099411124e-17,1.4425286983701737e-16,1.1268238904632779e-16)
sum e = 4.144510871109072
sum de = -4.607859233063394e-19
Info: CFL hydro = 0.011253638978457398 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011253638978457398 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0697e+04 | 800 | 1 | 3.865e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.5810758646955 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.04496929886909, dt = 0.011253638978457398 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (1.0%)
patch tree reduce : 1412.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 391.04 us (96.0%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.9450000000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.113173932464697e-17,-4.295772217184095e-18,-1.4933350420266886e-18)
sum a = (-1.9615562397574235e-17,1.8541918908983735e-16,-5.670029891265827e-17)
sum e = 4.144510871553851
sum de = 2.100641709190665e-18
Info: CFL hydro = 0.011260564929310907 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011260564929310907 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0606e+04 | 800 | 1 | 3.882e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.4960123897008 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.056222937847547, dt = 0.011260564929310907 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (1.0%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 397.32 us (95.8%)
LB move op cnt : 0
LB apply : 3.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.9450000000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1472869771810038e-17,-2.863848144789397e-18,-2.79195237546414e-18)
sum a = (2.9733394101576524e-17,-2.0861156601134312e-16,3.471367395587817e-17)
sum e = 4.144510872500935
sum de = -4.0996394647108136e-19
Info: CFL hydro = 0.011268516404587207 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011268516404587207 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0702e+04 | 800 | 1 | 3.864e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1049.034161058653 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.06748350277686, dt = 0.011268516404587207 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (1.0%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 412.56 us (96.1%)
LB move op cnt : 0
LB apply : 3.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9450000000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.11834144088495e-17,-7.114685506145206e-18,-3.0076396834399104e-18)
sum a = (-1.2621751653607117e-16,-6.600031624058576e-17,-3.6036256545757375e-17)
sum e = 4.14451087394252
sum de = 8.843023969334896e-19
Info: CFL hydro = 0.011277374149862686 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011277374149862686 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0984e+04 | 800 | 1 | 3.812e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1064.077008496371 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.078752019181447, dt = 0.011277374149862686 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.98 us (1.0%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 398.28 us (96.0%)
LB move op cnt : 0
LB apply : 2.83 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9450000000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.907634412763481e-17,-5.790605087738393e-18,-2.4639279279176555e-18)
sum a = (-1.1910732451550881e-16,-7.598184554857559e-17,1.541400359477678e-16)
sum e = 4.14451087583762
sum de = 1.9888333601530972e-18
Info: CFL hydro = 0.011284660703478095 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011284660703478095 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0571e+04 | 800 | 1 | 3.889e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.9515189949707 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.09002939333131, dt = 0.011284660703478095 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.0%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 423.28 us (95.9%)
LB move op cnt : 0
LB apply : 3.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (1.7396154976788836e-17,-7.213542188967435e-18,1.407958815952946e-19)
sum a = (2.8084284892678444e-16,-5.005742939271006e-18,1.2042541361980518e-18)
sum e = 4.144510878083233
sum de = 6.945670167485263e-19
Info: CFL hydro = 0.011288937755058091 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011288937755058091 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0492e+04 | 800 | 1 | 3.904e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.6086658294741 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.101314054034788, dt = 0.011288937755058091 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.22 us (1.0%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 401.60 us (95.8%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2664392365523408e-17,-6.788158887126332e-18,-1.1503323092041092e-18)
sum a = (1.6705880699839987e-16,-1.823756015217348e-17,1.657227439517722e-16)
sum e = 4.144510880558834
sum de = 3.8963515573697816e-19
Info: CFL hydro = 0.011293704138897446 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011293704138897446 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0120e+04 | 800 | 1 | 3.976e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1022.079279464618 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.112602991789846, dt = 0.011293704138897446 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (1.1%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 379.34 us (95.7%)
LB move op cnt : 0
LB apply : 3.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.9475000000000002
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4091074038071475e-17,-6.896002541114217e-18,2.019072855217629e-18)
sum a = (4.3910341115400603e-17,-5.127366615712899e-17,2.071496853683962e-17)
sum e = 4.144510883185275
sum de = 4.845028458294598e-19
Info: CFL hydro = 0.011298884623045667 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011298884623045667 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0668e+04 | 800 | 1 | 3.871e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1050.3930525671394 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.123896695928742, dt = 0.011298884623045667 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (1.1%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 393.45 us (96.1%)
LB move op cnt : 0
LB apply : 3.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.9475000000000002
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.388437370126136e-17,-8.879127511669218e-18,1.3795000739283654e-18)
sum a = (-4.85056790381066e-17,6.81152501215704e-17,6.58655116731009e-17)
sum e = 4.144510885827126
sum de = -3.3881317890172014e-20
Info: CFL hydro = 0.011304398296575018 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011304398296575018 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0883e+04 | 800 | 1 | 3.831e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1061.7982044119042 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.135195580551787, dt = 0.011304398296575018 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (1.0%)
patch tree reduce : 1423.00 ns (0.4%)
gen split merge : 712.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 372.32 us (95.9%)
LB move op cnt : 0
LB apply : 3.10 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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: 3.9475000000000002
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3101009381321582e-17,-6.500575809825304e-18,2.859354659206568e-18)
sum a = (1.8173453091191793e-16,9.983626267928476e-17,5.816667304118799e-17)
sum e = 4.1445108883441275
sum de = -3.7269449679189215e-20
Info: CFL hydro = 0.011310160505036342 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011310160505036342 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0835e+04 | 800 | 1 | 3.840e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1059.8922530761458 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.14649997884836, dt = 0.011310160505036342 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.42 us (1.1%)
patch tree reduce : 972.00 ns (0.2%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 385.23 us (96.0%)
LB move op cnt : 0
LB apply : 2.90 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 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: 3.9475000000000002
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6453149626111683e-17,-5.5809090938730606e-18,2.944730885280311e-18)
sum a = (-6.24654409154273e-17,-5.055321063534881e-17,5.815768607002234e-17)
sum e = 4.144510890601548
sum de = 6.657678965418801e-19
Info: CFL hydro = 0.011316083689891586 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011316083689891586 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0600e+04 | 800 | 1 | 3.884e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.4490833895004 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.157810139353398, dt = 0.011316083689891586 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.93 us (1.2%)
patch tree reduce : 1463.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1203.00 ns (0.3%)
LB compute : 401.70 us (95.7%)
LB move op cnt : 0
LB apply : 3.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 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: 3.9475
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4542669339145742e-17,-6.332819014733038e-18,4.1055479941776864e-18)
sum a = (-6.881024255838121e-17,-6.115484095376897e-17,3.1655108102499535e-17)
sum e = 4.144510892478494
sum de = -8.385626177817573e-19
Info: CFL hydro = 0.011316140445393853 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011316140445393853 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0526e+04 | 800 | 1 | 3.898e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1045.2188264130427 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.16912622304329, dt = 0.011316140445393853 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.0%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 399.98 us (96.0%)
LB move op cnt : 0
LB apply : 3.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 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: 3.9475
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3177398636229668e-17,-7.303411900624005e-18,3.6681820641157076e-18)
sum a = (1.6464131175483813e-16,-1.3003098796736502e-16,-6.922663888905666e-17)
sum e = 4.14451089379098
sum de = -5.480303168735323e-19
Info: CFL hydro = 0.011316088442968577 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011316088442968577 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0415e+04 | 800 | 1 | 3.919e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1039.592493543531 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.180442363488684, dt = 0.011316088442968577 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.1%)
patch tree reduce : 1362.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 400.27 us (95.6%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.9475
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6502577967522798e-17,-9.421341438663863e-18,3.024115797243615e-18)
sum a = (-1.0161268731302965e-16,-1.3533554769789412e-16,1.4519949746646658e-17)
sum e = 4.1445108945535525
sum de = 3.8285889215894375e-19
Info: CFL hydro = 0.011314676893361734 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011314676893361734 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0574e+04 | 800 | 1 | 3.888e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.667511530509 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.19175845193165, dt = 0.011314676893361734 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (1.0%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 448.77 us (96.1%)
LB move op cnt : 0
LB apply : 3.66 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.9450000000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3664192907702762e-17,-1.169504514357511e-17,3.2263226484708998e-18)
sum a = (4.9811785514182103e-17,1.9571423263151244e-17,-1.850327493297141e-16)
sum e = 4.14451089471905
sum de = -1.122318655111948e-18
Info: CFL hydro = 0.011311937885732811 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011311937885732811 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0722e+04 | 800 | 1 | 3.861e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1055.0753129908426 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.203073128825014, dt = 0.011311937885732811 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (1.0%)
patch tree reduce : 1382.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.2%)
LB compute : 410.82 us (95.8%)
LB move op cnt : 0
LB apply : 3.58 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9450000000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5428634913226774e-17,-8.849170941117027e-18,-4.628290150313408e-19)
sum a = (1.998582560959931e-16,5.5159782272011884e-17,-6.277099793505965e-17)
sum e = 4.144510894295576
sum de = 5.370188885592264e-19
Info: CFL hydro = 0.011309226801048473 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011309226801048473 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0590e+04 | 800 | 1 | 3.885e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.097746106947 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.214385066710747, dt = 0.011309226801048473 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (1.0%)
patch tree reduce : 941.00 ns (0.2%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 381.39 us (95.9%)
LB move op cnt : 0
LB apply : 3.12 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.9450000000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.788507369850638e-17,-8.630487976086038e-18,-5.841531257677117e-19)
sum a = (7.849819747495958e-17,-2.7146644234394887e-16,6.703381792463634e-17)
sum e = 4.14451089334852
sum de = -8.258571235729428e-19
Info: CFL hydro = 0.011306590023328997 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011306590023328997 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0885e+04 | 800 | 1 | 3.831e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1062.858769284187 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.225694293511797, dt = 0.011306590023328997 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (1.0%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 423.85 us (96.2%)
LB move op cnt : 0
LB apply : 3.57 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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: 3.9450000000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8738835959243804e-17,-1.3534378575479596e-17,1.5891960677936976e-18)
sum a = (-3.8128722998827866e-17,-4.579460940313338e-17,-7.927706830931653e-17)
sum e = 4.144510891957392
sum de = 4.62479989200848e-19
Info: CFL hydro = 0.011304074343882633 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011304074343882633 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0506e+04 | 800 | 1 | 3.901e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.3426420028436 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.237000883535124, dt = 0.011304074343882633 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (1.0%)
patch tree reduce : 1052.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 382.76 us (96.1%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.9450000000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6902498184394537e-17,-1.3210847613515941e-17,-8.25303518712844e-19)
sum a = (8.501674722711619e-17,7.120676820255645e-17,1.0019873718296626e-16)
sum e = 4.144510890229912
sum de = -1.145188544687814e-18
Info: CFL hydro = 0.011301725681922673 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011301725681922673 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0816e+04 | 800 | 1 | 3.843e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1058.8871931804736 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.248304957879007, dt = 0.011301725681922673 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.34 us (1.1%)
patch tree reduce : 1432.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 386.02 us (95.7%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.9450000000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.922113674513407e-17,-1.1865797595722594e-17,1.0844278539892903e-18)
sum a = (8.007391308600479e-17,-3.5228926969375846e-17,4.7202568219086326e-17)
sum e = 4.144510888293599
sum de = -7.792703114739563e-20
Info: CFL hydro = 0.011299588500439758 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011299588500439758 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0581e+04 | 800 | 1 | 3.887e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1046.7066936093731 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.25960668356093, dt = 0.011299588500439758 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (1.0%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 371.79 us (95.6%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.9450000000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.9510217650962705e-17,-1.2761499055233085e-17,1.9336966291438866e-18)
sum a = (3.877578492275518e-17,4.0004004315394986e-17,-1.4987871378671873e-16)
sum e = 4.1445108862891455
sum de = 1.5348237004247922e-18
Info: CFL hydro = 0.0112977046527691 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0112977046527691 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0815e+04 | 800 | 1 | 3.843e-02 | 0.1% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1058.3919449168402 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.270906272061367, dt = 0.0112977046527691 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.0%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 399.07 us (95.7%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0292084142374874e-17,-1.1811875768728652e-17,-4.1489850214783623e-19)
sum a = (-3.0346005969368816e-17,-4.9587111235040675e-17,1.403045938382387e-16)
sum e = 4.144510884360127
sum de = 1.328147661294743e-18
Info: CFL hydro = 0.011296113168897148 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011296113168897148 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0751e+04 | 800 | 1 | 3.855e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1054.9853112465128 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.282203976714136, dt = 0.011296113168897148 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (1.1%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 399.34 us (95.6%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 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: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8825710013845156e-17,-1.2411007179772459e-17,2.3620755880402085e-18)
sum a = (6.371762556450886e-17,-1.2087476217808803e-17,5.624645686879259e-17)
sum e = 4.14451088264365
sum de = -7.250602028496811e-19
Info: CFL hydro = 0.011294849007116633 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011294849007116633 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0605e+04 | 800 | 1 | 3.883e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.3946753239293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.293500089883032, dt = 0.011294849007116633 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.82 us (0.9%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 397.27 us (96.2%)
LB move op cnt : 0
LB apply : 3.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.106945714820422e-17,-1.1674075544188577e-17,2.6496586653412356e-18)
sum a = (2.4777079503716632e-17,-9.462681506025886e-17,8.191474434643688e-17)
sum e = 4.144510881260373
sum de = -3.3881317890172014e-19
Info: CFL hydro = 0.01129394272601565 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01129394272601565 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0796e+04 | 800 | 1 | 3.847e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1057.0032241504025 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.30479493889015, dt = 0.01129394272601565 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (0.9%)
patch tree reduce : 1032.00 ns (0.2%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 418.29 us (96.3%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.08313024123143e-17,-1.4244349297566508e-17,4.030656567797211e-18)
sum a = (1.0334417709094624e-16,-4.372461037797703e-17,9.491439813755988e-17)
sum e = 4.144510880308795
sum de = 3.8624702394796095e-19
Info: CFL hydro = 0.011293419974789698 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011293419974789698 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0837e+04 | 800 | 1 | 3.839e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1058.9935299720162 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.316088881616167, dt = 0.011293419974789698 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (1.0%)
patch tree reduce : 942.00 ns (0.2%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 397.85 us (96.4%)
LB move op cnt : 0
LB apply : 3.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2002604320904944e-17,-1.3977735819652013e-17,4.375157129147399e-18)
sum a = (1.183486743662746e-16,-9.646614849216334e-17,2.1688557079785807e-18)
sum e = 4.144510879858621
sum de = -3.2526065174565133e-19
Info: CFL hydro = 0.011293300598921049 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011293300598921049 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1430e+04 | 800 | 1 | 3.733e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1089.0947724372445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.32738230159096, dt = 0.011293300598921049 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (0.9%)
patch tree reduce : 752.00 ns (0.2%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 661.00 ns (0.2%)
LB compute : 367.97 us (96.4%)
LB move op cnt : 0
LB apply : 2.52 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.426582322612292e-17,-1.4903393849714695e-17,3.2772488184096235e-18)
sum a = (-9.914389144239726e-17,-1.8609620758431685e-16,1.152983465697978e-16)
sum e = 4.1445108799465515
sum de = 1.7889335846010823e-18
Info: CFL hydro = 0.011293598775474643 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011293598775474643 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1004e+04 | 800 | 1 | 3.809e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1067.4064886644908 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.33867560218988, dt = 0.011293598775474643 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (0.9%)
patch tree reduce : 1133.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 409.76 us (96.4%)
LB move op cnt : 0
LB apply : 3.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1833349697285066e-17,-1.7560541657693978e-17,6.454143125469409e-18)
sum a = (1.6359283178551147e-16,5.2495894235658354e-17,-4.595094525570262e-17)
sum e = 4.14451088057494
sum de = -1.5585406229479126e-18
Info: CFL hydro = 0.01129432262302304 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01129432262302304 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1136e+04 | 800 | 1 | 3.785e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1074.1618338765632 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.349969200965354, dt = 0.01129432262302304 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (1.1%)
patch tree reduce : 972.00 ns (0.2%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 396.91 us (95.9%)
LB move op cnt : 0
LB apply : 3.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.470918047029534e-17,-1.6491092088980784e-17,5.103101793565625e-18)
sum a = (1.6534828681986982e-16,3.8104757742386116e-17,1.5839686462323406e-16)
sum e = 4.144510881712198
sum de = -8.470329472543003e-19
Info: CFL hydro = 0.011295474009177157 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011295474009177157 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0670e+04 | 800 | 1 | 3.870e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1050.5587074837056 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.361263523588377, dt = 0.011295474009177157 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.71 us (1.2%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 384.53 us (95.6%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.6251943853733143e-17,-1.6829601336220536e-17,7.531081836820651e-18)
sum a = (1.3283941645663286e-16,2.816396937034727e-16,1.0693859110007718e-16)
sum e = 4.144510883296044
sum de = -1.0706496453294356e-18
Info: CFL hydro = 0.011297048607948204 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011297048607948204 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0815e+04 | 800 | 1 | 3.843e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1058.0126113973313 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.372558997597555, dt = 0.011297048607948204 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 us (0.9%)
patch tree reduce : 971.00 ns (0.2%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 424.10 us (92.7%)
LB move op cnt : 0
LB apply : 3.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.8297977622447743e-17,-1.113186161719393e-17,9.049879963816703e-18)
sum a = (-1.762524785008671e-16,1.353318031265751e-16,-4.5735445176292804e-17)
sum e = 4.144510885238274
sum de = -7.894347068410079e-19
Info: CFL hydro = 0.011294223051921484 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011294223051921484 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0582e+04 | 800 | 1 | 3.887e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1046.3010371560802 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.3838560462055, dt = 0.011294223051921484 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (0.9%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 661.00 ns (0.2%)
LB compute : 390.06 us (96.1%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.406511420342325e-17,-1.057766506197841e-17,7.6014797776183e-18)
sum a = (2.292696170641336e-16,9.037298204184782e-17,-1.5112340929316223e-17)
sum e = 4.144510887372041
sum de = 1.2569968937253817e-18
Info: CFL hydro = 0.011290449850771893 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011290449850771893 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0853e+04 | 800 | 1 | 3.836e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1059.8461990414366 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.395150269257424, dt = 0.011290449850771893 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (1.0%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 379.17 us (95.7%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (72.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9335972792081136e-17,-1.0529734549094906e-17,7.522094865654994e-18)
sum a = (6.263918902463001e-17,-1.699256508002445e-16,4.9341467356512714e-17)
sum e = 4.14451088961533
sum de = 8.419507495707745e-19
Info: CFL hydro = 0.011286921501766758 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011286921501766758 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0312e+04 | 800 | 1 | 3.939e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1031.9779424590058 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.406440719108197, dt = 0.011286921501766758 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (0.9%)
patch tree reduce : 962.00 ns (0.2%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 413.63 us (96.3%)
LB move op cnt : 0
LB apply : 3.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.923112479514847e-17,-1.41484882717995e-17,8.6559510610554e-18)
sum a = (-1.7032706884564385e-16,-1.2221681653882616e-16,-3.512557680097079e-17)
sum e = 4.144510891859864
sum de = -1.1485766764768313e-18
Info: CFL hydro = 0.011283680704140372 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011283680704140372 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0862e+04 | 800 | 1 | 3.835e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1059.5905133523547 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.417727640609964, dt = 0.011283680704140372 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (0.8%)
patch tree reduce : 1012.00 ns (0.2%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.2%)
LB compute : 406.83 us (96.3%)
LB move op cnt : 0
LB apply : 3.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 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: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.581907140925399e-17,-1.3768039825786682e-17,7.059265850623654e-18)
sum a = (1.3760251117443112e-16,-1.7374810920270397e-18,4.0832303491163046e-17)
sum e = 4.144510893989592
sum de = 5.005964718272915e-19
Info: CFL hydro = 0.011280767000389932 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011280767000389932 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1043e+04 | 800 | 1 | 3.802e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1068.4862429372877 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.429011321314103, dt = 0.011280767000389932 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (0.8%)
patch tree reduce : 981.00 ns (0.2%)
gen split merge : 501.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 380.76 us (96.7%)
LB move op cnt : 0
LB apply : 2.81 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 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: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.930451839300134e-17,-1.4660745628241955e-17,8.176645932220354e-18)
sum a = (1.476379623094149e-16,-5.3454504493328446e-17,1.0807581740966471e-16)
sum e = 4.144510895901689
sum de = -2.3894799442043813e-18
Info: CFL hydro = 0.011278220251259519 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011278220251259519 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0885e+04 | 800 | 1 | 3.830e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1060.2123042890578 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.440292088314493, dt = 0.011278220251259519 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (0.8%)
patch tree reduce : 1002.00 ns (0.2%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.2%)
LB compute : 418.16 us (96.3%)
LB move op cnt : 0
LB apply : 3.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.076490120742062e-17,-1.5220933497567914e-17,1.0707976143880437e-17)
sum a = (-5.919418341112811e-17,6.858856393629501e-17,1.0046235500382554e-16)
sum e = 4.144510897513295
sum de = 1.2455619489374486e-18
Info: CFL hydro = 0.011276071521314294 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011276071521314294 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0633e+04 | 800 | 1 | 3.877e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.1772202738107 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.451570308565753, dt = 0.011276071521314294 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.18 us (1.0%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.2%)
LB compute : 393.96 us (96.2%)
LB move op cnt : 0
LB apply : 3.09 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.920266605312389e-17,-1.30940169883624e-17,1.036047992547503e-17)
sum a = (1.2120428445416214e-16,1.845324746014925e-17,-3.0948133037467846e-17)
sum e = 4.1445108987661055
sum de = 5.505714157152952e-20
Info: CFL hydro = 0.011274346728388345 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011274346728388345 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0609e+04 | 800 | 1 | 3.882e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1045.767938625347 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.46284638008707, dt = 0.011274346728388345 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.46 us (1.1%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 385.58 us (95.6%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.156923512674693e-17,-1.3345652181000798e-17,9.95756405154807e-18)
sum a = (1.0867045533512569e-16,-1.2885519257319154e-16,-3.696715697566669e-17)
sum e = 4.144510899629633
sum de = -2.862971361719535e-18
Info: CFL hydro = 0.011273068045762006 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011273068045762006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0860e+04 | 800 | 1 | 3.835e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1058.3292698817536 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.474120726815457, dt = 0.011273068045762006 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (1.1%)
patch tree reduce : 1132.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 379.44 us (95.7%)
LB move op cnt : 0
LB apply : 3.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (72.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.295547542904954e-17,-1.6020773931311395e-17,1.0188229644799936e-17)
sum a = (-1.783614210677413e-16,1.165729986467935e-16,6.644442239902199e-17)
sum e = 4.144510900101348
sum de = -1.5585406229479126e-19
Info: CFL hydro = 0.011272254340902867 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011272254340902867 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1040e+04 | 800 | 1 | 3.802e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1067.3362352831996 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.48539379486122, dt = 0.011272254340902867 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (0.9%)
patch tree reduce : 921.00 ns (0.2%)
gen split merge : 622.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 366.11 us (96.4%)
LB move op cnt : 0
LB apply : 2.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.931050970711178e-17,-1.2854364423944877e-17,1.1367020696028625e-17)
sum a = (-6.308853758291287e-17,6.344801642953915e-17,6.590611686834157e-17)
sum e = 4.1445109002063205
sum de = -8.267041565201971e-19
Info: CFL hydro = 0.011271920195518962 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011271920195518962 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0578e+04 | 800 | 1 | 3.888e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.8230449556256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.496666049202123, dt = 0.0033339507978773497 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (0.8%)
patch tree reduce : 771.00 ns (0.2%)
gen split merge : 501.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 712.00 ns (0.2%)
LB compute : 400.99 us (96.7%)
LB move op cnt : 0
LB apply : 3.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.927306399392154e-17,-1.2204306842962346e-17,1.1861304110139766e-17)
sum a = (1.256558308382176e-16,-9.016328604798249e-17,-2.920690737412178e-17)
sum e = 4.144510830952791
sum de = -4.912791094074942e-19
Info: CFL hydro = 0.011272139346690009 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011272139346690009 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0830e+04 | 800 | 1 | 3.841e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 312.5076093840543 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 2370 [SPH][rank=0]
Info: time since start : 977.149798859 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15106672657280124 max=0.15125793053613032 delta=0.00019120396332908407
Number of particle pairs: 319600
Distance min=0.120444 max=2.266350 mean=0.931156
---------------- t = 21.5, dt = 0.011272139346690009 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.29 us (1.6%)
patch tree reduce : 1242.00 ns (0.2%)
gen split merge : 561.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 553.34 us (96.0%)
LB move op cnt : 0
LB apply : 4.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 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: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.1688312494691885e-17,-1.4531932374867536e-17,1.0309553755536306e-17)
sum a = (4.147187627245231e-17,5.5419655521552136e-17,1.9273907710426506e-16)
sum e = 4.144510899560391
sum de = 7.623296525288703e-19
Info: CFL hydro = 0.011272217078363454 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011272217078363454 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6507e+04 | 800 | 1 | 4.846e-02 | 0.0% | 1.1% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 837.3230788237771 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.51127213934669, dt = 0.011272217078363454 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (0.6%)
patch tree reduce : 1313.00 ns (0.2%)
gen split merge : 792.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.1%)
LB compute : 702.18 us (97.8%)
LB move op cnt : 0
LB apply : 3.11 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.102702119975228e-17,-1.2213293814128003e-17,1.4283292839284354e-17)
sum a = (6.869041627617246e-17,3.934196410619158e-17,8.424985902098012e-17)
sum e = 4.1445108992187185
sum de = -7.453889935837843e-20
Info: CFL hydro = 0.011273011132497904 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011273011132497904 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8535e+04 | 800 | 1 | 4.316e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 940.1692180744446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.522544356425055, dt = 0.011273011132497904 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (1.0%)
patch tree reduce : 1052.00 ns (0.3%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 396.49 us (96.0%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.182386597644055e-17,-1.25907466030856e-17,1.4512460604008613e-17)
sum a = (-1.176274699302306e-16,1.3550255557872258e-16,-2.0091871869354063e-17)
sum e = 4.144510898546165
sum de = 6.437450399132683e-20
Info: CFL hydro = 0.01127429982093213 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01127429982093213 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0840e+04 | 800 | 1 | 3.839e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1057.1784380855106 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.533817367557553, dt = 0.01127429982093213 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.45 us (1.1%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 395.58 us (95.8%)
LB move op cnt : 0
LB apply : 3.12 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.95029806729096e-17,-1.1437418636826272e-17,1.3784515939590387e-17)
sum a = (1.4469023576707937e-17,-4.246943007184025e-17,-1.3626345247074821e-16)
sum e = 4.144510897840128
sum de = -1.4230153513872246e-19
Info: CFL hydro = 0.011276076715729647 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011276076715729647 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0735e+04 | 800 | 1 | 3.858e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1051.9962682360433 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.545091667378486, dt = 0.011276076715729647 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 20.27 us (4.8%)
patch tree reduce : 1042.00 ns (0.2%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 387.22 us (92.3%)
LB move op cnt : 0
LB apply : 3.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.055445629929148e-17,-1.2494885577318591e-17,1.2394531065968754e-17)
sum a = (1.8293279373400554e-16,2.1296126005552115e-17,-1.0338012497560888e-17)
sum e = 4.144510897178374
sum de = 2.392021043046144e-18
Info: CFL hydro = 0.011277760668430923 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011277760668430923 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0981e+04 | 800 | 1 | 3.813e-02 | 0.1% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1064.6001961317377 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.556367744094217, dt = 0.011277760668430923 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (0.9%)
patch tree reduce : 1313.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 389.20 us (96.0%)
LB move op cnt : 0
LB apply : 3.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.58 us (75.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: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.3917830258038654e-17,-1.0904191680997284e-17,1.1518301377317187e-17)
sum a = (-2.0698941771594201e-16,-1.4904891678242304e-17,2.794948032519359e-17)
sum e = 4.1445108966355395
sum de = 9.75781955236954e-19
Info: CFL hydro = 0.011279931188642187 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011279931188642187 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0696e+04 | 800 | 1 | 3.865e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1050.316426576764 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.56764550476265, dt = 0.011279931188642187 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (0.9%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 418.91 us (96.0%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.888138183395165e-17,-1.2060515304311832e-17,1.2175848100937764e-17)
sum a = (-2.675177918880383e-17,3.289448631767003e-16,6.4885931816044284e-18)
sum e = 4.144510896288166
sum de = 4.811147140404426e-19
Info: CFL hydro = 0.011282584333054943 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011282584333054943 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0641e+04 | 800 | 1 | 3.876e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.7083350627163 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.57892543595129, dt = 0.011282584333054943 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (0.9%)
patch tree reduce : 1062.00 ns (0.2%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 427.55 us (96.5%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.945
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9930610717542114e-17,-6.596436835592313e-18,1.2057519647256612e-17)
sum a = (-2.5367223943594784e-17,-1.4861735493790555e-16,-2.4390639743593378e-17)
sum e = 4.144510896186492
sum de = 8.876905287225068e-19
Info: CFL hydro = 0.011285705233621601 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011285705233621601 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0635e+04 | 800 | 1 | 3.877e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.6922388553764 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.590208020284347, dt = 0.011285705233621601 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 us (1.1%)
patch tree reduce : 1022.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 378.63 us (95.9%)
LB move op cnt : 0
LB apply : 3.07 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.9450000000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.926557485128349e-17,-1.1677071201243795e-17,1.2304661354312184e-17)
sum a = (1.253562651326957e-16,-7.947553058922478e-17,-9.464478900259016e-17)
sum e = 4.144510896360027
sum de = -9.283481101907132e-19
Info: CFL hydro = 0.011289273233593076 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011289273233593076 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0967e+04 | 800 | 1 | 3.815e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1064.846165240131 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.60149372551797, dt = 0.011289273233593076 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (1.0%)
patch tree reduce : 1042.00 ns (0.3%)
gen split merge : 702.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 392.61 us (96.0%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.9450000000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.1783424606195093e-17,-1.1455392579157588e-17,1.1050978876703018e-17)
sum a = (-1.7465279763338014e-16,3.6460142019070867e-17,-5.1507327407436077e-17)
sum e = 4.144510896815616
sum de = 2.222614453595284e-18
Info: CFL hydro = 0.011293263208387338 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011293263208387338 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0483e+04 | 800 | 1 | 3.906e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.5491751927664 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.612782998751563, dt = 0.011293263208387338 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.71 us (1.1%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 1012.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 400.90 us (95.7%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.9450000000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.819013396845986e-17,-1.0532730206150124e-17,9.89465525338847e-18)
sum a = (1.3206653693638635e-16,-3.6463137676126085e-17,-7.629938519642881e-17)
sum e = 4.144510897538431
sum de = 1.1214716221646936e-18
Info: CFL hydro = 0.011297645526050486 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011297645526050486 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0495e+04 | 800 | 1 | 3.903e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.5420603020223 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.62407626195995, dt = 0.011297645526050486 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.93 us (0.8%)
patch tree reduce : 1142.00 ns (0.2%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 457.63 us (96.5%)
LB move op cnt : 0
LB apply : 3.46 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 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: 3.942500000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.143068598794305e-17,-1.0586652033144068e-17,8.639474947251695e-18)
sum a = (1.4229371012290412e-16,4.529133901785658e-17,-4.1058475598832084e-17)
sum e = 4.144510898493829
sum de = -3.3881317890172014e-19
Info: CFL hydro = 0.01130238632829192 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01130238632829192 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0321e+04 | 800 | 1 | 3.937e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1033.1124098437253 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.635373907486, dt = 0.01130238632829192 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (1.0%)
patch tree reduce : 1473.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 407.26 us (95.9%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.942500000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.288957097383472e-17,-9.490241550933901e-18,8.852166598172247e-18)
sum a = (2.528034988899343e-16,9.071149128908758e-17,-3.9962065116621916e-17)
sum e = 4.144510899630363
sum de = -6.437450399132683e-20
Info: CFL hydro = 0.011307447506556885 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011307447506556885 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0673e+04 | 800 | 1 | 3.870e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1051.454382635122 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.64667629381429, dt = 0.011307447506556885 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (1.1%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 403.59 us (95.7%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.942500000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.6491099668471804e-17,-8.564583520871219e-18,8.696392431300856e-18)
sum a = (-2.5283345546048648e-18,-1.2018576105538765e-17,6.045235937432011e-17)
sum e = 4.1445109008842556
sum de = -8.707498697774207e-19
Info: CFL hydro = 0.011312787249797257 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011312787249797257 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0731e+04 | 800 | 1 | 3.859e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1054.8640706893793 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.657983741320848, dt = 0.011312787249797257 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.65 us (1.1%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 409.61 us (95.8%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.9475000000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.486520680175167e-17,-9.163714931915026e-18,9.870689996946718e-18)
sum a = (-7.855811061606395e-17,1.1419145128789436e-16,2.5307310802490402e-17)
sum e = 4.144510902185028
sum de = 1.043544591017298e-18
Info: CFL hydro = 0.011318360771277626 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011318360771277626 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0773e+04 | 800 | 1 | 3.851e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1057.5111257672504 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.669296528570644, dt = 0.011318360771277626 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (1.0%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 394.78 us (96.0%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.946250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.3549364440246714e-17,-6.353788614119572e-18,1.0883222081610752e-17)
sum a = (1.2162367644189279e-17,1.586559889585105e-16,-8.312349196821777e-17)
sum e = 4.144510903460631
sum de = 1.6432439176733427e-19
Info: CFL hydro = 0.011317175332614423 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011317175332614423 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1044e+04 | 800 | 1 | 3.802e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1071.8012724538073 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.68061488934192, dt = 0.011317175332614423 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (1.0%)
patch tree reduce : 982.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.2%)
LB compute : 370.24 us (96.2%)
LB move op cnt : 0
LB apply : 3.00 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.946250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.4299776532579076e-17,-4.080084909208324e-18,9.720907144185767e-18)
sum a = (3.1909738952193156e-17,2.165260919512318e-17,-3.288033183808412e-17)
sum e = 4.144510904553293
sum de = 1.1180834903756764e-19
Info: CFL hydro = 0.011316141296028509 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011316141296028509 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0511e+04 | 800 | 1 | 3.900e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.5732014819841 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.691932064674535, dt = 0.011316141296028509 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (0.9%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.2%)
LB compute : 412.32 us (95.9%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.951250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.427431344760972e-17,-5.3682174429525094e-18,8.585553120257753e-18)
sum a = (8.148187190195774e-18,-6.821111114733741e-17,-1.0219983609585258e-16)
sum e = 4.144510905491221
sum de = 5.522654816098038e-19
Info: CFL hydro = 0.011315451424390223 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011315451424390223 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1007e+04 | 800 | 1 | 3.808e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1069.7199828244104 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.703248205970564, dt = 0.011315451424390223 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.98 us (1.0%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 401.53 us (96.1%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 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: 3.951250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.4771592518776074e-17,-6.758202316574141e-18,6.943933053997721e-18)
sum a = (1.5673277712905988e-16,-1.216116938136719e-16,5.388587910927999e-17)
sum e = 4.144510906233662
sum de = 2.286988957586611e-19
Info: CFL hydro = 0.011315095428907969 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011315095428907969 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0597e+04 | 800 | 1 | 3.884e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.7796747585458 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.714563657394955, dt = 0.011315095428907969 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.86 us (1.2%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 377.51 us (95.3%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.951250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.742874032675536e-17,-8.983975508601884e-18,8.151182847250992e-18)
sum a = (1.68715405349936e-17,-5.771432882584991e-17,-3.8572080243000287e-17)
sum e = 4.144510906751865
sum de = -2.0858186326137146e-19
Info: CFL hydro = 0.011315060493559632 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011315060493559632 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0791e+04 | 800 | 1 | 3.848e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1058.628856779324 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.725878752823863, dt = 0.011315060493559632 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.32 us (1.1%)
patch tree reduce : 1233.00 ns (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 380.70 us (95.5%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.951250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.5920426999452575e-17,-8.486696437435524e-18,7.498129609213243e-18)
sum a = (-7.287834483936867e-17,1.1521297034372406e-17,-2.158490734567523e-16)
sum e = 4.144510907036493
sum de = -2.242096211382133e-18
Info: CFL hydro = 0.011315331368589004 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011315331368589004 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0868e+04 | 800 | 1 | 3.834e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1062.5652515060733 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.737193813317422, dt = 0.011315331368589004 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.04 us (1.0%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 385.00 us (95.9%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 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: 3.951250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.527636073258048e-17,-8.073295763815298e-18,4.37365930061979e-18)
sum a = (-3.8116740370606994e-17,2.3408064229481533e-17,-7.69284731780248e-18)
sum e = 4.144510907095007
sum de = -8.504210790433175e-19
Info: CFL hydro = 0.011315891279172366 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011315891279172366 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0175e+04 | 800 | 1 | 3.965e-02 | 0.0% | 1.1% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1027.2768626248314 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.74850914468601, dt = 0.011315891279172366 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (1.0%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 384.58 us (95.9%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 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: 3.951250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.5023227711414477e-17,-8.585553120257753e-18,4.541416095712056e-18)
sum a = (-1.2967600260632156e-16,6.302263312769805e-17,-2.420371074334771e-16)
sum e = 4.144510906950296
sum de = -1.6008922703106276e-18
Info: CFL hydro = 0.01131672209566577 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01131672209566577 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1144e+04 | 800 | 1 | 3.784e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1076.6648073946333 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.759825035965182, dt = 0.01131672209566577 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (0.9%)
patch tree reduce : 1062.00 ns (0.2%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 417.50 us (96.0%)
LB move op cnt : 0
LB apply : 3.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.951250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.293974822950964e-17,-7.018824480378197e-18,6.830098085899398e-19)
sum a = (3.803286197306086e-17,7.219533503077872e-17,-1.1533279662593283e-16)
sum e = 4.144510906639302
sum de = 1.1722935989999517e-18
Info: CFL hydro = 0.011317495039307375 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011317495039307375 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0742e+04 | 800 | 1 | 3.857e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1056.278593810128 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.771141758060846, dt = 0.011317495039307375 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (0.9%)
patch tree reduce : 1362.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 412.70 us (96.0%)
LB move op cnt : 0
LB apply : 3.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.951250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.4299776532579076e-17,-6.491588838659647e-18,7.399272926391014e-19)
sum a = (1.339657835093952e-16,1.7057271272417182e-17,1.0424287420751196e-16)
sum e = 4.144510906205421
sum de = 1.1350241493207625e-18
Info: CFL hydro = 0.01131841210463222 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01131841210463222 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0886e+04 | 800 | 1 | 3.830e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1063.7115023886995 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.782459253100154, dt = 0.01131841210463222 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (1.0%)
patch tree reduce : 1002.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.2%)
LB compute : 378.05 us (95.9%)
LB move op cnt : 0
LB apply : 3.08 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.951250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.611514470804181e-17,-6.057218565652887e-18,2.863848144789397e-18)
sum a = (1.1973042118299435e-16,5.1441422952221256e-17,-4.858955743565274e-18)
sum e = 4.144510905705102
sum de = 1.0537089863843496e-18
Info: CFL hydro = 0.01131959155216068 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01131959155216068 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1109e+04 | 800 | 1 | 3.790e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1075.1336447488266 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.793777665204786, dt = 0.01131959155216068 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (0.9%)
patch tree reduce : 1142.00 ns (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 412.78 us (96.2%)
LB move op cnt : 0
LB apply : 3.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.951250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.796346511111196e-17,-6.212992732524277e-18,1.5217937840512694e-18)
sum a = (-7.133857711298609e-17,5.715713661357917e-17,2.0514259514139946e-17)
sum e = 4.144510905195577
sum de = -2.6495190590114515e-18
Info: CFL hydro = 0.011321018608680488 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011321018608680488 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0741e+04 | 800 | 1 | 3.857e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1056.4967336728835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.805097256756948, dt = 0.011321018608680488 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (0.9%)
patch tree reduce : 892.00 ns (0.2%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 398.17 us (96.4%)
LB move op cnt : 0
LB apply : 3.11 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 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: 3.951250000000001
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.5608878665709795e-17,-4.5953379227059984e-18,3.085526766875605e-18)
sum a = (1.2381649740631313e-16,-1.012591997805138e-16,1.531319973486866e-16)
sum e = 4.144510904730287
sum de = 1.548376227580861e-18
Info: CFL hydro = 0.011322677991969265 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011322677991969265 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0643e+04 | 800 | 1 | 3.875e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1051.651594734963 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.816418275365628, dt = 0.011322677991969265 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.34 us (1.0%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 405.11 us (96.1%)
LB move op cnt : 0
LB apply : 3.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.9512500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.813721322031466e-17,-6.8091284865128645e-18,5.053673452154511e-18)
sum a = (9.751462846149e-17,-6.688103941482016e-17,-6.397375424273009e-17)
sum e = 4.144510904358532
sum de = -1.9413995151068564e-18
Info: CFL hydro = 0.011324554391826685 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011324554391826685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0894e+04 | 800 | 1 | 3.829e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1064.5971264370887 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.827740953357598, dt = 0.011324554391826685 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (1.0%)
patch tree reduce : 1132.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1203.00 ns (0.3%)
LB compute : 366.40 us (95.7%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.9487500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.943732838227972e-17,-8.00439565154526e-18,3.4210403570601373e-18)
sum a = (5.0770395771852195e-17,1.4001701076093766e-17,4.6692791641142724e-17)
sum e = 4.144510904120702
sum de = 2.087089182034596e-18
Info: CFL hydro = 0.01132663222886996 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01132663222886996 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0981e+04 | 800 | 1 | 3.813e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1069.1905437187124 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.839065507749424, dt = 0.01132663222886996 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.05 us (1.1%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 369.30 us (95.8%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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: 3.9487500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.966200266142115e-17,-6.842080714120275e-18,5.595887379149156e-18)
sum a = (1.4504072764254e-16,-2.1041195590152976e-16,-3.4460540934712164e-17)
sum e = 4.144510904046707
sum de = 1.1926223897340549e-18
Info: CFL hydro = 0.011328656643858008 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011328656643858008 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0872e+04 | 800 | 1 | 3.833e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1063.854308287315 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.850392139978293, dt = 0.011328656643858008 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (1.0%)
patch tree reduce : 1062.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 397.27 us (95.9%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.9487500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.169305814485965e-17,-1.0224177529462564e-17,3.5348753251584605e-18)
sum a = (-3.823357099576053e-17,-1.2581759631919944e-17,2.0619107511072612e-17)
sum e = 4.1445109041508
sum de = 6.403569081242511e-19
Info: CFL hydro = 0.01132472822139702 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01132472822139702 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1032e+04 | 800 | 1 | 3.804e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1072.2100000904084 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.86172079662215, dt = 0.01132472822139702 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.2%)
patch tree reduce : 1062.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 383.66 us (95.9%)
LB move op cnt : 0
LB apply : 3.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 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: 3.9487500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.063259554731212e-17,-9.442311038050396e-18,3.903341142950402e-18)
sum a = (3.6205511169377246e-17,5.5180002957134615e-18,5.970344511051536e-18)
sum e = 4.144510904368052
sum de = 1.9922214919421144e-18
Info: CFL hydro = 0.0113186795583232 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0113186795583232 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0744e+04 | 800 | 1 | 3.856e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1057.1623390434765 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.873045524843548, dt = 0.0113186795583232 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.18 us (1.0%)
patch tree reduce : 1412.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 406.72 us (95.8%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.9487500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.071048263074781e-17,-9.30451081351032e-18,4.277798274852781e-18)
sum a = (-8.134931407726429e-17,-1.099630813544527e-16,1.8553302405793568e-16)
sum e = 4.144510904736648
sum de = 2.574980159653073e-19
Info: CFL hydro = 0.011312782860618547 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011312782860618547 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1133e+04 | 800 | 1 | 3.785e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1076.4059593745528 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.88436420440187, dt = 0.011312782860618547 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (0.9%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 682.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 395.91 us (96.1%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9487500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.914375399086826e-17,-1.0844278539892905e-17,6.988867909826006e-18)
sum a = (-1.5078340221739488e-16,-5.594389550621546e-19,6.17105353375121e-17)
sum e = 4.144510905266708
sum de = -1.3247595295057257e-18
Info: CFL hydro = 0.01130713487234535 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01130713487234535 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1627e+04 | 800 | 1 | 3.699e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1100.965405550824 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.895676987262487, dt = 0.01130713487234535 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (0.9%)
patch tree reduce : 862.00 ns (0.2%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 393.68 us (96.6%)
LB move op cnt : 0
LB apply : 2.73 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.9487500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.764892112031396e-17,-1.0802339341119838e-17,7.138650762586959e-18)
sum a = (-1.0775378427622866e-17,1.2243362721819765e-16,-2.3960463390463926e-16)
sum e = 4.144510905934265
sum de = -2.5444869735519182e-18
Info: CFL hydro = 0.011301828422297565 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011301828422297565 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0746e+04 | 800 | 1 | 3.856e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1055.5929481314208 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.906984122134833, dt = 0.011301828422297565 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.18 us (1.0%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 388.08 us (95.9%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 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: 3.9487500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.797245208227762e-17,-8.711370716576952e-18,2.899796029452025e-18)
sum a = (-7.48974176945863e-17,-1.7180804680231776e-16,6.412503492401864e-17)
sum e = 4.144510906710201
sum de = -2.1006417091906648e-19
Info: CFL hydro = 0.011296950865176103 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011296950865176103 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1013e+04 | 800 | 1 | 3.807e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1068.6585936881972 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.91828595055713, dt = 0.011296950865176103 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 us (0.9%)
patch tree reduce : 952.00 ns (0.2%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 408.39 us (96.2%)
LB move op cnt : 0
LB apply : 3.57 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.9487500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.697489828288968e-17,-1.2752512084067428e-17,4.6822119773073506e-18)
sum a = (5.7247006325235744e-18,8.249739964367699e-17,7.799492708968278e-17)
sum e = 4.144510907562209
sum de = 1.5585406229479126e-18
Info: CFL hydro = 0.011292582804782956 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011292582804782956 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1218e+04 | 800 | 1 | 3.770e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1078.626238878776 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.929582901422307, dt = 0.011292582804782956 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (0.9%)
patch tree reduce : 981.00 ns (0.2%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.1%)
LB compute : 404.04 us (96.3%)
LB move op cnt : 0
LB apply : 3.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.9487500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.799641733871937e-17,-9.595089547866567e-18,5.299317330682471e-18)
sum a = (-2.058585571775968e-16,-1.4421542412382715e-16,-5.4113549045476636e-17)
sum e = 4.144510908458321
sum de = -7.843525091574821e-19
Info: CFL hydro = 0.011288796026050487 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011288796026050487 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0832e+04 | 800 | 1 | 3.840e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1058.6060593137067 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.94087548422709, dt = 0.011288796026050487 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.48 us (0.9%)
patch tree reduce : 971.00 ns (0.2%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 388.43 us (96.3%)
LB move op cnt : 0
LB apply : 3.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9487500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.4209906820922506e-17,-1.2983177677319294e-17,4.520446496325523e-18)
sum a = (-2.6282996305375243e-16,8.84797267829494e-17,-1.1003647495230557e-16)
sum e = 4.144510909368946
sum de = -4.590918574118308e-19
Info: CFL hydro = 0.011285652795543635 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011285652795543635 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1019e+04 | 800 | 1 | 3.806e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1067.7567288021353 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.95216428025314, dt = 0.011285652795543635 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (1.0%)
patch tree reduce : 1042.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 371.65 us (96.1%)
LB move op cnt : 0
LB apply : 3.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.9487500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.086076223318763e-17,-1.0451847465659211e-17,3.8733845723982115e-18)
sum a = (-8.815320016393053e-17,-4.7909543284118015e-17,1.5280247507261251e-16)
sum e = 4.144510910267908
sum de = -1.8888834723770898e-19
Info: CFL hydro = 0.011283204644558042 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011283204644558042 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8648e+04 | 800 | 1 | 4.290e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 947.0228862970009 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.963449933048683, dt = 0.011283204644558042 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.32 us (1.1%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 384.80 us (95.8%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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: 3.9487500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.085477091907719e-17,-1.1859806281612157e-17,6.096162107370735e-18)
sum a = (2.4426587628256006e-17,1.332078822744248e-16,-6.565282002218035e-17)
sum e = 4.144510911134411
sum de = 4.557037256228136e-19
Info: CFL hydro = 0.011281491676765171 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011281491676765171 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0822e+04 | 800 | 1 | 3.842e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1057.23266844584 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.974733137693242, dt = 0.011281491676765171 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (1.0%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 642.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 386.04 us (96.0%)
LB move op cnt : 0
LB apply : 3.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.9487500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.1960168372453016e-17,-9.33446738406251e-18,4.277798274852781e-18)
sum a = (1.8795950627266308e-16,-3.296720589268547e-17,-1.1024017963206046e-18)
sum e = 4.144510911953018
sum de = -8.673617379884035e-19
Info: CFL hydro = 0.011280541957266845 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011280541957266845 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0488e+04 | 800 | 1 | 3.905e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.0858232995645 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.986014629370008, dt = 0.011280541957266845 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (1.0%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 692.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 416.04 us (96.3%)
LB move op cnt : 0
LB apply : 3.48 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 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: 3.9487500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.443757675711915e-17,-1.0754408828236333e-17,4.649259749699941e-18)
sum a = (5.992212807554634e-17,-3.917121165404409e-17,1.5820664040022764e-16)
sum e = 4.144510912714301
sum de = 2.176874674443552e-19
Info: CFL hydro = 0.01128037104020083 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01128037104020083 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9568e+04 | 800 | 1 | 4.088e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 993.298687921066 (tsim/hr) [sph::Model][rank=0]
---------------- t = 21.997295171327274, dt = 0.002704828672726478 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (1.1%)
patch tree reduce : 1032.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 377.17 us (95.8%)
LB move op cnt : 0
LB apply : 3.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 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: 3.9487500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.420691116386729e-17,-1.057766506197841e-17,6.5754672362057806e-18)
sum a = (6.242949303076468e-17,-9.001350319522154e-17,9.976736256701472e-17)
sum e = 4.144510847300441
sum de = 2.042196435830118e-18
Info: CFL hydro = 0.011280799290010211 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011280799290010211 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1018e+04 | 800 | 1 | 3.806e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 255.8307105210205 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 2415 [SPH][rank=0]
Info: time since start : 979.6996895320001 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15105556449871996 max=0.1512512982043275 delta=0.0001957337056075481
Number of particle pairs: 319600
Distance min=0.116052 max=2.267507 mean=0.931132
---------------- t = 22, dt = 0.011280799290010211 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.74 us (1.6%)
patch tree reduce : 1352.00 ns (0.2%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.1%)
LB compute : 591.09 us (96.3%)
LB move op cnt : 0
LB apply : 4.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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: 3.9487500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.5548965524605417e-17,-1.2024567419649204e-17,6.890011227003779e-18)
sum a = (6.665636513567873e-17,5.493435907860665e-17,2.2155879580399977e-17)
sum e = 4.1445109129312145
sum de = -1.4518144715938708e-18
Info: CFL hydro = 0.011281244307168575 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011281244307168575 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7927e+04 | 800 | 1 | 4.462e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 910.051466971644 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.01128079929001, dt = 0.011281244307168575 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.42 us (1.1%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 382.07 us (95.8%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.9487500000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.602527499638524e-17,-1.0086377304922488e-17,6.910980826390312e-18)
sum a = (-9.93240053228423e-17,1.1500926566396916e-16,8.524441716331283e-17)
sum e = 4.144510913899791
sum de = -1.4077687583366472e-18
Info: CFL hydro = 0.011282805813975973 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011282805813975973 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0764e+04 | 800 | 1 | 3.853e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1054.0853854055244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.022562043597176, dt = 0.011282805813975973 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (1.0%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 391.01 us (95.9%)
LB move op cnt : 0
LB apply : 3.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.334416193196421e-17,-8.061313135594422e-18,8.561587863816e-18)
sum a = (7.97144342393785e-17,-1.5277850981617074e-17,-1.2936445427257877e-16)
sum e = 4.144510914463639
sum de = -1.0503208545953324e-19
Info: CFL hydro = 0.011285108691738556 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011285108691738556 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0557e+04 | 800 | 1 | 3.892e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.7500483178007 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.033844849411153, dt = 0.011285108691738556 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (1.0%)
patch tree reduce : 1042.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 374.81 us (96.0%)
LB move op cnt : 0
LB apply : 3.06 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.544411752767275e-17,-1.0379951696333953e-17,5.52249378129629e-18)
sum a = (-8.247043873018001e-18,-7.440612993753037e-17,-8.79764563976726e-17)
sum e = 4.144510914995083
sum de = 1.8092623753351855e-18
Info: CFL hydro = 0.011288112895971557 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011288112895971557 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0266e+04 | 800 | 1 | 3.947e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1029.1783225471656 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.04512995810289, dt = 0.011288112895971557 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.97 us (0.6%)
patch tree reduce : 1102.00 ns (0.2%)
gen split merge : 671.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.1%)
LB compute : 662.33 us (97.7%)
LB move op cnt : 0
LB apply : 3.00 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (74.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.520146930620001e-17,-1.0559691119647097e-17,5.3217847585966146e-18)
sum a = (-1.8108746898799064e-18,6.441860931543012e-17,-4.409607185282418e-18)
sum e = 4.144510915492358
sum de = -4.607859233063394e-19
Info: CFL hydro = 0.011291768056976471 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011291768056976471 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9636e+04 | 800 | 1 | 4.074e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 997.4335288557942 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.056418070998863, dt = 0.011291768056976471 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (1.0%)
patch tree reduce : 1452.00 ns (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 418.63 us (96.2%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.4611324866321857e-17,-9.508215493265215e-18,5.249888989271358e-18)
sum a = (-5.333205701119637e-17,-9.339260435350862e-17,1.801588153008727e-17)
sum e = 4.144510915963709
sum de = -7.284483346386983e-19
Info: CFL hydro = 0.011296011913671133 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011296011913671133 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0657e+04 | 800 | 1 | 3.873e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1049.6371942924338 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.06770983905584, dt = 0.011296011913671133 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (0.9%)
patch tree reduce : 872.00 ns (0.2%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 389.42 us (96.3%)
LB move op cnt : 0
LB apply : 3.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.432374178902083e-17,-1.1191774758298312e-17,5.7426745748548884e-18)
sum a = (-1.1552526759173063e-16,5.798393796081963e-17,1.7867896071559453e-16)
sum e = 4.144510916416396
sum de = -1.4230153513872246e-19
Info: CFL hydro = 0.011300772226512941 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011300772226512941 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0712e+04 | 800 | 1 | 3.863e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1052.808628156928 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.079005850969512, dt = 0.011300772226512941 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (1.0%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 652.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 379.11 us (96.0%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.293076125834398e-17,-9.577115605535253e-18,9.698439716271623e-18)
sum a = (-4.911379742031607e-17,1.4675124782107005e-16,-2.345599474236504e-17)
sum e = 4.144510916855272
sum de = -1.3552527156068805e-20
Info: CFL hydro = 0.011305967690194357 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011305967690194357 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1110e+04 | 800 | 1 | 3.790e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1073.5258773817613 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.090306623196025, dt = 0.011305967690194357 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (0.9%)
patch tree reduce : 701.00 ns (0.2%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 631.00 ns (0.2%)
LB compute : 359.40 us (96.7%)
LB move op cnt : 0
LB apply : 2.58 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.2442469158343276e-17,-7.47716000982671e-18,7.075741964427359e-18)
sum a = (-1.3492439376706531e-17,-1.2967600260632156e-16,-1.1785513986642725e-16)
sum e = 4.144510917282382
sum de = -1.1316360175317453e-18
Info: CFL hydro = 0.011311509140754834 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011311509140754834 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0820e+04 | 800 | 1 | 3.842e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1059.2556370501954 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.10161259088622, dt = 0.011311509140754834 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (0.8%)
patch tree reduce : 971.00 ns (0.2%)
gen split merge : 541.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 551.00 ns (0.1%)
LB compute : 397.98 us (96.9%)
LB move op cnt : 0
LB apply : 2.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.230766459085842e-17,-1.0188229644799936e-17,5.300815159210081e-18)
sum a = (1.4482803599161942e-16,-7.087724592648235e-18,-1.5716415174501142e-16)
sum e = 4.14451091769798
sum de = 1.4907779871675686e-18
Info: CFL hydro = 0.01131730107561199 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01131730107561199 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0858e+04 | 800 | 1 | 3.835e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1061.7348378406346 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.112924100026973, dt = 0.01131730107561199 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (1.0%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 380.80 us (96.0%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.486296005896026e-17,-1.0784365398788523e-17,3.868891086815383e-18)
sum a = (-2.069399893745309e-17,-1.7287936865669048e-16,-4.96380374049794e-18)
sum e = 4.144510918099659
sum de = -5.149960319306146e-19
Info: CFL hydro = 0.011323243564404162 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011323243564404162 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1102e+04 | 800 | 1 | 3.791e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1074.6653193975596 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.124241401102584, dt = 0.011323243564404162 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (0.9%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 541.00 ns (0.1%)
LB compute : 370.63 us (96.6%)
LB move op cnt : 0
LB apply : 2.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.401518911233327e-17,-1.2548807404312535e-17,3.9258085708645446e-18)
sum a = (4.94343327252245e-17,5.511409850191979e-17,7.420916548614972e-17)
sum e = 4.144510918482743
sum de = -1.4568966692773966e-19
Info: CFL hydro = 0.011329233158635819 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011329233158635819 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0706e+04 | 800 | 1 | 3.864e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1055.061772535818 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.13556464466699, dt = 0.011329233158635819 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (0.9%)
patch tree reduce : 1032.00 ns (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 691.00 ns (0.2%)
LB compute : 366.63 us (96.3%)
LB move op cnt : 0
LB apply : 2.88 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.470419023503365e-17,-1.135354023928014e-17,5.4026674990875285e-18)
sum a = (-1.1073745870322682e-16,-6.640772560009556e-17,-1.3417585396039246e-16)
sum e = 4.144510918842391
sum de = -3.083199928005653e-19
Info: CFL hydro = 0.01133394445000479 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01133394445000479 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0672e+04 | 800 | 1 | 3.870e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1053.8910864952277 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.146893877825626, dt = 0.01133394445000479 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.31 us (1.0%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 404.22 us (95.8%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.258326503993857e-17,-1.293824282149101e-17,2.2107949067516474e-18)
sum a = (4.407210659638243e-17,4.9209658446083074e-17,4.043537893134652e-17)
sum e = 4.144510919158378
sum de = -1.9956096237311316e-18
Info: CFL hydro = 0.011330636444759136 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011330636444759136 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1011e+04 | 800 | 1 | 3.807e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1071.627136832532 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.15822782227563, dt = 0.011330636444759136 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (0.9%)
patch tree reduce : 681.00 ns (0.2%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 371.54 us (96.5%)
LB move op cnt : 0
LB apply : 3.08 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.416796762214944e-17,-1.0898200366886847e-17,4.154976335588801e-18)
sum a = (1.790204656198895e-16,-1.5589399315359855e-17,-1.6793653451557907e-17)
sum e = 4.144510919344375
sum de = 3.049318610115481e-19
Info: CFL hydro = 0.011327559542482008 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011327559542482008 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1066e+04 | 800 | 1 | 3.798e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1074.1302924998088 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.169558458720388, dt = 0.011327559542482008 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (0.9%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 369.45 us (95.9%)
LB move op cnt : 0
LB apply : 3.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.646563658350244e-17,-1.1835841025170405e-17,3.1559247076732527e-18)
sum a = (4.147187627245231e-17,1.9821813385826067e-16,-1.051954931510716e-16)
sum e = 4.144510919499667
sum de = 4.811147140404426e-19
Info: CFL hydro = 0.011324725483454515 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011324725483454515 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0747e+04 | 800 | 1 | 3.856e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1057.5362502412172 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.18088601826287, dt = 0.011324725483454515 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (1.1%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 397.41 us (95.6%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.658246720865598e-17,-8.555596549705562e-18,1.1907736794495661e-18)
sum a = (-3.941685553257205e-17,-3.0540723677958056e-18,-6.878028598782903e-18)
sum e = 4.144510919626083
sum de = 7.250602028496811e-19
Info: CFL hydro = 0.011322142107094115 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011322142107094115 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1260e+04 | 800 | 1 | 3.763e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1083.4559191090393 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.192210743746326, dt = 0.011322142107094115 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (0.9%)
patch tree reduce : 982.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.2%)
LB compute : 363.15 us (96.2%)
LB move op cnt : 0
LB apply : 3.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 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: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.521944324853132e-17,-9.175697560135902e-18,2.3680669021506467e-18)
sum a = (1.6628293182109815e-16,-1.4752113168426134e-16,9.196667159522436e-18)
sum e = 4.1445109197280185
sum de = -7.962109704190423e-20
Info: CFL hydro = 0.01131981327580437 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01131981327580437 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0819e+04 | 800 | 1 | 3.843e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1060.7359307200984 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.20353288585342, dt = 0.01131981327580437 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (0.8%)
patch tree reduce : 841.00 ns (0.2%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 463.20 us (96.9%)
LB move op cnt : 0
LB apply : 3.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.837387012767697e-17,-1.1739979999403396e-17,3.3087032174894235e-18)
sum a = (8.268013472404534e-18,1.0974065381810268e-16,-1.271177114811645e-16)
sum e = 4.1445109198128005
sum de = 2.574980159653073e-19
Info: CFL hydro = 0.011316564427102289 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011316564427102289 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0647e+04 | 800 | 1 | 3.875e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1051.751991202213 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.214852699129224, dt = 0.011316564427102289 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (1.0%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 422.11 us (95.9%)
LB move op cnt : 0
LB apply : 3.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 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: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.7217546504362416e-17,-8.939040652773599e-18,3.4450056135018895e-19)
sum a = (-6.387339973138025e-17,-9.324731498633048e-17,-3.317989754360602e-17)
sum e = 4.1445109198751435
sum de = 3.51836310465755e-19
Info: CFL hydro = 0.011309702711374027 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011309702711374027 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0463e+04 | 800 | 1 | 3.910e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1042.0649119088644 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.226169263556326, dt = 0.011309702711374027 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.05 us (1.2%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.3%)
LB compute : 404.25 us (95.5%)
LB move op cnt : 0
LB apply : 3.56 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.6447662641171124e-17,-1.1251687899402693e-17,4.268811303687124e-19)
sum a = (7.746769144796423e-18,1.0568528307959992e-16,-6.143493488843195e-17)
sum e = 4.144510919893134
sum de = 5.675120746603812e-20
Info: CFL hydro = 0.011303390196755823 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011303390196755823 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0249e+04 | 800 | 1 | 3.951e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1030.532276747927 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.237478966267698, dt = 0.011303390196755823 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.84 us (1.2%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 393.79 us (95.4%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 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: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.7376316328289024e-17,-9.025914707374951e-18,8.6874054601352e-20)
sum a = (5.7936007447936125e-18,-1.2824407853392685e-16,1.7410758804933027e-17)
sum e = 4.14451091992806
sum de = -1.3671111768684407e-18
Info: CFL hydro = 0.011297704497597013 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011297704497597013 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0457e+04 | 800 | 1 | 3.911e-02 | 0.1% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.5525975524265 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.248782356464453, dt = 0.011297704497597013 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.0%)
patch tree reduce : 1142.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 423.81 us (96.0%)
LB move op cnt : 0
LB apply : 3.48 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.672026743319606e-17,-1.113785293130437e-17,6.021270680990259e-19)
sum a = (2.223975797794611e-17,-1.846882487683639e-16,-9.693946230688795e-17)
sum e = 4.144510919993877
sum de = -3.5405977195229754e-19
Info: CFL hydro = 0.011292712989495243 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011292712989495243 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0506e+04 | 800 | 1 | 3.901e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1042.5269844898303 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.26008006096205, dt = 0.011292712989495243 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (1.0%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.2%)
LB compute : 391.94 us (95.7%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.767588203381093e-17,-1.4127518672412967e-17,-7.459186067495395e-19)
sum a = (8.886916220012787e-17,1.4435472217689483e-16,1.6311951797078685e-16)
sum e = 4.144510920102149
sum de = 1.1418004128987969e-18
Info: CFL hydro = 0.011288471680432004 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011288471680432004 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1040e+04 | 800 | 1 | 3.802e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1069.2060362485088 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.271372773951544, dt = 0.011288471680432004 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.10 us (0.9%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 431.58 us (96.2%)
LB move op cnt : 0
LB apply : 3.74 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (71.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.8616518349149705e-17,-1.054770849142622e-17,1.7135158355852876e-18)
sum a = (7.901345048845725e-17,-1.684158396444141e-17,-4.6480614868778534e-17)
sum e = 4.144510920262552
sum de = -1.5534584252643868e-18
Info: CFL hydro = 0.011285024580009361 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011285024580009361 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0473e+04 | 800 | 1 | 3.908e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1039.9993584101837 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.282661245631974, dt = 0.011285024580009361 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.1%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 395.83 us (95.5%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.9428341411114066e-17,-1.2788459968730058e-17,3.0855267668756055e-19)
sum a = (-2.0344106193403506e-16,5.636029183689091e-17,5.1663101574307467e-17)
sum e = 4.1445109204834285
sum de = 5.082197683525802e-20
Info: CFL hydro = 0.011282403240950386 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011282403240950386 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1021e+04 | 800 | 1 | 3.806e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1067.5149718223984 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.293946270211983, dt = 0.011282403240950386 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.11 us (1.0%)
patch tree reduce : 1072.00 ns (0.3%)
gen split merge : 1011.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 394.27 us (96.1%)
LB move op cnt : 0
LB apply : 3.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.5734696262029e-17,-1.0592643347254505e-17,1.569724296934774e-18)
sum a = (6.33940946025452e-17,1.616456546996191e-17,-3.300015812029288e-17)
sum e = 4.144510920769346
sum de = -3.5236570605778894e-19
Info: CFL hydro = 0.011280626454078789 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011280626454078789 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0989e+04 | 800 | 1 | 3.812e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1065.628660905992 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.305228673452934, dt = 0.011280626454078789 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.2%)
patch tree reduce : 1323.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1243.00 ns (0.3%)
LB compute : 398.79 us (95.5%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 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: 3.9487499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.808329139332072e-17,-1.091617430921816e-17,4.553398723932932e-19)
sum a = (8.109992562741731e-17,-1.3935197489467903e-16,5.121375301602461e-17)
sum e = 4.144510921121885
sum de = 7.792703114739563e-20
Info: CFL hydro = 0.011279700249059074 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011279700249059074 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0433e+04 | 800 | 1 | 3.915e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1037.2620243718936 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.31650929990701, dt = 0.011279700249059074 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.2%)
patch tree reduce : 1313.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.2%)
LB compute : 418.87 us (95.7%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (72.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.9317502100070964e-17,-1.2464929006766402e-17,1.1173800815966999e-18)
sum a = (8.132684664935014e-17,-9.476461528479893e-17,1.2905290593883599e-17)
sum e = 4.144510921538819
sum de = 1.3891340334970526e-18
Info: CFL hydro = 0.011279617823625033 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011279617823625033 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0321e+04 | 800 | 1 | 3.937e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1031.4550562050415 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.32778900015607, dt = 0.011279617823625033 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.97 us (1.1%)
patch tree reduce : 1423.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 420.73 us (95.7%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (73.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.9901655225838673e-17,-1.389086176505066e-17,2.195816621475552e-18)
sum a = (-9.194944656715684e-17,5.376006151296079e-17,-1.064057386013801e-17)
sum e = 4.144510922015749
sum de = -2.0328790734103208e-20
Info: CFL hydro = 0.01128035986797904 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01128035986797904 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1179e+04 | 800 | 1 | 3.777e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1074.9937070193478 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.339068617979695, dt = 0.01128035986797904 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.04 us (0.9%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.2%)
LB compute : 409.71 us (96.1%)
LB move op cnt : 0
LB apply : 3.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.764892112031396e-17,-1.2797446939895715e-17,9.316493441731197e-19)
sum a = (-5.4384656008973955e-17,1.5918921591433949e-16,8.489692094490743e-18)
sum e = 4.144510922545097
sum de = -7.115076756936123e-20
Info: CFL hydro = 0.011281895167911475 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011281895167911475 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1068e+04 | 800 | 1 | 3.797e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1069.4676598726387 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.350348977847673, dt = 0.011281895167911475 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 us (1.0%)
patch tree reduce : 801.00 ns (0.2%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 392.95 us (96.1%)
LB move op cnt : 0
LB apply : 3.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.758002100804392e-17,-9.714915830075328e-18,1.3809979024559747e-18)
sum a = (-9.58760040522852e-17,1.375665632897685e-16,1.7224428936098404e-16)
sum e = 4.144510923117129
sum de = -1.7042302898756523e-18
Info: CFL hydro = 0.011284180386190903 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011284180386190903 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0973e+04 | 800 | 1 | 3.815e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1064.7446930701428 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.361630873015585, dt = 0.011284180386190903 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.10 us (1.0%)
patch tree reduce : 1594.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1051.00 ns (0.2%)
LB compute : 408.86 us (95.9%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.5875492143624293e-17,-9.30750647056554e-18,4.610316207982094e-18)
sum a = (-4.920067147491742e-17,1.4127518672412967e-17,-1.3261174652043622e-16)
sum e = 4.144510923720971
sum de = 1.8634724839594607e-19
Info: CFL hydro = 0.011287161847891927 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011287161847891927 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1120e+04 | 800 | 1 | 3.788e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1072.4629117993256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.372915053401776, dt = 0.011287161847891927 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (1.2%)
patch tree reduce : 1362.00 ns (0.3%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 691.00 ns (0.2%)
LB compute : 385.03 us (95.7%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.6240962304361016e-17,-1.0200212273020811e-17,5.21244327608112e-19)
sum a = (-4.69778939399449e-17,-4.807430442215506e-17,3.2884825323666948e-18)
sum e = 4.144510924346014
sum de = -2.188733135705112e-18
Info: CFL hydro = 0.011290776511482865 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011290776511482865 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0798e+04 | 800 | 1 | 3.846e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1056.394150123343 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.38420221524967, dt = 0.011290776511482865 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (1.1%)
patch tree reduce : 1402.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 396.38 us (95.7%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.6010296711109146e-17,-9.855711711670622e-18,2.3426038171812847e-18)
sum a = (-2.363992808555549e-16,6.892407752647955e-17,-8.35625429553733e-17)
sum e = 4.144510924981767
sum de = 4.54009659728305e-19
Info: CFL hydro = 0.01129495294272035 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01129495294272035 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0945e+04 | 800 | 1 | 3.819e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1064.1923089075262 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.395492991761152, dt = 0.01129495294272035 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (1.1%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1203.00 ns (0.3%)
LB compute : 418.85 us (95.9%)
LB move op cnt : 0
LB apply : 3.48 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (74.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.1807389862636843e-17,-9.592093890811348e-18,5.841531257677117e-19)
sum a = (4.146588495834187e-17,7.088922855470323e-17,1.307379630323967e-16)
sum e = 4.144510925618187
sum de = 7.487771253728015e-19
Info: CFL hydro = 0.011299612748481949 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011299612748481949 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0859e+04 | 800 | 1 | 3.835e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1060.2248001384555 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.406787944703872, dt = 0.011299612748481949 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.08 us (0.9%)
patch tree reduce : 1412.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 413.65 us (95.9%)
LB move op cnt : 0
LB apply : 3.61 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.396126728533933e-17,-8.202109017189716e-18,2.4744127276109223e-18)
sum a = (-3.458186504544853e-17,-8.070300106760079e-18,1.0122325189585116e-17)
sum e = 4.144510926246429
sum de = -2.456395547037471e-18
Info: CFL hydro = 0.011303279121448694 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011303279121448694 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1237e+04 | 800 | 1 | 3.767e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1079.857334344394 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.418087557452353, dt = 0.011303279121448694 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (0.8%)
patch tree reduce : 701.00 ns (0.2%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.1%)
LB compute : 402.59 us (96.9%)
LB move op cnt : 0
LB apply : 2.83 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.308653542521537e-17,-8.849170941117027e-18,2.6841087214762547e-18)
sum a = (-2.0705981565673966e-16,-5.172900602952229e-17,-4.187628997490688e-17)
sum e = 4.144510926841862
sum de = -3.4558944247975454e-19
Info: CFL hydro = 0.011301798329267334 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011301798329267334 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0414e+04 | 800 | 1 | 3.919e-02 | 0.0% | 1.7% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1038.348281301445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.429390836573802, dt = 0.011301798329267334 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.3%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 381.63 us (95.2%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.004594351416805e-17,-9.726898458296204e-18,1.7075245214748495e-18)
sum a = (4.18792856319621e-17,5.902642661603586e-17,7.663489878661333e-17)
sum e = 4.144510927349241
sum de = 5.72594272343907e-19
Info: CFL hydro = 0.011300789582135236 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011300789582135236 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1137e+04 | 800 | 1 | 3.785e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1074.9903082734452 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.44069263490307, dt = 0.011300789582135236 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (0.9%)
patch tree reduce : 962.00 ns (0.2%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 404.44 us (96.4%)
LB move op cnt : 0
LB apply : 3.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.155575466999844e-17,-8.160169818416649e-18,3.750562633134231e-18)
sum a = (1.7806185536221938e-17,2.6901000355866926e-18,-8.900097111055751e-17)
sum e = 4.144510927830892
sum de = -2.8070671872007513e-18
Info: CFL hydro = 0.01130026865647413 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01130026865647413 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1081e+04 | 800 | 1 | 3.795e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1072.0342023446724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.451993424485206, dt = 0.01130026865647413 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.2%)
patch tree reduce : 1282.00 ns (0.3%)
gen split merge : 1071.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 398.32 us (95.6%)
LB move op cnt : 0
LB apply : 3.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.1768446320919e-17,-8.306957014122382e-18,7.249490073630063e-19)
sum a = (2.1435723624325322e-16,1.6386244092048118e-17,1.7374810920270397e-18)
sum e = 4.144510928284496
sum de = 2.8663594935085523e-18
Info: CFL hydro = 0.011300245576873815 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011300245576873815 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0268e+04 | 800 | 1 | 3.947e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1030.6412169695163 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.46329369314168, dt = 0.011300245576873815 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.4%)
patch tree reduce : 1463.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 398.84 us (95.3%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.94875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.5372221758347494e-17,-8.525639979153371e-18,2.708073977918007e-18)
sum a = (5.0950135195165335e-17,-4.110640611171559e-17,7.922913779643301e-17)
sum e = 4.144510928707887
sum de = 1.9498698445793994e-18
Info: CFL hydro = 0.0113007240676717 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0113007240676717 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1190e+04 | 800 | 1 | 3.775e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1077.5374681605122 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.474593938718552, dt = 0.0113007240676717 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (1.0%)
patch tree reduce : 681.00 ns (0.2%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 365.13 us (96.2%)
LB move op cnt : 0
LB apply : 2.99 us (0.8%)
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: 3.9499999999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.5150543136261284e-17,-9.30750647056554e-18,2.9207656288385586e-18)
sum a = (9.378803108479753e-17,1.2983177677319294e-17,-4.9404376154672316e-17)
sum e = 4.144510929098705
sum de = 7.532240483458866e-19
Info: CFL hydro = 0.011300352169058381 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011300352169058381 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1444e+04 | 800 | 1 | 3.731e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1090.4905384862907 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.485894662786222, dt = 0.011300352169058381 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.63 us (0.9%)
patch tree reduce : 601.00 ns (0.2%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 381.07 us (96.3%)
LB move op cnt : 0
LB apply : 3.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.9499999999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.630986241663105e-17,-8.393831068723734e-18,2.537321525770522e-18)
sum a = (1.338699224836282e-16,9.684360128112094e-17,-3.385092472397509e-17)
sum e = 4.144510929440013
sum de = -7.394597629530042e-19
Info: CFL hydro = 0.011298966125557376 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011298966125557376 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0558e+04 | 800 | 1 | 3.891e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1045.4130388292585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.49719501495528, dt = 0.002804985044718933 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.93 us (1.3%)
patch tree reduce : 1413.00 ns (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 372.37 us (95.3%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9499999999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.69629156546688e-17,-8.043339193263108e-18,1.7225028067509448e-18)
sum a = (1.4028062858179693e-16,-6.130312597800232e-17,-3.458186504544853e-17)
sum e = 4.144510866178611
sum de = -6.212986668110293e-19
Info: CFL hydro = 0.011299078704673775 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011299078704673775 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0618e+04 | 800 | 1 | 3.880e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 260.24660522982896 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 2460 [SPH][rank=0]
Info: time since start : 982.399789077 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15107893589682486 max=0.15125164542599312 delta=0.00017270952916825788
Number of particle pairs: 319600
Distance min=0.118328 max=2.269528 mean=0.931083
---------------- t = 22.5, dt = 0.011299078704673775 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.06 us (1.6%)
patch tree reduce : 1763.00 ns (0.3%)
gen split merge : 601.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.1%)
LB compute : 591.76 us (95.1%)
LB move op cnt : 0
LB apply : 10.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (79.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9499999999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.851466600927226e-17,-8.705379402466513e-18,1.5217937840512694e-18)
sum a = (-1.1814871425783872e-17,1.9261475733647347e-16,1.8520350178186158e-16)
sum e = 4.144510929311223
sum de = -8.893845946170154e-20
Info: CFL hydro = 0.011298300330026833 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011298300330026833 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7499e+04 | 800 | 1 | 4.572e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 889.7268100926167 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.511299078704674, dt = 0.011298300330026833 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.3%)
patch tree reduce : 1422.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1253.00 ns (0.3%)
LB compute : 389.45 us (95.3%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.955
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.769385597614225e-17,-4.733138147246074e-18,5.0386951668784155e-18)
sum a = (5.4796558854066575e-17,1.9304014063831457e-17,-1.5589399315359855e-17)
sum e = 4.144510929816007
sum de = 5.836057006582129e-19
Info: CFL hydro = 0.011298641770234813 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011298641770234813 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0452e+04 | 800 | 1 | 3.912e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1039.8099057124443 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.5225973790347, dt = 0.011298641770234813 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.3%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 405.16 us (95.4%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 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: 3.955
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.8402328869701545e-17,-5.622848292646128e-18,3.867393258287773e-18)
sum a = (-4.014180453993506e-18,1.1023718397500524e-16,2.1106201348251228e-16)
sum e = 4.144510930011001
sum de = 5.336307567702092e-19
Info: CFL hydro = 0.011299781549014069 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011299781549014069 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0490e+04 | 800 | 1 | 3.904e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.7910462213663 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.533896020804935, dt = 0.011299781549014069 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (1.1%)
patch tree reduce : 1223.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 392.66 us (95.9%)
LB move op cnt : 0
LB apply : 3.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.955
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.816117847675641e-17,-3.0615615104338532e-18,8.278498272097802e-18)
sum a = (-4.3652714608651765e-17,-1.0748791971257798e-16,8.452545947006027e-17)
sum e = 4.144510930181682
sum de = -1.4433441421213278e-18
Info: CFL hydro = 0.0113017157438915 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0113017157438915 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0524e+04 | 800 | 1 | 3.898e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.611076407652 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.54519580235395, dt = 0.0113017157438915 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (1.0%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 400.70 us (96.0%)
LB move op cnt : 0
LB apply : 3.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 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: 3.955
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.733138147246074e-17,-6.23396233191081e-18,7.945980338968488e-18)
sum a = (1.4806933692536643e-16,5.0953130852220553e-17,-2.887813401231149e-18)
sum e = 4.144510930317606
sum de = -1.4585907351719052e-18
Info: CFL hydro = 0.01130443034150581 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01130443034150581 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0749e+04 | 800 | 1 | 3.856e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1055.2281842067111 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.55649751809784, dt = 0.01130443034150581 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.46 us (1.1%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 402.37 us (95.7%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.955
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.070149565958216e-17,-5.4850480681060514e-18,7.029309280071465e-18)
sum a = (1.0131312160750774e-16,-1.3696593405019708e-16,-1.9795301820887378e-17)
sum e = 4.144510930421293
sum de = 3.049318610115481e-20
Info: CFL hydro = 0.011307897956620502 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011307897956620502 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0522e+04 | 800 | 1 | 3.898e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.9528725958005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.567801948439346, dt = 0.011307897956620502 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.79 us (1.1%)
patch tree reduce : 1322.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 401.96 us (95.7%)
LB move op cnt : 0
LB apply : 3.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.955
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.119278341663808e-17,-8.31294832823282e-18,7.129663791421302e-18)
sum a = (-1.2660245846766683e-16,-5.612363492952861e-18,-5.908034844302979e-17)
sum e = 4.144510930498035
sum de = -1.2434443665693129e-18
Info: CFL hydro = 0.011311760389585528 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011311760389585528 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0577e+04 | 800 | 1 | 3.888e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.091362041644 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.579109846395966, dt = 0.011311760389585528 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.23 us (1.1%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 374.31 us (95.6%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.804734350865809e-17,-7.38429464111492e-18,5.907435712891936e-18)
sum a = (-6.48260186749399e-17,1.3783018111062776e-17,6.579062024672043e-17)
sum e = 4.144510930551707
sum de = -1.7923217163900995e-18
Info: CFL hydro = 0.011310627268779953 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011310627268779953 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0593e+04 | 800 | 1 | 3.885e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.2596067338961 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.59042160678555, dt = 0.011310627268779953 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (1.0%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 399.59 us (95.7%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.786460842828973e-17,-7.222529160133092e-18,7.313896700317273e-18)
sum a = (2.388736935831658e-17,1.3720408878608698e-16,1.1080935447255208e-16)
sum e = 4.144510930531803
sum de = 1.3078188705606397e-18
Info: CFL hydro = 0.01131038495122236 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01131038495122236 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0415e+04 | 800 | 1 | 3.919e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1039.0681631999805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.60173223405433, dt = 0.01131038495122236 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.2%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 400.82 us (95.4%)
LB move op cnt : 0
LB apply : 4.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.826153298810625e-17,-4.855960086510055e-18,8.912079739276628e-18)
sum a = (8.882123168724437e-17,5.3577326432592427e-17,-5.961956671296921e-17)
sum e = 4.144510930521815
sum de = -6.844026213814747e-19
Info: CFL hydro = 0.011311045249854351 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011311045249854351 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1526e+04 | 800 | 1 | 3.717e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1095.5799584680863 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.613042619005554, dt = 0.011311045249854351 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.32 us (1.0%)
patch tree reduce : 20.14 us (4.6%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1502.00 ns (0.3%)
LB compute : 398.66 us (91.6%)
LB move op cnt : 0
LB apply : 3.48 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (5.041091692522591e-17,-4.538420438656837e-18,7.478657838354318e-18)
sum a = (-1.2897801451245553e-16,1.094912653682557e-16,-4.7684869004976587e-17)
sum e = 4.144510930540785
sum de = 1.5585406229479126e-19
Info: CFL hydro = 0.011312608689320179 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011312608689320179 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0381e+04 | 800 | 1 | 3.925e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1037.366767193382 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.62435366425541, dt = 0.011312608689320179 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.45 us (1.0%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 423.01 us (96.0%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.7403277241786e-17,-3.1154833374277957e-18,7.04129190829234e-18)
sum a = (-1.0392233890260352e-16,-1.6703783739901334e-17,-7.454992147618089e-17)
sum e = 4.144510930609181
sum de = -8.131516293641283e-20
Info: CFL hydro = 0.011315063699170883 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011315063699170883 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0505e+04 | 800 | 1 | 3.901e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.841974161427 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.63566627294473, dt = 0.011315063699170883 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.76 us (1.1%)
patch tree reduce : 1342.00 ns (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.3%)
LB compute : 426.40 us (95.7%)
LB move op cnt : 0
LB apply : 3.58 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.657497806601794e-17,-3.9992021687174105e-18,6.207001418413839e-18)
sum a = (-1.7068654769227013e-16,1.436117992272005e-17,2.285072223435803e-16)
sum e = 4.144510930748688
sum de = -2.676624113323589e-19
Info: CFL hydro = 0.011318239592504806 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011318239592504806 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0455e+04 | 800 | 1 | 3.911e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.536747625749 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.6469813366439, dt = 0.011318239592504806 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.1%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 423.68 us (95.7%)
LB move op cnt : 0
LB apply : 4.20 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (73.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.4056379396842535e-17,-3.849419315956459e-18,9.631037432529195e-18)
sum a = (-6.326303460637937e-17,1.2750115558423255e-16,-3.7540825301741134e-17)
sum e = 4.144510930979767
sum de = -6.810144895924575e-19
Info: CFL hydro = 0.011321941770818253 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011321941770818253 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9184e+04 | 800 | 1 | 4.170e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 977.0879897255827 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.658299576236406, dt = 0.011321941770818253 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.2%)
patch tree reduce : 1362.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 415.79 us (95.7%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (73.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.4438325671382957e-17,-1.8303464607388298e-18,8.954018938049693e-18)
sum a = (-4.456938566754879e-17,-2.5265371603717335e-17,-5.586301276572455e-17)
sum e = 4.144510931321211
sum de = 9.317362419797304e-20
Info: CFL hydro = 0.011326472407900873 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011326472407900873 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0263e+04 | 800 | 1 | 3.948e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1032.374986701022 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.669621518007222, dt = 0.011326472407900873 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.3%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 405.10 us (95.4%)
LB move op cnt : 0
LB apply : 3.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.39410466002166e-17,-2.3306211889604085e-18,7.803686628845585e-18)
sum a = (-7.290979923844847e-17,3.077738058532036e-17,5.827451669517587e-17)
sum e = 4.14451093179373
sum de = 2.0328790734103208e-20
Info: CFL hydro = 0.01133177248298211 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01133177248298211 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0527e+04 | 800 | 1 | 3.897e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1046.2523163879378 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.680947990415124, dt = 0.01133177248298211 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.3%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 385.78 us (95.4%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.317640513687194e-17,-9.73588542946186e-19,8.543613921484686e-18)
sum a = (-8.891409705595615e-17,4.305358319760796e-17,-2.800939346629797e-17)
sum e = 4.144510932408747
sum de = 1.0757318430129614e-18
Info: CFL hydro = 0.011336056589469833 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011336056589469833 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0649e+04 | 800 | 1 | 3.874e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1052.9608482007902 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.692279762898107, dt = 0.011336056589469833 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 us (1.1%)
patch tree reduce : 1313.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.3%)
LB compute : 382.79 us (95.7%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.2446962643926103e-17,-5.362226128842071e-19,8.005893480072869e-18)
sum a = (8.414800668110268e-18,4.676220663196912e-17,5.0680526060195625e-17)
sum e = 4.144510933150953
sum de = -1.2425973336220586e-18
Info: CFL hydro = 0.011334177869755747 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011334177869755747 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0800e+04 | 800 | 1 | 3.846e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1061.059875267311 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.703615819487577, dt = 0.011334177869755747 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.3%)
patch tree reduce : 1522.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 387.37 us (95.5%)
LB move op cnt : 0
LB apply : 3.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.26821217227608e-17,3.385092472397509e-19,9.454293666271273e-18)
sum a = (1.7562938183338154e-16,-1.894872913708248e-16,1.326596770333197e-16)
sum e = 4.1445109339571795
sum de = 3.333074647445672e-19
Info: CFL hydro = 0.011332585779229796 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011332585779229796 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0388e+04 | 800 | 1 | 3.924e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1039.8431404205483 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.714949997357333, dt = 0.011332585779229796 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.28 us (1.0%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 1072.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 390.66 us (95.5%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.5249399819083514e-17,-3.756553947244669e-18,1.1468873035906073e-17)
sum a = (9.983326702222954e-17,-1.1360130684801622e-16,-1.2761499055233085e-17)
sum e = 4.144510934885731
sum de = 2.9789089963749675e-19
Info: CFL hydro = 0.011331193353491075 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011331193353491075 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0913e+04 | 800 | 1 | 3.825e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1066.5096216160434 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.726282583136562, dt = 0.011331193353491075 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.1%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 412.11 us (95.9%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.578562243196772e-17,-5.146538820866301e-18,1.0348497297254154e-17)
sum a = (1.6264620415606224e-16,3.272455767121273e-17,1.0924562148972774e-16)
sum e = 4.144510935913727
sum de = -9.546061315555965e-19
Info: CFL hydro = 0.011329784467197495 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011329784467197495 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0337e+04 | 800 | 1 | 3.934e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1037.013240318927 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.737613776490054, dt = 0.011329784467197495 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.74 us (1.1%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 1083.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 397.22 us (95.6%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.802936956632678e-17,-4.071097938042667e-18,1.2100956674557289e-17)
sum a = (2.4144995865065416e-18,1.175795394173471e-16,7.744372619152247e-17)
sum e = 4.144510937007281
sum de = 1.3586408473958977e-18
Info: CFL hydro = 0.011328524060871805 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011328524060871805 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0546e+04 | 800 | 1 | 3.894e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.511247500299 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.74894356095725, dt = 0.011328524060871805 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.4%)
patch tree reduce : 1844.00 ns (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1223.00 ns (0.3%)
LB compute : 392.00 us (95.2%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.7440722954976235e-17,-1.833342117794049e-18,1.287233836627619e-17)
sum a = (5.7516615460205454e-18,9.241602015350721e-18,7.290231009581041e-17)
sum e = 4.144510938128941
sum de = -1.2197274440461925e-19
Info: CFL hydro = 0.011327393897122867 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011327393897122867 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0436e+04 | 800 | 1 | 3.915e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.807516060188 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.760272085018123, dt = 0.011327393897122867 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.91 us (1.2%)
patch tree reduce : 1403.00 ns (0.3%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 405.83 us (95.5%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.765940592000723e-17,-1.9531684000028104e-18,1.3973242334069186e-17)
sum a = (-1.2588350077441427e-16,5.91911877540729e-17,-6.647962136942081e-17)
sum e = 4.1445109392346495
sum de = 1.4823076576950256e-18
Info: CFL hydro = 0.011326376803465868 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011326376803465868 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0133e+04 | 800 | 1 | 3.974e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1026.2314459759498 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.771599478915245, dt = 0.011326376803465868 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.1%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.2%)
LB compute : 430.47 us (95.7%)
LB move op cnt : 0
LB apply : 4.14 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.5525000268163667e-17,-5.2723564171855e-19,1.1844827996336062e-17)
sum a = (1.865275822002684e-16,1.1563236233145473e-16,8.898299716822619e-17)
sum e = 4.1445109402770965
sum de = -7.962109704190423e-20
Info: CFL hydro = 0.011325457014092556 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011325457014092556 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0284e+04 | 800 | 1 | 3.944e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1033.865790017111 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.782925855718712, dt = 0.011325457014092556 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.2%)
patch tree reduce : 1473.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 402.94 us (95.5%)
LB move op cnt : 0
LB apply : 3.59 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.927106941571507e-17,1.0185233987744717e-19,1.380099205339409e-17)
sum a = (-2.647322052838165e-16,5.711669524333372e-17,-1.0101355590198584e-16)
sum e = 4.144510941209355
sum de = -4.37069000783219e-19
Info: CFL hydro = 0.011324620436099081 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011324620436099081 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0361e+04 | 800 | 1 | 3.929e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1037.6772942319762 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.794251312732804, dt = 0.011324620436099081 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (1.2%)
patch tree reduce : 1734.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 394.64 us (95.5%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.333068147521572e-17,9.406363153387767e-19,1.1080935447255208e-17)
sum a = (-1.2312150496950232e-17,5.299317330682472e-17,-1.5485150449838232e-16)
sum e = 4.144510941987971
sum de = -7.233661369551725e-19
Info: CFL hydro = 0.011323855025543126 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011323855025543126 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0483e+04 | 800 | 1 | 3.906e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.8350008955388 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.805575933168903, dt = 0.011323855025543126 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.2%)
patch tree reduce : 1412.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.2%)
LB compute : 439.28 us (95.9%)
LB move op cnt : 0
LB apply : 3.42 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.4990275483807067e-17,1.5217937840512694e-18,9.70892451596489e-18)
sum a = (-9.345251749461299e-17,-3.323307045633616e-17,-6.996656618169576e-17)
sum e = 4.144510942576059
sum de = -7.267542687441897e-19
Info: CFL hydro = 0.011323151108050098 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011323151108050098 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0649e+04 | 800 | 1 | 3.874e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1052.2324823831386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.816899788194448, dt = 0.011323151108050098 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.0%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 392.36 us (95.7%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.336213587429552e-17,-9.286536871179006e-20,9.133758361362835e-18)
sum a = (-4.033352659146908e-17,1.4678232776301795e-16,5.897849610315235e-17)
sum e = 4.144510942947297
sum de = -1.060485249962384e-18
Info: CFL hydro = 0.011322501574355234 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011322501574355234 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0577e+04 | 800 | 1 | 3.888e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.488027047855 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.8282229393025, dt = 0.011322501574355234 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.92 us (1.3%)
patch tree reduce : 1352.00 ns (0.3%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 375.30 us (95.4%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.3294733590553093e-17,3.118478994483015e-18,1.098207876443298e-17)
sum a = (-1.3503223742105318e-16,2.6915978641143024e-18,-4.7810686601295785e-17)
sum e = 4.144510943086767
sum de = -1.229891839413244e-18
Info: CFL hydro = 0.011321902226385053 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011321902226385053 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0877e+04 | 800 | 1 | 3.832e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1063.7224117227784 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.839545440876854, dt = 0.011321902226385053 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.87 us (1.0%)
patch tree reduce : 781.00 ns (0.2%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 372.81 us (96.2%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.1579719926440197e-17,1.4079588159529462e-18,9.34045869817295e-18)
sum a = (-1.2478109897809366e-16,7.113487243323119e-17,-9.92760748099588e-17)
sum e = 4.144510942995038
sum de = -4.0488174878755556e-19
Info: CFL hydro = 0.01132056043386344 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01132056043386344 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0810e+04 | 800 | 1 | 3.844e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1060.2349068066244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.85086734310324, dt = 0.01132056043386344 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.2%)
patch tree reduce : 1844.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.3%)
LB compute : 397.86 us (95.4%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.923861393778652e-17,2.8039350036850162e-18,7.833643199397775e-18)
sum a = (-2.2194823122117826e-17,1.3337563906951707e-16,3.1154833374277954e-17)
sum e = 4.144510942678442
sum de = -1.2027867851011065e-19
Info: CFL hydro = 0.011316497027214848 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011316497027214848 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0375e+04 | 800 | 1 | 3.926e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1037.966274691347 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.8621879035371, dt = 0.011316497027214848 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.2%)
patch tree reduce : 1372.00 ns (0.3%)
gen split merge : 18.33 us (4.3%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 391.42 us (91.5%)
LB move op cnt : 0
LB apply : 3.58 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.0442868073984574e-17,4.978782025774035e-18,9.478258922713024e-18)
sum a = (-1.1183087352838178e-16,-7.648212027679717e-17,9.141547069706405e-17)
sum e = 4.144510942145155
sum de = 4.62479989200848e-19
Info: CFL hydro = 0.011312652120457421 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011312652120457421 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0519e+04 | 800 | 1 | 3.899e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.8914110452693 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.873504400564318, dt = 0.011312652120457421 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.94 us (1.3%)
patch tree reduce : 1522.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1093.00 ns (0.3%)
LB compute : 373.32 us (95.3%)
LB move op cnt : 0
LB apply : 4.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.825753625220229e-17,2.9147743147281203e-18,1.0493786664432276e-17)
sum a = (-8.436668964613366e-17,2.111428962230032e-16,-2.0370467975489434e-19)
sum e = 4.1445109414764305
sum de = -4.573977915173222e-20
Info: CFL hydro = 0.011309093802781367 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011309093802781367 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0601e+04 | 800 | 1 | 3.883e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.7411948743709 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.884817052684777, dt = 0.011309093802781367 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.2%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 405.96 us (95.6%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.741725444821335e-17,7.489142638047586e-18,1.0397925638665269e-17)
sum a = (-5.608768704486597e-17,4.7954478139946304e-17,8.535226081730073e-17)
sum e = 4.144510940730444
sum de = -3.3203691532368573e-19
Info: CFL hydro = 0.011305887589019363 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011305887589019363 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0732e+04 | 800 | 1 | 3.859e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1055.0885210541032 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.89612614648756, dt = 0.011305887589019363 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.81 us (1.1%)
patch tree reduce : 1293.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.2%)
LB compute : 417.19 us (95.9%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.713416485649515e-17,6.29687113007041e-18,1.1988619534986576e-17)
sum a = (-1.494009064864113e-16,-2.926756942948996e-17,-1.8153681754627347e-17)
sum e = 4.144510939973538
sum de = -3.9895251815677546e-19
Info: CFL hydro = 0.011303095540158773 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011303095540158773 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0439e+04 | 800 | 1 | 3.914e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1039.8620381323253 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.90743203407658, dt = 0.011303095540158773 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.90 us (1.2%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 394.00 us (95.5%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.504768971753509e-17,5.218434590191557e-18,1.0721456600628924e-17)
sum a = (-5.9898162819104594e-18,-1.2733339878914027e-16,2.0430381116593813e-18)
sum e = 4.144510939276842
sum de = -1.0825081065909958e-18
Info: CFL hydro = 0.011300774707829562 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011300774707829562 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0629e+04 | 800 | 1 | 3.878e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1049.2951648675526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.918735129616742, dt = 0.011300774707829562 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.87 us (1.0%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 386.87 us (96.1%)
LB move op cnt : 0
LB apply : 3.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.5971849919070164e-17,3.870388915342992e-18,1.0898200366886847e-17)
sum a = (-1.3240860352637918e-16,-8.347098818662317e-17,-2.4091074038071475e-17)
sum e = 4.144510938711383
sum de = 1.2425973336220586e-18
Info: CFL hydro = 0.011298976343690401 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011298976343690401 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0374e+04 | 800 | 1 | 3.927e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1036.0982113068721 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.930035904324573, dt = 0.011298976343690401 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.70 us (1.2%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 387.84 us (95.3%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.307205388961814e-17,3.1993617349739287e-18,1.0436869180383115e-17)
sum a = (2.1960225728980983e-16,-9.526189435596529e-18,6.221979703689934e-17)
sum e = 4.1445109383416465
sum de = 6.641036091494234e-19
Info: CFL hydro = 0.011297745494814656 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011297745494814656 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0630e+04 | 800 | 1 | 3.878e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.9512873042713 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.941334880668265, dt = 0.011297745494814656 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.0%)
patch tree reduce : 1163.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 420.83 us (96.1%)
LB move op cnt : 0
LB apply : 3.63 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.96
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.752659593072884e-17,3.56782755276587e-18,1.0544712834371e-17)
sum a = (1.292566106185909e-16,5.704330164548085e-17,-9.281743819890656e-17)
sum e = 4.144510938223258
sum de = 1.1261303033745923e-18
Info: CFL hydro = 0.011297120018604997 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011297120018604997 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0522e+04 | 800 | 1 | 3.898e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.32544367515 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.95263262616308, dt = 0.011297120018604997 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.2%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.2%)
LB compute : 429.59 us (95.7%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.875930880895147e-17,3.9722412552204394e-18,9.595089547866567e-18)
sum a = (4.197664448625672e-17,2.7212548689609708e-17,-2.3663443993438958e-17)
sum e = 4.144510938396612
sum de = -5.446421850845151e-19
Info: CFL hydro = 0.011297130202622291 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011297130202622291 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9839e+04 | 800 | 1 | 4.032e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1008.5780016900217 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.963929746181684, dt = 0.011297130202622291 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.2%)
patch tree reduce : 1423.00 ns (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 414.21 us (95.7%)
LB move op cnt : 0
LB apply : 3.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9192181253430624e-17,5.859505200008431e-18,9.097810476700207e-18)
sum a = (3.54266403350203e-17,3.862001075588379e-17,-7.331571076943064e-17)
sum e = 4.1445109388843
sum de = -2.1260526976082939e-19
Info: CFL hydro = 0.011297798211581698 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011297798211581698 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0183e+04 | 800 | 1 | 3.964e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1026.0637122747648 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.975226876384305, dt = 0.011297798211581698 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.22 us (1.0%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 411.79 us (95.8%)
LB move op cnt : 0
LB apply : 3.61 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9279055308031976e-17,5.455091497553862e-18,8.387839754613297e-18)
sum a = (-4.199911191417086e-18,3.733786953625004e-17,-1.1647114630691605e-17)
sum e = 4.144510939688336
sum de = -2.2243085194897927e-18
Info: CFL hydro = 0.01129913740627001 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01129913740627001 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0711e+04 | 800 | 1 | 3.863e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1052.9300267672934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.986524674595888, dt = 0.01129913740627001 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.69 us (1.1%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 414.06 us (95.9%)
LB move op cnt : 0
LB apply : 3.64 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9133765940853855e-17,5.116582250314111e-18,8.87014054050356e-18)
sum a = (2.779969747243264e-18,4.681013714485263e-17,4.9697950546083777e-17)
sum e = 4.144510940789317
sum de = 7.707999820014133e-19
Info: CFL hydro = 0.011301152560222478 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011301152560222478 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0474e+04 | 800 | 1 | 3.907e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.0185097028395 (tsim/hr) [sph::Model][rank=0]
---------------- t = 22.997823812002157, dt = 0.0021761879978434706 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.2%)
patch tree reduce : 1482.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 415.95 us (95.8%)
LB move op cnt : 0
LB apply : 3.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.958611015619193e-17,6.560488950929685e-18,9.21464110185375e-18)
sum a = (2.0376459289599873e-17,-1.5652308113519455e-16,1.9174601679045996e-16)
sum e = 4.144510881664148
sum de = 2.710505431213761e-19
Info: CFL hydro = 0.01130193603024041 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01130193603024041 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0658e+04 | 800 | 1 | 3.873e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 202.2997051841998 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 2505 [SPH][rank=0]
Info: time since start : 984.9727177130001 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.1510723741695603 max=0.15124174471607074 delta=0.00016937054651045003
Number of particle pairs: 319600
Distance min=0.117518 max=2.272149 mean=0.931067
---------------- t = 23, dt = 0.01130193603024041 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.48 us (1.4%)
patch tree reduce : 1663.00 ns (0.3%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.1%)
LB compute : 638.28 us (96.4%)
LB move op cnt : 0
LB apply : 4.42 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (78.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: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.886865029146697e-17,3.669679892643317e-18,1.1781919198176461e-17)
sum a = (7.624845902649008e-17,1.1581210175476786e-17,-9.244597672405939e-17)
sum e = 4.144510941572036
sum de = -1.0672615135404184e-18
Info: CFL hydro = 0.011304431381477678 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011304431381477678 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7774e+04 | 800 | 1 | 4.501e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 903.9716574084055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.01130193603024, dt = 0.011304431381477678 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.69 us (1.1%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 394.70 us (95.6%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.0746927265089303e-17,3.639723322091127e-18,8.630487976086038e-18)
sum a = (-4.4605333552211424e-18,1.0290681116088427e-16,-1.3141947501245904e-16)
sum e = 4.144510943609954
sum de = -1.6534083130403943e-18
Info: CFL hydro = 0.011307902033420265 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011307902033420265 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0716e+04 | 800 | 1 | 3.862e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1053.8278074374402 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.02260636741172, dt = 0.011307902033420265 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.21 us (1.1%)
patch tree reduce : 842.00 ns (0.2%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 372.29 us (95.8%)
LB move op cnt : 0
LB apply : 3.04 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9717919066621564e-17,6.578462893260999e-18,7.66289074725029e-18)
sum a = (-2.5858511700650704e-17,-2.3246298748499706e-17,1.125288616222478e-16)
sum e = 4.144510945293897
sum de = -7.792703114739563e-19
Info: CFL hydro = 0.01130556782795409 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01130556782795409 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0834e+04 | 800 | 1 | 3.840e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1060.1599613565404 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.033914269445138, dt = 0.01130556782795409 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (1.1%)
patch tree reduce : 1213.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.2%)
LB compute : 389.26 us (95.9%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9159229025823214e-17,5.7516615460205454e-18,1.0496782321487496e-17)
sum a = (1.0746320554187242e-16,3.529483142459066e-17,-1.7445508426773568e-16)
sum e = 4.144510946934784
sum de = -1.1858461261560205e-19
Info: CFL hydro = 0.011300671799525762 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011300671799525762 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0484e+04 | 800 | 1 | 3.905e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1042.1424587384938 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.04521983727309, dt = 0.011300671799525762 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (1.2%)
patch tree reduce : 1233.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 402.90 us (95.7%)
LB move op cnt : 0
LB apply : 3.57 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (73.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.134006736202267e-17,6.263918902463001e-18,6.581458550316218e-18)
sum a = (-7.436119508170209e-17,7.441212125164081e-18,2.8902099268753246e-17)
sum e = 4.144510948464705
sum de = -9.554531645028508e-19
Info: CFL hydro = 0.011296731345801374 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011296731345801374 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0652e+04 | 800 | 1 | 3.874e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1050.233613477753 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.056520509072616, dt = 0.011296731345801374 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (0.9%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 388.49 us (96.0%)
LB move op cnt : 0
LB apply : 3.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.953218832919799e-17,6.135105649088582e-18,7.480155666881929e-18)
sum a = (-1.3174001031736746e-16,-1.196585254136691e-16,-1.793799444665158e-17)
sum e = 4.1445109498352855
sum de = -1.2400562347802957e-18
Info: CFL hydro = 0.011293793238446316 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011293793238446316 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0801e+04 | 800 | 1 | 3.846e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1057.4219594114577 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.067817240418417, dt = 0.011293793238446316 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.98 us (0.9%)
patch tree reduce : 1032.00 ns (0.2%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 671.00 ns (0.2%)
LB compute : 407.76 us (96.2%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 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: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.7200069311709966e-17,4.37365930061979e-18,7.587999320869813e-18)
sum a = (-9.502224179154777e-18,-1.173758347375922e-16,1.0955716982347052e-16)
sum e = 4.144510950969412
sum de = -1.1248597539537109e-18
Info: CFL hydro = 0.011291887604624958 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011291887604624958 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1018e+04 | 800 | 1 | 3.806e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1068.1742732076734 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.079111033656865, dt = 0.011291887604624958 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (1.0%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 372.67 us (95.6%)
LB move op cnt : 0
LB apply : 4.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.8474721388705666e-17,2.6511564938688454e-18,9.765842000014052e-18)
sum a = (-2.1000754219907519e-16,1.7467676288982188e-16,-6.422688726389609e-17)
sum e = 4.14451095180401
sum de = -6.979551485375435e-19
Info: CFL hydro = 0.011291028329214138 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011291028329214138 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0827e+04 | 800 | 1 | 3.841e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1058.2701117605052 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.09040292126149, dt = 0.011291028329214138 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.46 us (1.0%)
patch tree reduce : 1082.00 ns (0.2%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 423.02 us (96.2%)
LB move op cnt : 0
LB apply : 3.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.506117017428358e-17,6.6743239190280085e-18,7.333368471176196e-18)
sum a = (-5.005143807859963e-17,-7.757853075900733e-17,8.778473434613858e-17)
sum e = 4.144510952295359
sum de = -8.097634975751111e-19
Info: CFL hydro = 0.01129121261800738 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01129121261800738 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0172e+04 | 800 | 1 | 3.966e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1024.948634566946 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.101693949590704, dt = 0.01129121261800738 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (1.2%)
patch tree reduce : 1733.00 ns (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 382.65 us (95.2%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 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: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.538470113624723e-17,3.310201046017033e-18,9.906637881609346e-18)
sum a = (1.5564086013243253e-16,1.400829152161525e-16,-1.4473816627996286e-16)
sum e = 4.14451095242267
sum de = -1.8770250111155296e-18
Info: CFL hydro = 0.011292421236891519 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011292421236891519 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0379e+04 | 800 | 1 | 3.926e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1035.4416092735935 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.112985162208712, dt = 0.011292421236891519 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.2%)
patch tree reduce : 1342.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 401.69 us (95.4%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 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: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.8515162758951127e-17,7.209048703384606e-18,6.23695798896603e-18)
sum a = (1.7447904952417744e-16,-1.485366594259806e-16,-3.559439713011256e-17)
sum e = 4.144510952189524
sum de = 4.1335207826009857e-19
Info: CFL hydro = 0.011294618928591165 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011294618928591165 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0532e+04 | 800 | 1 | 3.896e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.3499075730608 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.124277583445604, dt = 0.011294618928591165 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.84 us (1.2%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 390.40 us (95.4%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (72.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.04159071604876e-17,3.87787805798104e-18,6.350792957064353e-18)
sum a = (1.3172128746077235e-16,-1.1560540141795774e-16,-5.790005956327349e-17)
sum e = 4.144510951625249
sum de = -2.473336205982557e-19
Info: CFL hydro = 0.01129775527925595 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01129775527925595 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0157e+04 | 800 | 1 | 3.969e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1024.4756230453615 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.135572202374195, dt = 0.01129775527925595 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.06 us (1.2%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 390.05 us (95.3%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 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: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.1804394205581625e-17,3.0166266546055674e-18,5.907435712891936e-18)
sum a = (1.9505472000794937e-17,-5.672126851204481e-17,-1.4428282640756958e-16)
sum e = 4.144510950782883
sum de = 7.707999820014133e-19
Info: CFL hydro = 0.011301765457044484 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011301765457044484 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0743e+04 | 800 | 1 | 3.857e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1054.5931706690333 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.14686995765345, dt = 0.011301765457044484 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.2%)
patch tree reduce : 1453.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 414.52 us (95.6%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 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: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (4.082930783410783e-17,1.7210049782233352e-18,3.148435565035205e-18)
sum a = (-2.305787191972643e-16,5.801314561710802e-17,-9.529784224062792e-17)
sum e = 4.14451094973692
sum de = -2.879912020664621e-19
Info: CFL hydro = 0.0113065710875767 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0113065710875767 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0177e+04 | 800 | 1 | 3.965e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1026.1853457080194 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.158171723110495, dt = 0.0113065710875767 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (1.2%)
patch tree reduce : 1652.00 ns (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 414.72 us (95.7%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 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: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.688402749238436e-17,3.976734740803268e-18,2.348595131291723e-18)
sum a = (-7.947993046052463e-17,1.6016097897876764e-16,-1.3177895385908532e-17)
sum e = 4.1445109485779845
sum de = 4.845028458294598e-19
Info: CFL hydro = 0.011312082090943996 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011312082090943996 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0445e+04 | 800 | 1 | 3.913e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.2255352757766 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.169478294198072, dt = 0.011312082090943996 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.93 us (1.2%)
patch tree reduce : 1392.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 378.53 us (95.2%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.730491730864263e-17,5.850518228842774e-18,3.0226179687160056e-18)
sum a = (8.652660519008807e-17,-6.585203121635242e-18,1.5595390629470293e-16)
sum e = 4.144510947406945
sum de = -5.912289971835016e-19
Info: CFL hydro = 0.011314666393200556 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011314666393200556 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0145e+04 | 800 | 1 | 3.971e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1025.4767686847483 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.180790376289014, dt = 0.011314666393200556 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.2%)
patch tree reduce : 1542.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1143.00 ns (0.3%)
LB compute : 404.05 us (95.4%)
LB move op cnt : 0
LB apply : 3.59 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 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: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.940037941876835e-17,4.274802617797562e-18,5.425134927001671e-18)
sum a = (-3.680351920902535e-17,-5.4841493709894863e-17,-2.2699507083067555e-16)
sum e = 4.144510946290263
sum de = -2.5792153243893445e-19
Info: CFL hydro = 0.011313027536255873 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011313027536255873 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0562e+04 | 800 | 1 | 3.891e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1046.9472023902888 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.192105042682215, dt = 0.011313027536255873 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.3%)
patch tree reduce : 1423.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1313.00 ns (0.3%)
LB compute : 401.75 us (95.4%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.760598084269215e-17,4.047132681600915e-18,9.226623730074625e-19)
sum a = (-3.0069094920327006e-17,-2.8808484985777647e-17,-7.618255457127526e-17)
sum e = 4.144510945318979
sum de = 2.0635840177482892e-19
Info: CFL hydro = 0.011311340643284627 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011311340643284627 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0338e+04 | 800 | 1 | 3.934e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1035.357313061287 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.203418070218472, dt = 0.011311340643284627 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (1.1%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 409.79 us (95.8%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.744870884729315e-17,3.425533842642966e-18,1.1653105944802043e-18)
sum a = (1.0043801529025188e-16,-2.0735638570520634e-16,-4.381148443257838e-17)
sum e = 4.1445109446295785
sum de = -2.710505431213761e-20
Info: CFL hydro = 0.011309615351245856 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011309615351245856 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0945e+04 | 800 | 1 | 3.820e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1066.1037214570633 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.214729410861757, dt = 0.011309615351245856 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.3%)
patch tree reduce : 1403.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 396.44 us (95.3%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 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: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.9358440219995283e-17,5.946379254609783e-19,7.219533503077872e-19)
sum a = (-1.4501329865762812e-16,-2.701783098102047e-16,1.6798446502846257e-16)
sum e = 4.144510944294795
sum de = -3.3373098121819433e-19
Info: CFL hydro = 0.011307865015169052 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011307865015169052 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0465e+04 | 800 | 1 | 3.909e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.516822605794 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.226039026213, dt = 0.011307865015169052 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (1.1%)
patch tree reduce : 1493.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 410.05 us (95.7%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.630137219514426e-17,-3.1379507653419382e-18,4.035150053380039e-18)
sum a = (-7.679277342395899e-17,1.5268564444745896e-16,-1.0694495687131952e-16)
sum e = 4.144510944363625
sum de = -2.2717423645360335e-18
Info: CFL hydro = 0.01130610678562662 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01130610678562662 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0601e+04 | 800 | 1 | 3.883e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.2946790212943 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.23734689122817, dt = 0.01130610678562662 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.2%)
patch tree reduce : 1463.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 400.06 us (95.4%)
LB move op cnt : 0
LB apply : 4.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (72.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.562135804360954e-17,1.1907736794495661e-18,7.668882061360728e-19)
sum a = (-1.302474241896046e-16,1.2597037482901562e-16,-3.415049042949699e-17)
sum e = 4.144510944858142
sum de = 5.082197683525802e-20
Info: CFL hydro = 0.011304361456504512 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011304361456504512 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0437e+04 | 800 | 1 | 3.914e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1039.7895923121407 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.248652998013796, dt = 0.011304361456504512 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.81 us (1.1%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 419.90 us (95.9%)
LB move op cnt : 0
LB apply : 3.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (73.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.393030963593839e-17,1.854311717180582e-18,1.0185233987744717e-18)
sum a = (-5.92709471231681e-17,1.4442062663210965e-16,-1.0167859176824447e-16)
sum e = 4.1445109457718505
sum de = 1.1130012926921506e-18
Info: CFL hydro = 0.01130265341154622 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01130265341154622 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9980e+04 | 800 | 1 | 4.004e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1016.3900401790263 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.2599573594703, dt = 0.01130265341154622 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.94 us (1.1%)
patch tree reduce : 1423.00 ns (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 414.49 us (95.7%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.346748062090705e-17,4.366170157981742e-18,-3.4450056135018895e-19)
sum a = (1.6891386762984427e-16,8.865946620626254e-17,-1.0363775148235771e-16)
sum e = 4.144510947069901
sum de = -1.971892701208011e-18
Info: CFL hydro = 0.011301010776921921 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011301010776921921 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0255e+04 | 800 | 1 | 3.950e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1030.2159479833304 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.271260012881847, dt = 0.011301010776921921 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.2%)
patch tree reduce : 1423.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 407.04 us (95.6%)
LB move op cnt : 0
LB apply : 3.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 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: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.760598084269215e-17,4.2118938196379624e-18,-2.1388991374263905e-18)
sum a = (-1.390808679311817e-16,-1.036347558253025e-16,1.834420554333928e-16)
sum e = 4.14451094869136
sum de = 3.5914196963582334e-19
Info: CFL hydro = 0.011299464676084404 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011299464676084404 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0480e+04 | 800 | 1 | 3.906e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.5144845865268 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.28256102365877, dt = 0.011299464676084404 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.3%)
patch tree reduce : 1572.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 417.63 us (95.4%)
LB move op cnt : 0
LB apply : 3.66 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3948283578269705e-17,2.5582911251570553e-18,1.9741379993893436e-18)
sum a = (-1.7163617097877457e-17,-6.170005053781884e-17,-1.043926570602729e-16)
sum e = 4.1445109505534905
sum de = -6.335806445462167e-19
Info: CFL hydro = 0.011298048860911722 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011298048860911722 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0342e+04 | 800 | 1 | 3.933e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1034.3568399578837 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.293860488334854, dt = 0.011298048860911722 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.2%)
patch tree reduce : 1974.00 ns (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 418.92 us (95.5%)
LB move op cnt : 0
LB apply : 3.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 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: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.3880881294527275e-17,1.48884155644386e-18,-8.477709466269867e-19)
sum a = (-2.8081439018475987e-16,-5.551139751886822e-17,9.610067833142662e-17)
sum e = 4.144510952557143
sum de = 1.060485249962384e-18
Info: CFL hydro = 0.011296799590582239 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011296799590582239 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9806e+04 | 800 | 1 | 4.039e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1006.9721816567256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.305158537195766, dt = 0.011296799590582239 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.3%)
patch tree reduce : 1683.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 400.11 us (95.4%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.97289006159937e-17,1.1997606506152231e-18,1.2042541361980518e-18)
sum a = (4.651955841049638e-17,7.400017159940671e-17,4.39882281988363e-17)
sum e = 4.144510954594588
sum de = 1.3688052427629493e-18
Info: CFL hydro = 0.011295754801816844 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011295754801816844 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0403e+04 | 800 | 1 | 3.921e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1037.1850628260308 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.316455336786348, dt = 0.011295754801816844 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.89 us (1.2%)
patch tree reduce : 1412.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 385.05 us (95.5%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.9575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.215987631630394e-17,2.378551701843913e-18,6.830098085899398e-19)
sum a = (-3.412952083011046e-17,8.170654618109916e-18,2.7667888562003e-17)
sum e = 4.1445109565561165
sum de = 4.404571325722362e-19
Info: CFL hydro = 0.011291696388685194 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011291696388685194 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1063e+04 | 800 | 1 | 3.798e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1070.6532108561603 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.327751091588166, dt = 0.011291696388685194 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.65 us (1.1%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 396.26 us (95.8%)
LB move op cnt : 0
LB apply : 3.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.9575000000000005
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.065455864605638e-17,2.8803242585931016e-18,1.48884155644386e-18)
sum a = (-4.247242572889547e-17,1.2938991735754814e-17,7.47236695853836e-17)
sum e = 4.14451095829949
sum de = 1.1892342579450377e-18
Info: CFL hydro = 0.011287502747587285 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011287502747587285 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1123e+04 | 800 | 1 | 3.787e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1073.2921702252925 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.33904278797685, dt = 0.011287502747587285 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (1.0%)
patch tree reduce : 1352.00 ns (0.3%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 424.35 us (96.1%)
LB move op cnt : 0
LB apply : 3.65 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9575000000000005
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.031754722734424e-17,2.8653459733170063e-18,2.5852520386540268e-18)
sum a = (1.0286187630505597e-16,1.0309104406978024e-16,1.4319240723946982e-17)
sum e = 4.144510959764804
sum de = 3.5236570605778894e-19
Info: CFL hydro = 0.011283978705751445 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011283978705751445 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0736e+04 | 800 | 1 | 3.858e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1053.2506087407112 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.35033029072444, dt = 0.011283978705751445 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (1.0%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 413.92 us (95.8%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9575000000000005
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.228569391262314e-17,5.329273901234662e-18,2.645165179758407e-18)
sum a = (-1.2847773978423395e-16,-1.8370866891130728e-17,1.0438067443205203e-16)
sum e = 4.144510960890588
sum de = -1.128247885742728e-18
Info: CFL hydro = 0.011281142254054992 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011281142254054992 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0775e+04 | 800 | 1 | 3.851e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1054.9048475638065 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.36161426943019, dt = 0.011281142254054992 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (1.0%)
patch tree reduce : 661.00 ns (0.2%)
gen split merge : 601.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 388.14 us (96.2%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9575000000000005
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.99341031242762e-17,4.231365590496886e-18,4.09506319448442e-18)
sum a = (-1.9813275763218692e-17,-8.120327579582236e-17,-1.2186332900631032e-17)
sum e = 4.1445109616305436
sum de = 1.0503208545953324e-18
Info: CFL hydro = 0.01127900301279625 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01127900301279625 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1098e+04 | 800 | 1 | 3.792e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1071.0522224232168 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.372895411684247, dt = 0.01127900301279625 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (0.8%)
patch tree reduce : 601.00 ns (0.1%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 711.00 ns (0.2%)
LB compute : 410.85 us (97.0%)
LB move op cnt : 0
LB apply : 2.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.9575000000000005
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.012732300433783e-17,2.2197818779173044e-18,3.477957841109299e-18)
sum a = (2.295332348849928e-16,1.1101905046641741e-16,4.358081883932651e-17)
sum e = 4.144510961964441
sum de = -2.0565959959334412e-18
Info: CFL hydro = 0.011277562777819427 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011277562777819427 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0888e+04 | 800 | 1 | 3.830e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1060.1592192975666 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.384174414697043, dt = 0.011277562777819427 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.97 us (0.9%)
patch tree reduce : 1062.00 ns (0.2%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 417.95 us (96.6%)
LB move op cnt : 0
LB apply : 3.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.9575000000000005
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.424185796968117e-17,4.3077548454049716e-18,4.06211096687701e-18)
sum a = (-8.515454745165627e-17,-1.1893956772041653e-16,-9.825755141118433e-17)
sum e = 4.144510961900534
sum de = 3.3881317890172014e-21
Info: CFL hydro = 0.011276814724873772 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011276814724873772 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9606e+04 | 800 | 1 | 4.080e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 994.9939820133991 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.395451977474863, dt = 0.011276814724873772 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (1.1%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 382.48 us (95.6%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.9575000000000005
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.163863198869583e-17,1.6431178947876403e-18,2.3186385607395324e-18)
sum a = (-2.800939346629797e-17,2.7215544346664926e-17,-7.725200413998846e-17)
sum e = 4.144510961472455
sum de = -2.270048298641525e-19
Info: CFL hydro = 0.01127674458202632 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01127674458202632 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0956e+04 | 800 | 1 | 3.818e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1063.4286970556693 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.406728792199736, dt = 0.01127674458202632 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.63 us (0.9%)
patch tree reduce : 792.00 ns (0.2%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 391.67 us (96.4%)
LB move op cnt : 0
LB apply : 3.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.9575000000000005
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.137201851078134e-17,2.8743329444826633e-18,1.4978285276095171e-18)
sum a = (1.3799793790572004e-16,5.52728683258464e-17,6.6144107779236274e-18)
sum e = 4.1445109607395665
sum de = -1.717782817031721e-18
Info: CFL hydro = 0.01127733047032162 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01127733047032162 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0666e+04 | 800 | 1 | 3.871e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.7162071334722 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.418005536781763, dt = 0.01127733047032162 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (1.0%)
patch tree reduce : 1402.00 ns (0.3%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.2%)
LB compute : 401.63 us (95.7%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (73.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9575000000000005
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.35064241626249e-17,3.868891086815383e-18,2.288681990187342e-18)
sum a = (-1.0083381647867269e-16,8.895903191178445e-17,-3.5564440559560377e-17)
sum e = 4.1445109597791925
sum de = -1.836367429647323e-18
Info: CFL hydro = 0.011278543446572684 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011278543446572684 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1027e+04 | 800 | 1 | 3.805e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1067.0949889454782 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.429282867252084, dt = 0.011278543446572684 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.82 us (1.0%)
patch tree reduce : 751.00 ns (0.2%)
gen split merge : 581.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.1%)
LB compute : 382.77 us (96.8%)
LB move op cnt : 0
LB apply : 2.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 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: 3.9575000000000005
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.118703668762156e-17,4.710670719331931e-18,1.659594008591345e-18)
sum a = (2.9764848500656325e-17,7.13265944847652e-18,-6.830098085899398e-19)
sum e = 4.14451095868237
sum de = -9.978048118655658e-19
Info: CFL hydro = 0.011280348047594552 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011280348047594552 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0827e+04 | 800 | 1 | 3.841e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1057.030951322933 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.440561410698656, dt = 0.011280348047594552 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.76 us (1.0%)
patch tree reduce : 752.00 ns (0.2%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.2%)
LB compute : 370.68 us (96.1%)
LB move op cnt : 0
LB apply : 3.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 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: 3.9575000000000005
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.242274522289941e-17,4.755605575160217e-18,1.2342107067502422e-18)
sum a = (-6.709672672279593e-17,-2.2851171582916314e-16,-1.1582108872593353e-16)
sum e = 4.14451095754709
sum de = -2.320870275476783e-19
Info: CFL hydro = 0.011282641636455886 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011282641636455886 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0863e+04 | 800 | 1 | 3.835e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1059.0431172872682 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.45184175874625, dt = 0.011282641636455886 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (0.8%)
patch tree reduce : 802.00 ns (0.2%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 711.00 ns (0.2%)
LB compute : 408.84 us (96.6%)
LB move op cnt : 0
LB apply : 2.94 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.9575000000000005
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1014786406946464e-17,1.1458388236212807e-18,-3.415049042949699e-19)
sum a = (-9.625046118418757e-17,-6.626692971850026e-17,1.0139550217652626e-17)
sum e = 4.1445109564705955
sum de = 2.846030702774449e-18
Info: CFL hydro = 0.011285436308546969 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011285436308546969 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0826e+04 | 800 | 1 | 3.841e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1057.3524954577833 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.463124400382707, dt = 0.011285436308546969 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (0.9%)
patch tree reduce : 661.00 ns (0.2%)
gen split merge : 591.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 387.29 us (96.9%)
LB move op cnt : 0
LB apply : 2.48 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.9562500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0268118885933124e-17,1.3570326460142224e-18,3.9542673128891254e-19)
sum a = (2.3722009088868486e-16,2.5375611783349397e-16,1.620545618876565e-16)
sum e = 4.144510955544111
sum de = 6.657678965418801e-19
Info: CFL hydro = 0.011288034030359178 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011288034030359178 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0505e+04 | 800 | 1 | 3.902e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.3301482762631 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.474409836691255, dt = 0.011288034030359178 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (1.0%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 384.51 us (96.2%)
LB move op cnt : 0
LB apply : 3.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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: 3.9562500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.411004905925153e-17,5.828050800928631e-18,3.81646708834905e-18)
sum a = (-1.39789340824741e-16,8.582557463202533e-18,6.264518033874044e-17)
sum e = 4.144510954838115
sum de = -1.3467823861343375e-18
Info: CFL hydro = 0.01128418262128387 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01128418262128387 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0762e+04 | 800 | 1 | 3.853e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1054.635953811467 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.485697870721612, dt = 0.01128418262128387 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (1.0%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 363.15 us (95.9%)
LB move op cnt : 0
LB apply : 2.94 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9562500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.081183064145538e-17,4.894903628227902e-18,3.540866639268899e-18)
sum a = (-1.3379802671430295e-16,2.6412708255866225e-17,5.58390475092828e-18)
sum e = 4.144510954347418
sum de = 2.2658131339052534e-19
Info: CFL hydro = 0.011280657604299114 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011280657604299114 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0561e+04 | 800 | 1 | 3.891e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.0727842488038 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.496982053342897, dt = 0.0030179466571027547 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (0.9%)
patch tree reduce : 771.00 ns (0.2%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 702.00 ns (0.2%)
LB compute : 411.06 us (96.6%)
LB move op cnt : 0
LB apply : 2.86 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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: 3.9562500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.071147613010554e-17,4.935344998473359e-18,3.1753964785321764e-18)
sum a = (-4.0836796976745873e-17,4.914674964792348e-17,6.827701560255223e-17)
sum e = 4.144510900173399
sum de = -2.1163118187148694e-18
Info: CFL hydro = 0.011279942068030603 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011279942068030603 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0676e+04 | 800 | 1 | 3.869e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 280.7972771210377 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 2550 [SPH][rank=0]
Info: time since start : 987.6799753280001 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.1510687842512674 max=0.15125919324392056 delta=0.00019040899265315714
Number of particle pairs: 319600
Distance min=0.118564 max=2.276672 mean=0.931007
---------------- t = 23.5, dt = 0.011279942068030603 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.51 us (1.3%)
patch tree reduce : 1392.00 ns (0.2%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.2%)
LB compute : 706.59 us (96.7%)
LB move op cnt : 0
LB apply : 5.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (73.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9562500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.9972297751730244e-17,6.178542676389258e-18,3.822458402459488e-18)
sum a = (1.1109094623574267e-16,-7.010736206329105e-17,-1.2455942035600745e-17)
sum e = 4.144510953876054
sum de = 6.838202862302373e-19
Info: CFL hydro = 0.01127673652507591 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01127673652507591 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8524e+04 | 800 | 1 | 4.319e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 940.283656585522 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.51127994206803, dt = 0.01127673652507591 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.3%)
patch tree reduce : 1532.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 412.28 us (95.4%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (73.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9562500000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.162440261768354e-17,3.1724008214769573e-18,3.3611272159557566e-18)
sum a = (3.8080792485944366e-17,-5.603676087492726e-17,-1.5660096821863024e-16)
sum e = 4.144510954297269
sum de = 3.3118988237643143e-19
Info: CFL hydro = 0.011274130291653459 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011274130291653459 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0348e+04 | 800 | 1 | 3.932e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1032.5435771149635 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.522556678593105, dt = 0.011274130291653459 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.2%)
patch tree reduce : 1442.00 ns (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 416.65 us (94.0%)
LB move op cnt : 0
LB apply : 3.68 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 us (75.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: 3.9612499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.211980940319039e-17,2.8144198033782826e-18,3.7146147484716024e-19)
sum a = (-9.022319918908688e-17,1.5706229940513396e-17,1.2533829119036439e-17)
sum e = 4.144510954848637
sum de = 1.2485265642528387e-18
Info: CFL hydro = 0.01127199949302466 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01127199949302466 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0278e+04 | 800 | 1 | 3.945e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1028.774006007055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.53383080888476, dt = 0.01127199949302466 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.4%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 406.54 us (95.3%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (72.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9612499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0389442996669496e-17,4.267313475159514e-18,2.102951252763762e-18)
sum a = (5.403566196204094e-17,2.0554850667238165e-16,-1.2472717715109971e-16)
sum e = 4.144510955677337
sum de = 1.1434944787933055e-18
Info: CFL hydro = 0.011270379306652558 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011270379306652558 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0297e+04 | 800 | 1 | 3.941e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1029.5458913898142 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.545102808377784, dt = 0.011270379306652558 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.2%)
patch tree reduce : 1423.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 400.18 us (95.6%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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: 3.9612499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.180788661231571e-17,7.093715906758673e-18,7.489142638047586e-20)
sum a = (-2.888112966936671e-17,-3.910830285588449e-17,-5.436518423811503e-17)
sum e = 4.144510956715319
sum de = -2.1311348952918197e-18
Info: CFL hydro = 0.011269299663790965 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011269299663790965 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0317e+04 | 800 | 1 | 3.938e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1030.3871311881103 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.556373187684436, dt = 0.011269299663790965 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.71 us (1.1%)
patch tree reduce : 1423.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 404.69 us (95.7%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.9612499999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.1028641320826853e-17,6.569475922095342e-18,-6.290879815959972e-19)
sum a = (7.739579567863897e-17,3.280993389728647e-17,-1.0998854443942206e-16)
sum e = 4.1445109578899295
sum de = -4.2351647362715017e-20
Info: CFL hydro = 0.011268784620402402 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011268784620402402 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0390e+04 | 800 | 1 | 3.923e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1034.0248183327965 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.567642487348227, dt = 0.011268784620402402 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.4%)
patch tree reduce : 1462.00 ns (0.3%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 419.44 us (95.4%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.237556362427971e-17,6.096162107370735e-18,-2.255729762579933e-18)
sum a = (-1.4430080034990088e-17,-4.572608374799524e-17,-1.325278681228901e-16)
sum e = 4.144510959122672
sum de = -1.1011428314305904e-18
Info: CFL hydro = 0.011268852101070809 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011268852101070809 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9880e+04 | 800 | 1 | 4.024e-02 | 0.1% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1008.0918867421008 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.57891127196863, dt = 0.011268852101070809 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.3%)
patch tree reduce : 1422.00 ns (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1143.00 ns (0.3%)
LB compute : 430.76 us (95.5%)
LB move op cnt : 0
LB apply : 3.67 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 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: 3.96625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.182024369766848e-17,5.008738596326225e-18,-3.501923097551051e-18)
sum a = (2.66448716776457e-17,6.639705357183634e-17,-8.507666036822057e-18)
sum e = 4.144510960335502
sum de = -1.3213713977167085e-19
Info: CFL hydro = 0.011269513629445477 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011269513629445477 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9756e+04 | 800 | 1 | 4.049e-02 | 0.1% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1001.8171840620588 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.5901801240697, dt = 0.011269513629445477 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.4%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 404.21 us (95.3%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 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: 3.96625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.285486875311476e-17,6.6039259782303614e-18,-3.406062071784042e-18)
sum a = (-2.4520950825495406e-17,-9.593816393618098e-17,-3.60557283166163e-17)
sum e = 4.144510961457054
sum de = -1.4331797467542762e-18
Info: CFL hydro = 0.01127077425949132 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01127077425949132 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0606e+04 | 800 | 1 | 3.882e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.990063666053 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.601449637699147, dt = 0.01127077425949132 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.86 us (1.2%)
patch tree reduce : 1412.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 398.00 us (95.7%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.96625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.135647853980739e-17,4.697190262583446e-18,-3.8643976012325544e-18)
sum a = (-5.71766083844381e-17,-5.670329456971349e-17,-1.110789636075218e-16)
sum e = 4.144510962427779
sum de = 8.046812998915853e-19
Info: CFL hydro = 0.011272632384659788 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011272632384659788 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0403e+04 | 800 | 1 | 3.921e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1034.819158676488 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.612720411958637, dt = 0.011272632384659788 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.3%)
patch tree reduce : 1363.00 ns (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 411.98 us (95.4%)
LB move op cnt : 0
LB apply : 4.01 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 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: 3.96625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.09640474655737e-17,4.918868884669654e-18,-5.185482362584148e-18)
sum a = (-1.4283592404989877e-16,-1.439592954456059e-16,3.9614568898216507e-17)
sum e = 4.144510963205201
sum de = -5.183841637196318e-19
Info: CFL hydro = 0.011275079828765482 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011275079828765482 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0545e+04 | 800 | 1 | 3.894e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1042.1976746630787 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.623993044343297, dt = 0.011275079828765482 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.2%)
patch tree reduce : 1572.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 419.82 us (95.7%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.96625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8785643100731604e-17,2.739528376997807e-18,-4.4964812398837705e-18)
sum a = (3.176986049057102e-16,7.682362518109214e-17,-1.771032451045493e-16)
sum e = 4.144510963767058
sum de = 1.1672114013164259e-18
Info: CFL hydro = 0.011274148036848322 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011274148036848322 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0424e+04 | 800 | 1 | 3.917e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1036.2468193155178 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.635268124172065, dt = 0.011274148036848322 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.52 us (1.1%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 379.90 us (95.4%)
LB move op cnt : 0
LB apply : 3.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.96625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.5159465171407955e-17,4.481502954607675e-18,-7.47416435277149e-18)
sum a = (-3.452869213271839e-17,-5.932898797861297e-17,1.6140600213520157e-17)
sum e = 4.144510964067865
sum de = 3.2864878353466853e-19
Info: CFL hydro = 0.011272846668162143 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011272846668162143 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0429e+04 | 800 | 1 | 3.916e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1036.461823775763 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.64654227220891, dt = 0.011272846668162143 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (1.1%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 406.78 us (95.7%)
LB move op cnt : 0
LB apply : 3.58 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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: 3.96625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.254500547646554e-17,2.3066559325186562e-18,-5.931400969333688e-18)
sum a = (-3.047107465142421e-17,-7.519099208599776e-19,2.983674426998158e-17)
sum e = 4.144510964159602
sum de = 4.946672411965114e-19
Info: CFL hydro = 0.011271673790208738 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011271673790208738 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0724e+04 | 800 | 1 | 3.860e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1051.3059124361905 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.657815118877075, dt = 0.011271673790208738 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.2%)
patch tree reduce : 1492.00 ns (0.3%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.3%)
LB compute : 420.19 us (95.4%)
LB move op cnt : 0
LB apply : 3.61 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.2675503786933516e-17,2.7964458610469686e-18,-5.035699509823197e-18)
sum a = (-2.869689676047074e-17,-1.9051480174076493e-16,-6.059615091297062e-17)
sum e = 4.144510964086459
sum de = -9.232659125071874e-19
Info: CFL hydro = 0.011270641708989676 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011270641708989676 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0361e+04 | 800 | 1 | 3.929e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1032.741605143096 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.669086792667283, dt = 0.011270641708989676 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.2%)
patch tree reduce : 1413.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 401.28 us (95.3%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (72.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.96625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.232014396875816e-17,1.0005494564431575e-18,-6.500575809825304e-18)
sum a = (2.140097400248478e-16,-2.3923317242979207e-17,-1.256378568958863e-16)
sum e = 4.1445109639015705
sum de = 1.328147661294743e-18
Info: CFL hydro = 0.01126975992543863 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01126975992543863 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0259e+04 | 800 | 1 | 3.949e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1027.50212613273 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.680357434376273, dt = 0.01126975992543863 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.2%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 781.00 ns (0.2%)
LB compute : 409.81 us (95.5%)
LB move op cnt : 0
LB apply : 3.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (76.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9662499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.595724609092597e-17,6.680315233138446e-19,-8.390835411668515e-18)
sum a = (2.717210731936425e-17,2.4702188077336158e-17,-7.42683297129903e-17)
sum e = 4.144510963667704
sum de = -1.8888834723770898e-18
Info: CFL hydro = 0.011269035025693458 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011269035025693458 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0695e+04 | 800 | 1 | 3.866e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1049.541084556627 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.691627194301713, dt = 0.011269035025693458 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (1.1%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 389.50 us (95.6%)
LB move op cnt : 0
LB apply : 3.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.9662499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.531168199552627e-17,1.6041743530697929e-18,-8.15717416136143e-18)
sum a = (-1.0093417099002253e-16,5.767238962707685e-17,-8.691599380012506e-17)
sum e = 4.144510963450854
sum de = -1.5263533709522492e-18
Info: CFL hydro = 0.01126847014128376 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01126847014128376 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0793e+04 | 800 | 1 | 3.847e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1054.42433610625 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.702896229327408, dt = 0.01126847014128376 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (0.9%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 412.14 us (96.1%)
LB move op cnt : 0
LB apply : 3.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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: 3.9662499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.330608959705712e-17,2.645165179758407e-18,-9.666985317191823e-18)
sum a = (3.820810791079117e-17,-1.8373562982480425e-16,2.2838889388989916e-17)
sum e = 4.144510963314761
sum de = 4.929731753020028e-19
Info: CFL hydro = 0.011268064929716182 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011268064929716182 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0818e+04 | 800 | 1 | 3.843e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1055.650540159397 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.714164699468693, dt = 0.011268064929716182 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (1.1%)
patch tree reduce : 1372.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 378.87 us (95.5%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.9662499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.4232122084251707e-17,-7.788708343569489e-19,-8.74731860123958e-18)
sum a = (-8.302613311392314e-17,-3.2694601100660543e-17,-6.106946472769523e-17)
sum e = 4.14451096331452
sum de = -1.012204371968889e-18
Info: CFL hydro = 0.0112678158913099 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0112678158913099 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0252e+04 | 800 | 1 | 3.950e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1026.9233886164795 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.72543276439841, dt = 0.0112678158913099 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.3%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1313.00 ns (0.3%)
LB compute : 389.45 us (95.4%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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: 3.9662499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.308478543210282e-17,-8.597535748478628e-19,-1.0475812722100962e-17)
sum a = (-1.359159562523428e-16,-6.496981021359042e-17,-5.890060901971665e-17)
sum e = 4.144510963491978
sum de = 1.5517643593698782e-18
Info: CFL hydro = 0.011267717496647086 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011267717496647086 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0770e+04 | 800 | 1 | 3.852e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1053.1587153603793 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.736700580289718, dt = 0.011267717496647086 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.87 us (1.0%)
patch tree reduce : 872.00 ns (0.2%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1352.00 ns (0.3%)
LB compute : 372.99 us (95.9%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.9662499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.10039271501213e-17,-2.32612770337758e-18,-1.0868243796334656e-17)
sum a = (6.582956378843828e-17,1.2406214128484107e-16,4.898797982399687e-17)
sum e = 4.144510963871567
sum de = 7.013432803265607e-19
Info: CFL hydro = 0.01126775918674088 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01126775918674088 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0733e+04 | 800 | 1 | 3.859e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1051.252459507736 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.747968297786365, dt = 0.01126775918674088 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.42 us (1.1%)
patch tree reduce : 1022.00 ns (0.3%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 382.88 us (95.7%)
LB move op cnt : 0
LB apply : 3.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.9662499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.252721876270018e-17,1.1143844245414807e-18,-1.0035451134983765e-17)
sum a = (-4.895727433918087e-17,-1.0518950183696117e-16,1.1048713411055008e-16)
sum e = 4.144510964457871
sum de = -2.668153783851046e-20
Info: CFL hydro = 0.011267926869844638 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011267926869844638 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1575e+04 | 800 | 1 | 3.708e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1093.9749044554972 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.759236056973105, dt = 0.011267926869844638 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.2%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 414.15 us (95.7%)
LB move op cnt : 0
LB apply : 3.57 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (77.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9662499999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.192958518018398e-17,-1.2132411073637089e-18,-8.133208904919678e-18)
sum a = (-1.289750188554003e-16,-2.782366272887439e-16,1.1807681848851346e-16)
sum e = 4.144510965234958
sum de = 2.140875774185244e-19
Info: CFL hydro = 0.011268203476246923 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011268203476246923 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0984e+04 | 800 | 1 | 3.812e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1064.0126593756033 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.77050398384295, dt = 0.011268203476246923 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (1.2%)
patch tree reduce : 1612.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 386.25 us (91.7%)
LB move op cnt : 0
LB apply : 19.80 us (4.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.9712499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.955290576399958e-17,-4.998253796632959e-18,-6.8630503135068074e-18)
sum a = (1.2648899795670041e-16,7.704829946023356e-17,-3.396775534912863e-17)
sum e = 4.144510966166926
sum de = 1.6557376536453436e-18
Info: CFL hydro = 0.011268569558049958 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011268569558049958 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0578e+04 | 800 | 1 | 3.888e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.436845620804 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.7817721873192, dt = 0.011268569558049958 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (1.0%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 426.98 us (96.0%)
LB move op cnt : 0
LB apply : 3.58 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.9712499999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.259199984651929e-17,-3.037596253992101e-18,-7.69284731780248e-18)
sum a = (-6.025913949425849e-17,5.26127248608119e-17,-2.617605134850392e-17)
sum e = 4.14451096720133
sum de = -1.2538734597323815e-19
Info: CFL hydro = 0.01126900355267384 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01126900355267384 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0527e+04 | 800 | 1 | 3.897e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.8726091357646 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.79304075687725, dt = 0.01126900355267384 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.85 us (1.2%)
patch tree reduce : 1383.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 376.91 us (95.4%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.97625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0817821955565814e-17,-3.2862357895752805e-18,-8.729344658908266e-18)
sum a = (-1.5158024699408312e-17,3.119078125894058e-17,-3.085526766875605e-17)
sum e = 4.144510968272945
sum de = 2.9455570740768294e-19
Info: CFL hydro = 0.01126948202225461 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01126948202225461 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0731e+04 | 800 | 1 | 3.859e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1051.2685887631349 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.804309760429923, dt = 0.01126948202225461 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (1.0%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 382.93 us (95.9%)
LB move op cnt : 0
LB apply : 3.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.97625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.10990392616245e-17,-1.8902596018432105e-18,-8.058317478539202e-18)
sum a = (1.0864349442162872e-16,-1.1228321774371984e-16,8.430378084797407e-17)
sum e = 4.144510969309352
sum de = 1.9164120431628545e-19
Info: CFL hydro = 0.011269980256040741 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011269980256040741 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0673e+04 | 800 | 1 | 3.870e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.3940728879943 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.815579242452177, dt = 0.011269980256040741 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.10 us (1.0%)
patch tree reduce : 1052.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.2%)
LB compute : 386.16 us (95.7%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 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: 3.97625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.296233794997074e-17,-4.520446496325523e-18,-7.234511788353968e-18)
sum a = (1.3150934472411561e-17,8.384993880410838e-17,-2.1946183586534645e-17)
sum e = 4.144510970237409
sum de = 8.724439356719293e-19
Info: CFL hydro = 0.011270472911922723 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011270472911922723 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0688e+04 | 800 | 1 | 3.867e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1049.203709100047 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.82684922270822, dt = 0.011270472911922723 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.23 us (1.0%)
patch tree reduce : 1173.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1313.00 ns (0.3%)
LB compute : 389.98 us (95.6%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.97625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.27825985266576e-17,-2.3755560447886944e-18,-8.172152446637525e-18)
sum a = (-1.972490388008973e-16,-1.1393195249548602e-16,8.136204561974897e-18)
sum e = 4.1445109709894785
sum de = 9.491004173984435e-19
Info: CFL hydro = 0.01127093453870894 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01127093453870894 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0529e+04 | 800 | 1 | 3.897e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.1934843639121 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.838119695620144, dt = 0.01127093453870894 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.94 us (1.2%)
patch tree reduce : 1743.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 400.10 us (95.5%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.97625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.9570879706330893e-17,-4.544411752767275e-18,-7.441212125164081e-18)
sum a = (1.3408560979160398e-17,-1.4059404920119922e-16,1.6426985027999098e-16)
sum e = 4.1445109715098445
sum de = -5.454892180317694e-19
Info: CFL hydro = 0.011271340286438865 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011271340286438865 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0545e+04 | 800 | 1 | 3.894e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1042.034761385869 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.84939063015885, dt = 0.011271340286438865 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.92 us (1.2%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 405.01 us (95.8%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 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: 3.97625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.041116151031983e-17,-6.8810242558381214e-18,-4.846973115344397e-18)
sum a = (-1.237505929510983e-16,-1.192166659980243e-16,9.215839364675837e-17)
sum e = 4.144510971760277
sum de = 5.560771298724482e-19
Info: CFL hydro = 0.011271666419584332 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011271666419584332 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0576e+04 | 800 | 1 | 3.888e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.618917584251 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.86066197044529, dt = 0.011271666419584332 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.69 us (1.1%)
patch tree reduce : 1332.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 398.91 us (95.6%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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: 3.97625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.807061720736401e-17,-8.492687751545963e-18,-3.2682618472439665e-18)
sum a = (-7.986421709213946e-17,-7.37650593277135e-17,-9.384794422590191e-17)
sum e = 4.144510971723831
sum de = 9.444417361885449e-20
Info: CFL hydro = 0.011271318497983135 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011271318497983135 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0579e+04 | 800 | 1 | 3.887e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.8212819494026 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.871933636864874, dt = 0.011271318497983135 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (1.2%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 385.27 us (95.6%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 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: 3.97625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7274895802071454e-17,-8.402818039889391e-18,-6.491588838659647e-18)
sum a = (-3.548056216201424e-17,2.887633661807836e-16,1.141465164320661e-16)
sum e = 4.1445109714014
sum de = 6.365452598616067e-19
Info: CFL hydro = 0.011270173062300602 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011270173062300602 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0383e+04 | 800 | 1 | 3.925e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1033.8301439037075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.883204955362856, dt = 0.011270173062300602 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.70 us (1.0%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 431.64 us (95.9%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.9774999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7351004214130613e-17,-3.4599838987779845e-18,-4.286785246018438e-18)
sum a = (1.0081584253634138e-16,-4.8904101426450735e-17,6.890011227003779e-17)
sum e = 4.1445109708235055
sum de = 1.232432938255007e-19
Info: CFL hydro = 0.011268905804056194 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011268905804056194 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0279e+04 | 800 | 1 | 3.945e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1028.4899150695685 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.894475128425157, dt = 0.011268905804056194 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (1.0%)
patch tree reduce : 1473.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 418.12 us (95.9%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.9774999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.9022674465225806e-17,-6.410706098168733e-18,-3.3581315589005374e-18)
sum a = (9.516004201608784e-17,-4.4161976308039006e-17,-6.530532380377495e-17)
sum e = 4.144510970052722
sum de = -6.722265227646941e-19
Info: CFL hydro = 0.011267521907346967 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011267521907346967 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0736e+04 | 800 | 1 | 3.858e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1051.540925692169 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.905744034229212, dt = 0.011267521907346967 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (0.9%)
patch tree reduce : 1462.00 ns (0.3%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 421.75 us (96.0%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 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: 3.9774999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0909189495749993e-17,-6.4346713546104856e-18,-5.0926169938723584e-18)
sum a = (1.1775927884066023e-16,-4.329922707613592e-17,8.339909241729792e-18)
sum e = 4.14451096916329
sum de = 3.022981179411793e-19
Info: CFL hydro = 0.011266029497014057 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011266029497014057 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0892e+04 | 800 | 1 | 3.829e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1059.2855302721161 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.917011556136558, dt = 0.011266029497014057 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.08 us (1.0%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 394.88 us (95.9%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 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: 3.9774999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.182267766902585e-17,-6.35977992823001e-18,-5.080634365651482e-18)
sum a = (-2.0646068424569583e-17,-3.3395584851581797e-17,1.1053974533758236e-16)
sum e = 4.144510968243936
sum de = 1.5786576554452023e-19
Info: CFL hydro = 0.011264439849791117 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011264439849791117 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0513e+04 | 800 | 1 | 3.900e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1039.9525438213916 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.928277585633573, dt = 0.011264439849791117 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (0.9%)
patch tree reduce : 1042.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 392.03 us (96.1%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.9774999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.160904987527554e-17,-6.054222908597668e-18,-2.794948032519359e-18)
sum a = (-2.2855665068499146e-16,1.8159673068737786e-17,-9.292528185289445e-18)
sum e = 4.144510967390959
sum de = -7.453889935837843e-19
Info: CFL hydro = 0.011262767417182091 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011262767417182091 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0749e+04 | 800 | 1 | 3.856e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1051.7529324510424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.939542025483366, dt = 0.011262767417182091 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (1.0%)
patch tree reduce : 1132.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 403.47 us (95.9%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.9774999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.717809863347469e-17,-6.1321099920333635e-18,-3.0795354527651673e-18)
sum a = (-7.074543701605272e-17,2.6529538881019766e-16,2.2077992496964282e-17)
sum e = 4.144510966701355
sum de = -1.40438062654763e-18
Info: CFL hydro = 0.011261029793137207 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011261029793137207 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0480e+04 | 800 | 1 | 3.906e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1037.9776549121643 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.95080479290055, dt = 0.011261029793137207 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.60 us (1.1%)
patch tree reduce : 1734.00 ns (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1071.00 ns (0.3%)
LB compute : 399.55 us (95.6%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9774999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6896881327416003e-17,-1.3255782469344227e-18,-3.0405919110473197e-18)
sum a = (-1.446482965683063e-16,7.260274439028852e-17,-1.1642321579403254e-16)
sum e = 4.144510966264093
sum de = 1.1274008527954738e-18
Info: CFL hydro = 0.011259247550150304 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011259247550150304 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0539e+04 | 800 | 1 | 3.895e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.8284534487896 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.962065822693685, dt = 0.011259247550150304 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.3%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1383.00 ns (0.3%)
LB compute : 409.45 us (95.4%)
LB move op cnt : 0
LB apply : 4.03 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (74.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9774999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5021974467980788e-17,-2.038544626076553e-18,-5.0926169938723584e-18)
sum a = (-8.599932274122804e-17,9.080435665779937e-17,-8.497480802834313e-17)
sum e = 4.144510966153279
sum de = 9.579942633446137e-19
Info: CFL hydro = 0.011257444087573181 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011257444087573181 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0516e+04 | 800 | 1 | 3.899e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1039.4693730854813 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.973325070243835, dt = 0.011257444087573181 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.81 us (1.2%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 385.36 us (95.4%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.9774999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4848226358778084e-17,-1.343552189265737e-18,-6.192023133137744e-18)
sum a = (3.2706583728881415e-17,2.4405018897458427e-16,-1.495432001965342e-17)
sum e = 4.144510966421929
sum de = 4.353749348887104e-19
Info: CFL hydro = 0.011255645438549094 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011255645438549094 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0622e+04 | 800 | 1 | 3.879e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.6863261401643 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.984582514331407, dt = 0.011255645438549094 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (1.2%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 380.65 us (95.4%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 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: 3.9774999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5284094460312454e-17,2.2197818779173044e-18,-5.796596401848831e-18)
sum a = (1.6243051684808647e-16,1.0042640711916291e-16,-8.962107212098785e-17)
sum e = 4.1445109670969424
sum de = -1.0113573390216346e-18
Info: CFL hydro = 0.011253879821366532 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011253879821366532 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1174e+04 | 800 | 1 | 3.778e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1072.4699526538664 (tsim/hr) [sph::Model][rank=0]
---------------- t = 23.995838159769956, dt = 0.004161840230043623 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.1%)
patch tree reduce : 1443.00 ns (0.3%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 427.01 us (95.9%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 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: 3.9774999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7640178734242226e-17,1.7165114926405067e-18,-6.836089400009836e-18)
sum a = (-1.0205005324309162e-16,4.191523351662473e-17,1.0496782321487496e-17)
sum e = 4.144510920029168
sum de = -8.360215189399944e-19
Info: CFL hydro = 0.011253249528038734 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011253249528038734 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0520e+04 | 800 | 1 | 3.899e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 384.3073311647895 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 2595 [SPH][rank=0]
Info: time since start : 990.25035401 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15105996809088312 max=0.15123914764232294 delta=0.000179179551439812
Number of particle pairs: 319600
Distance min=0.120114 max=2.280538 mean=0.931065
---------------- t = 24, dt = 0.011253249528038734 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.31 us (1.5%)
patch tree reduce : 1363.00 ns (0.2%)
gen split merge : 571.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 682.76 us (96.4%)
LB move op cnt : 0
LB apply : 5.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (76.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9774999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5948381412307275e-17,1.963653199696077e-18,-6.314845072401724e-18)
sum a = (2.0488496863465062e-16,7.644916804918976e-18,4.716512250589608e-17)
sum e = 4.144510967921201
sum de = -1.412850956020173e-18
Info: CFL hydro = 0.011251567964222121 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011251567964222121 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6814e+04 | 800 | 1 | 4.758e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 851.4620478739412 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.01125324952804, dt = 0.011251567964222121 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (1.0%)
patch tree reduce : 1313.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 398.12 us (96.1%)
LB move op cnt : 0
LB apply : 3.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 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: 3.9774999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.995582163792654e-17,2.3126472466290945e-18,-6.096162107370735e-18)
sum a = (2.335534066530968e-16,-4.220281659392575e-17,-1.4530930702039697e-16)
sum e = 4.144510969869427
sum de = 1.5161889755851976e-19
Info: CFL hydro = 0.011250004495921331 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011250004495921331 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1205e+04 | 800 | 1 | 3.773e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1073.6721585481891 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.022504817492262, dt = 0.011250004495921331 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.82 us (0.9%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1093.00 ns (0.3%)
LB compute : 413.05 us (96.2%)
LB move op cnt : 0
LB apply : 3.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.9774999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.255904761891188e-17,2.053522911352648e-18,-8.954018938049693e-18)
sum a = (-2.271187352984863e-16,9.640024403694853e-17,8.222629268017966e-17)
sum e = 4.144510971717427
sum de = 9.215718466126788e-19
Info: CFL hydro = 0.011248579994288632 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011248579994288632 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0863e+04 | 800 | 1 | 3.835e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1056.1774066822463 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.033754821988182, dt = 0.011248579994288632 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (1.0%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 373.57 us (96.1%)
LB move op cnt : 0
LB apply : 3.03 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 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: 3.9774999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7259730288229407e-17,2.9769341986239153e-18,-6.212992732524277e-18)
sum a = (7.88337110651441e-17,2.587049432887158e-17,3.085526766875605e-18)
sum e = 4.1445109737609265
sum de = -1.4831546906422799e-18
Info: CFL hydro = 0.0112473280903411 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0112473280903411 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1519e+04 | 800 | 1 | 3.718e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1089.259076353065 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.04500340198247, dt = 0.0112473280903411 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (1.0%)
patch tree reduce : 1472.00 ns (0.3%)
gen split merge : 702.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.2%)
LB compute : 426.84 us (96.1%)
LB move op cnt : 0
LB apply : 3.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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: 3.9774999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.997005100893883e-17,4.431325698932756e-18,-6.2669145595182195e-18)
sum a = (-9.634033089584414e-17,1.1893956772041653e-16,4.721155519025198e-17)
sum e = 4.1445109758825245
sum de = 2.524158182817815e-19
Info: CFL hydro = 0.011246281561465572 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011246281561465572 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0142e+04 | 800 | 1 | 3.972e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1019.4277105343998 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.05625073007281, dt = 0.011246281561465572 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.0%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 393.81 us (96.0%)
LB move op cnt : 0
LB apply : 2.90 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 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: 3.9774999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8057323979181474e-17,5.774877888198493e-18,-6.153079591419896e-18)
sum a = (-7.024965577341397e-17,1.0436869180383115e-17,-8.968997223325789e-17)
sum e = 4.144510977961469
sum de = 1.2112571145736495e-19
Info: CFL hydro = 0.011245472256125218 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011245472256125218 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0914e+04 | 800 | 1 | 3.825e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1058.40183643702 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.067497011634277, dt = 0.011245472256125218 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.31 us (1.0%)
patch tree reduce : 1052.00 ns (0.2%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.2%)
LB compute : 429.42 us (96.2%)
LB move op cnt : 0
LB apply : 3.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.9774999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.749938285264693e-17,5.279845559823548e-18,-7.929504225164784e-18)
sum a = (-1.4900173518380335e-16,7.418445131544416e-17,1.3887866107995443e-17)
sum e = 4.144510979876492
sum de = 3.550762114890027e-18
Info: CFL hydro = 0.011244930759450968 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011244930759450968 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0533e+04 | 800 | 1 | 3.896e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1039.080461958688 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.0787424838904, dt = 0.011244930759450968 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.1%)
patch tree reduce : 1443.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 397.80 us (95.7%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.9774999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.505342886706059e-17,6.970893967494692e-18,-6.770184944795018e-18)
sum a = (4.748116432522169e-18,-3.177193872765308e-17,-1.372190670713631e-16)
sum e = 4.144510981513619
sum de = 3.3034284942917713e-19
Info: CFL hydro = 0.011244685644131653 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011244685644131653 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0287e+04 | 800 | 1 | 3.943e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1026.5502840432446 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.08998741464985, dt = 0.011244685644131653 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (1.1%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 390.16 us (95.7%)
LB move op cnt : 0
LB apply : 3.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 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: 3.9774999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6384249513841645e-17,4.89939711381073e-18,-9.022919050319731e-18)
sum a = (-6.158921122677574e-17,-1.4253336268732166e-16,-6.890011227003779e-18)
sum e = 4.144510982774673
sum de = 6.572975670693371e-19
Info: CFL hydro = 0.011244763077746085 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011244763077746085 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9369e+04 | 800 | 1 | 4.130e-02 | 0.0% | 1.2% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 980.1108188808574 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.101232100293984, dt = 0.011244763077746085 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.72 us (0.7%)
patch tree reduce : 1222.00 ns (0.2%)
gen split merge : 1091.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 638.48 us (97.3%)
LB move op cnt : 0
LB apply : 3.42 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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: 3.9774999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5275107489146797e-17,2.8151687176420875e-18,-8.741327287129141e-18)
sum a = (-1.1236709614126597e-16,-6.573669841972648e-17,-1.411553604419209e-16)
sum e = 4.1445109835851435
sum de = 1.4175096372300716e-18
Info: CFL hydro = 0.011245185828257186 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011245185828257186 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0577e+04 | 800 | 1 | 3.888e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1041.24234490921 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.11247686337173, dt = 0.011245185828257186 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.97 us (1.0%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.3%)
LB compute : 381.81 us (96.0%)
LB move op cnt : 0
LB apply : 3.00 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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: 3.9774999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.345150125678221e-17,3.145439907979986e-18,-1.125767921351313e-17)
sum a = (6.1599696026469e-17,2.203006198408078e-17,5.964952328352141e-17)
sum e = 4.1445109838995045
sum de = 1.5695520512622185e-18
Info: CFL hydro = 0.011245973493297194 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011245973493297194 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0628e+04 | 800 | 1 | 3.878e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1043.8388029723483 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.123722049199987, dt = 0.011245973493297194 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (1.1%)
patch tree reduce : 1493.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 410.91 us (95.9%)
LB move op cnt : 0
LB apply : 3.61 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.9774999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5391938114300338e-17,3.586363180795037e-18,-9.535176406762186e-18)
sum a = (-9.86469868283628e-17,1.498427659020561e-17,4.4341715731352146e-17)
sum e = 4.1445109837048175
sum de = 1.0376153603865179e-20
Info: CFL hydro = 0.011247140730513352 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011247140730513352 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0599e+04 | 800 | 1 | 3.884e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1042.4346215058058 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.134968022693283, dt = 0.011247140730513352 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (1.0%)
patch tree reduce : 1132.00 ns (0.3%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 413.30 us (95.9%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9774999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.331295211797833e-17,3.053697910663903e-18,-8.46872249510421e-18)
sum a = (-4.6486606182888977e-17,-2.1430331441625927e-16,7.88636676356963e-17)
sum e = 4.1445109830227524
sum de = 5.991964008436124e-19
Info: CFL hydro = 0.011248697897086974 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011248697897086974 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0479e+04 | 800 | 1 | 3.906e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1036.5034542860153 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.146215163423797, dt = 0.011248697897086974 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (0.9%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 383.86 us (96.0%)
LB move op cnt : 0
LB apply : 3.09 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.9774999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.2868097045278304e-17,-1.2436657493307772e-18,-7.354338070562729e-18)
sum a = (-1.4399524333026855e-16,-5.88137349651153e-17,1.557741668713898e-19)
sum e = 4.144510981908762
sum de = 3.1424922343134543e-19
Info: CFL hydro = 0.011250650098411358 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011250650098411358 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1178e+04 | 800 | 1 | 3.778e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1071.991061299841 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.157463861320885, dt = 0.011250650098411358 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (1.0%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 413.08 us (96.2%)
LB move op cnt : 0
LB apply : 3.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9774999999999996
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0905941674109835e-17,2.4433327856630247e-19,-7.75276045890686e-18)
sum a = (-4.116631925281997e-17,2.69908700675235e-18,-1.6969198954993741e-16)
sum e = 4.144510980448048
sum de = 8.233160247311799e-19
Info: CFL hydro = 0.011252997209426404 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011252997209426404 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0624e+04 | 800 | 1 | 3.879e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.1693793981067 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.168714511419296, dt = 0.011252997209426404 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (1.0%)
patch tree reduce : 1332.00 ns (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 428.95 us (96.1%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9825000000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.0803340419968582e-17,-1.1914289794303952e-18,-1.0472817065045744e-17)
sum a = (1.4290482416216881e-16,-2.537321525770522e-17,-9.142146201117449e-17)
sum e = 4.14451097875193
sum de = 2.6012381810179563e-18
Info: CFL hydro = 0.011255733672460834 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011255733672460834 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0633e+04 | 800 | 1 | 3.877e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.803610383362 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.17996750862872, dt = 0.011255733672460834 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (1.0%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 396.14 us (95.8%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9825000000000004
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.3011888583928816e-17,-1.6686745940399777e-19,-1.138649246688755e-17)
sum a = (1.7761250680393653e-16,-8.239554730379954e-17,3.974637780864615e-17)
sum e = 4.144510976948362
sum de = -7.733410808431762e-19
Info: CFL hydro = 0.011258847841856857 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011258847841856857 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0655e+04 | 800 | 1 | 3.873e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1046.1722094290792 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.19122324230118, dt = 0.011258847841856857 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.23 us (1.1%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 382.94 us (95.6%)
LB move op cnt : 0
LB apply : 3.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (72.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.975
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5580664508779138e-17,-1.2978684191736466e-18,-1.0122325189585116e-17)
sum a = (-1.963173894567242e-16,-6.279945667708422e-17,4.317340947981672e-17)
sum e = 4.1445109751732945
sum de = -8.555032767268433e-20
Info: CFL hydro = 0.011262322586091266 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011262322586091266 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0971e+04 | 800 | 1 | 3.815e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1062.4898793665031 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.202482090143036, dt = 0.011262322586091266 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (0.9%)
patch tree reduce : 972.00 ns (0.2%)
gen split merge : 611.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1893.00 ns (0.4%)
LB compute : 412.41 us (96.0%)
LB move op cnt : 0
LB apply : 3.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 3.975
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.1480358914448086e-17,-2.0904537459865203e-18,-9.58310691964569e-18)
sum a = (2.490289710003583e-16,-1.30050272509658e-16,-1.0060015522836561e-16)
sum e = 4.144510973564247
sum de = -1.1943164556285635e-18
Info: CFL hydro = 0.011265451600816366 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011265451600816366 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0351e+04 | 800 | 1 | 3.931e-02 | 0.1% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1031.3763992720128 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.213744412729127, dt = 0.011265451600816366 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (1.0%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 405.80 us (96.0%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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: 3.975
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7290810230177306e-17,-4.297082817145754e-18,-1.1458388236212806e-17)
sum a = (7.872586741115622e-17,-7.178867458553275e-17,8.540917830134988e-17)
sum e = 4.144510972241416
sum de = 4.760325163569168e-19
Info: CFL hydro = 0.011268889565056197 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011268889565056197 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0362e+04 | 800 | 1 | 3.929e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1032.2567103016665 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.225009864329945, dt = 0.011268889565056197 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.2%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 382.12 us (95.5%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.9699999999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6833598072124498e-17,-4.00772106846819e-18,-9.550154692038282e-18)
sum a = (9.014531210565118e-17,-6.198913144364747e-17,4.4275811276137326e-17)
sum e = 4.144510971319436
sum de = 6.2172218328465645e-19
Info: CFL hydro = 0.011272687925986433 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011272687925986433 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0675e+04 | 800 | 1 | 3.869e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.4143827673204 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.236278753895, dt = 0.011272687925986433 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.32 us (1.1%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 379.78 us (95.6%)
LB move op cnt : 0
LB apply : 3.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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: 3.9699999999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7634374648697738e-17,-4.4544484268277286e-18,-9.250588986516378e-18)
sum a = (-5.262171183197756e-17,-1.1903542874618356e-16,9.420742307252819e-17)
sum e = 4.144510970880516
sum de = -1.3501705179233547e-18
Info: CFL hydro = 0.01127681615089971 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01127681615089971 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0680e+04 | 800 | 1 | 3.869e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1049.0242314987393 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.24755144182099, dt = 0.01127681615089971 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.54 us (1.2%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 1163.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 373.51 us (95.6%)
LB move op cnt : 0
LB apply : 3.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.9699999999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.623203268972333e-17,-6.94188524155763e-18,-7.69284731780248e-18)
sum a = (-1.401008891584838e-16,1.47311435690396e-16,8.247643004429045e-17)
sum e = 4.144510970973996
sum de = 1.4907779871675686e-19
Info: CFL hydro = 0.011281237109339778 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011281237109339778 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0976e+04 | 800 | 1 | 3.814e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1064.4548313363564 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.25882825797189, dt = 0.011281237109339778 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (1.0%)
patch tree reduce : 951.00 ns (0.2%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1173.00 ns (0.3%)
LB compute : 384.21 us (96.1%)
LB move op cnt : 0
LB apply : 3.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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: 3.9699999999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.453021863950999e-17,-4.298252995682948e-18,-6.925959111666407e-18)
sum a = (8.357883184061106e-17,-2.004094569941534e-17,1.1195893786749238e-17)
sum e = 4.144510971614003
sum de = 5.709002064493984e-19
Info: CFL hydro = 0.01128590772369308 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01128590772369308 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0869e+04 | 800 | 1 | 3.833e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1059.4165733406844 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.27010949508123, dt = 0.01128590772369308 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 us (1.0%)
patch tree reduce : 1062.00 ns (0.2%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 415.39 us (96.4%)
LB move op cnt : 0
LB apply : 2.81 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 3.9699999999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6697670133243936e-17,-4.9160604561803864e-18,-7.087724592648235e-18)
sum a = (3.435419510925188e-17,1.351610506744276e-16,-1.2959362203730304e-16)
sum e = 4.144510972777886
sum de = -1.0028870095490916e-18
Info: CFL hydro = 0.011290779519558257 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011290779519558257 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0669e+04 | 800 | 1 | 3.870e-02 | 0.0% | 1.3% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1049.7275143318316 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.28139540280492, dt = 0.011290779519558257 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.69 us (1.2%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1433.00 ns (0.4%)
LB compute : 387.14 us (95.6%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.9699999999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.6806262701495625e-17,-2.217160677993988e-18,-9.178693217191122e-18)
sum a = (-4.6480614868778534e-17,-9.33746304111773e-17,4.615259042123205e-17)
sum e = 4.14451097440791
sum de = 1.3383120566617945e-18
Info: CFL hydro = 0.011295799168729685 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011295799168729685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0900e+04 | 800 | 1 | 3.828e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1061.8767846720793 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.29268618232448, dt = 0.011295799168729685 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (1.0%)
patch tree reduce : 932.00 ns (0.2%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 389.50 us (96.3%)
LB move op cnt : 0
LB apply : 2.96 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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: 3.9699999999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.5883974785620067e-17,-4.655625520942282e-18,-8.151182847250992e-18)
sum a = (5.872686091051395e-17,1.0000401947437703e-16,2.4771088189606193e-17)
sum e = 4.144510976415363
sum de = 6.606856988583543e-19
Info: CFL hydro = 0.011300909487658885 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011300909487658885 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0934e+04 | 800 | 1 | 3.821e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1064.1168939391591 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.30398198149321, dt = 0.011300909487658885 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (1.0%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 371.94 us (95.8%)
LB move op cnt : 0
LB apply : 3.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 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: 3.9675000000000002
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7180345376266103e-17,-3.239990333785337e-18,-7.501125266268462e-18)
sum a = (-1.3364225254743155e-16,-2.894703412458153e-17,-2.2102556884817078e-16)
sum e = 4.144510978686058
sum de = 5.21772295508649e-19
Info: CFL hydro = 0.011306050330736506 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011306050330736506 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0667e+04 | 800 | 1 | 3.871e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1050.9941779291207 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.315282890980868, dt = 0.011306050330736506 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (1.1%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1483.00 ns (0.4%)
LB compute : 402.19 us (95.7%)
LB move op cnt : 0
LB apply : 3.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 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: 3.9625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4793181160388435e-17,-4.0016361400747766e-18,-1.1739979999403396e-17)
sum a = (-5.951172305898133e-17,-1.1413453380384521e-18,1.1030009277316484e-17)
sum e = 4.144510981088467
sum de = 4.87890977618477e-19
Info: CFL hydro = 0.011311159632335309 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011311159632335309 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0926e+04 | 800 | 1 | 3.823e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1064.6530587635152 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.326588941311606, dt = 0.011311159632335309 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 us (0.9%)
patch tree reduce : 802.00 ns (0.2%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 712.00 ns (0.2%)
LB compute : 398.35 us (96.6%)
LB move op cnt : 0
LB apply : 3.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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: 3.9625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.4300021117673e-17,-3.706002234437848e-18,-1.0688504373021514e-17)
sum a = (6.328924660561253e-17,6.257628022647041e-17,-4.3317201018467234e-17)
sum e = 4.144510983483641
sum de = 2.2260025853843013e-18
Info: CFL hydro = 0.011316174484607528 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011316174484607528 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1011e+04 | 800 | 1 | 3.808e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1069.4640071727085 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.33790010094394, dt = 0.011316174484607528 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (0.9%)
patch tree reduce : 972.00 ns (0.2%)
gen split merge : 601.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 402.96 us (96.6%)
LB move op cnt : 0
LB apply : 2.88 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.9625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.567877227733756e-17,-2.684483178608157e-18,-1.1050978876703018e-17)
sum a = (9.348022732237377e-17,-8.254233449950527e-17,1.555405056210827e-16)
sum e = 4.144510985734214
sum de = 1.1011428314305904e-19
Info: CFL hydro = 0.011321032332949258 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011321032332949258 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0581e+04 | 800 | 1 | 3.887e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.0269364564256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.34921627542855, dt = 0.011321032332949258 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (0.9%)
patch tree reduce : 1323.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 407.26 us (96.0%)
LB move op cnt : 0
LB apply : 4.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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: 3.9625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.712305343508504e-17,-4.180813877690065e-18,-8.321935299398477e-18)
sum a = (7.126069002955038e-17,-1.633142356793761e-16,-7.222529160133092e-17)
sum e = 4.1445109877142645
sum de = 4.2690460541616737e-19
Info: CFL hydro = 0.01132567238080371 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01132567238080371 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0972e+04 | 800 | 1 | 3.815e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1068.401206230559 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.360537307761497, dt = 0.01132567238080371 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (1.2%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1041.00 ns (0.2%)
LB compute : 404.65 us (95.7%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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: 3.9625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.808503380694225e-17,-7.008339680684931e-18,-1.0571673747867972e-17)
sum a = (9.90064656749891e-19,-3.1035007092069196e-18,2.410904798040279e-17)
sum e = 4.144510989318156
sum de = -6.06475590234079e-19
Info: CFL hydro = 0.011330036549683871 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011330036549683871 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0506e+04 | 800 | 1 | 3.901e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1045.077983151876 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.3718629801423, dt = 0.011330036549683871 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (1.0%)
patch tree reduce : 1042.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1153.00 ns (0.3%)
LB compute : 379.61 us (96.1%)
LB move op cnt : 0
LB apply : 2.96 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 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: 3.9625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.7245500917217118e-17,-6.3481717571410364e-18,-9.909633538664566e-18)
sum a = (1.8551205445854913e-16,-9.309303864798671e-17,1.656598351536126e-17)
sum e = 4.144510990468459
sum de = -4.1758724299637007e-19
Info: CFL hydro = 0.011334070933158635 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011334070933158635 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0791e+04 | 800 | 1 | 3.848e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1060.0224904211427 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.383193016691983, dt = 0.011334070933158635 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (1.0%)
patch tree reduce : 1022.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.3%)
LB compute : 375.26 us (95.9%)
LB move op cnt : 0
LB apply : 3.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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: 3.9625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.039730659643944e-17,-7.383545726851115e-18,-9.466276294492148e-18)
sum a = (6.566779830745644e-17,-8.522644322098153e-17,8.322534430809521e-17)
sum e = 4.144510991119571
sum de = 7.750351467376848e-19
Info: CFL hydro = 0.011337726718770178 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011337726718770178 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0954e+04 | 800 | 1 | 3.818e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1068.7143969214408 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.394527087625143, dt = 0.011337726718770178 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.10 us (1.0%)
patch tree reduce : 1022.00 ns (0.2%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 393.42 us (96.1%)
LB move op cnt : 0
LB apply : 3.48 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 3.9625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0984080922130474e-17,-8.606148262512382e-18,-7.719808231299452e-18)
sum a = (6.858856393629501e-17,-1.0139100869094343e-16,6.590445521481875e-19)
sum e = 4.144510991261652
sum de = -4.480804290975249e-19
Info: CFL hydro = 0.01134040955980904 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.01134040955980904 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0539e+04 | 800 | 1 | 3.895e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1047.9142888612428 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.405864814343914, dt = 0.01134040955980904 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (1.0%)
patch tree reduce : 1342.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1263.00 ns (0.3%)
LB compute : 379.44 us (96.0%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 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: 3.9625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.160418193256081e-17,-9.898399824707494e-18,-8.618505347865161e-18)
sum a = (9.662791397314517e-17,1.4449551805849013e-16,6.341206854487652e-17)
sum e = 4.144510990913959
sum de = -6.395098751769968e-20
Info: CFL hydro = 0.011339327778641684 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011339327778641684 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1011e+04 | 800 | 1 | 3.807e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1072.249622781649 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.417205223903725, dt = 0.011339327778641684 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (0.9%)
patch tree reduce : 1403.00 ns (0.3%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 406.24 us (96.3%)
LB move op cnt : 0
LB apply : 3.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.285187309605954e-17,-5.981578225008607e-18,-7.363325041728386e-18)
sum a = (2.2653158651566337e-17,5.2783477312959385e-17,-2.0717964193894842e-17)
sum e = 4.144510990104947
sum de = 3.5331861812345003e-19
Info: CFL hydro = 0.011335757536947854 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011335757536947854 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1002e+04 | 800 | 1 | 3.809e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1071.6558217066342 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.428544551682368, dt = 0.011335757536947854 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.73 us (1.1%)
patch tree reduce : 1934.00 ns (0.5%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 403.38 us (95.5%)
LB move op cnt : 0
LB apply : 3.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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: 3.9675000000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.263356458816045e-17,-6.0602142227081066e-18,-8.163165475471868e-18)
sum a = (-5.3310712954677934e-17,-1.4626295572106935e-16,1.0973091793267323e-16)
sum e = 4.144510988938628
sum de = 2.3346345608696653e-19
Info: CFL hydro = 0.011332691554599253 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011332691554599253 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0598e+04 | 800 | 1 | 3.884e-02 | 0.0% | 1.6% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1050.7470290755555 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.439880309219316, dt = 0.011332691554599253 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.3%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 375.64 us (95.4%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 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: 3.9675000000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.144386747296511e-17,-9.356934811976653e-18,-5.937392283444126e-18)
sum a = (-5.726498026756706e-17,6.964003956267689e-17,8.113437568355233e-17)
sum e = 4.144510987558428
sum de = -1.0770023924338429e-18
Info: CFL hydro = 0.011330185672258445 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011330185672258445 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0697e+04 | 800 | 1 | 3.865e-02 | 0.0% | 1.5% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1055.4687917084432 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.451213000773915, dt = 0.011330185672258445 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.2%)
patch tree reduce : 1173.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 411.64 us (95.7%)
LB move op cnt : 0
LB apply : 3.65 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (73.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9675000000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.0798303377565405e-17,-7.6801157753178e-18,-5.500026353382147e-18)
sum a = (-5.775626802462298e-18,-8.923013887528177e-17,1.8400224330271875e-16)
sum e = 4.1445109860860825
sum de = 1.5297415027412664e-18
Info: CFL hydro = 0.011328288177166216 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011328288177166216 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0404e+04 | 800 | 1 | 3.921e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1040.3218185952207 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.462543186446172, dt = 0.011328288177166216 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.86 us (1.2%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 386.20 us (95.6%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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: 3.9675000000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (3.065605647458399e-17,-9.082832191424113e-18,-2.687104378531474e-18)
sum a = (-1.3515206370326195e-16,1.8986474415978238e-17,5.21244327608112e-18)
sum e = 4.144510984646033
sum de = 2.202285662861181e-18
Info: CFL hydro = 0.011327039250376094 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011327039250376094 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0266e+04 | 800 | 1 | 3.948e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1033.098849826174 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.473871474623337, dt = 0.011327039250376094 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.50 us (1.1%)
patch tree reduce : 1323.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 387.63 us (95.7%)
LB move op cnt : 0
LB apply : 3.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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: 3.9675000000000007
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.8935800410624454e-17,-8.670929346331494e-18,-3.2562792190230904e-18)
sum a = (-4.793051288350455e-18,-2.2633387315001894e-16,1.7732791938369073e-17)
sum e = 4.1445109833575255
sum de = -1.0486267887008238e-18
Info: CFL hydro = 0.011326470853455067 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011326470853455067 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0500e+04 | 800 | 1 | 3.903e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1044.900286396526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.485198513873712, dt = 0.011326470853455067 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.65 us (1.0%)
patch tree reduce : 1392.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 425.99 us (95.8%)
LB move op cnt : 0
LB apply : 3.75 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (73.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 3.9725000000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.902866577933625e-17,-1.2471669235140644e-17,-3.2892314466304997e-18)
sum a = (1.2713568542349581e-17,3.163863198869583e-17,2.540766531384024e-17)
sum e = 4.144510982325681
sum de = 1.3010426069826053e-18
Info: CFL hydro = 0.011326605892552495 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011326605892552495 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0021e+04 | 800 | 1 | 3.996e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1020.4673376843821 (tsim/hr) [sph::Model][rank=0]
---------------- t = 24.496524984727166, dt = 0.0034750152728335593 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 800 min = 800 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 800 min = 800 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 800
max = 800
avg = 800
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.3%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 405.01 us (95.3%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 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: 3.9725000000000006
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (2.942409251062516e-17,-1.1058468019341066e-17,-2.881822087120711e-18)
sum a = (-1.729812209965679e-16,-1.445719073133982e-16,1.8685785339060628e-17)
sum e = 4.144510933048166
sum de = 8.749850345136923e-19
Info: CFL hydro = 0.011327112773199302 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.011327112773199302 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0190e+04 | 800 | 1 | 3.962e-02 | 0.0% | 1.4% 0.0% | 1.00 GB | 5.04 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 315.72584351304886 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 2640 [SPH][rank=0]
Info: time since start : 992.944375142 (s) [SPH][rank=0]
Info: collected : 1 patches [PatchScheduler][rank=0]
hpart min=0.15105378357694638 max=0.15123325457878004 delta=0.00017947100183365872
Number of particle pairs: 319600
Distance min=0.119133 max=2.285543 mean=0.931039
Convert PNG sequence to Image sequence in mpl#
244 import matplotlib.animation as animation
245 from shamrock.utils.plot import show_image_sequence
246
247 render_gif = True
248
249
250 # If the animation is not returned only a static image will be shown in the doc
251 glob_str = os.path.join(dump_folder, f"{sim_name}_*.png")
252 ani = show_image_sequence(glob_str, render_gif=render_gif)
253
254 if render_gif and shamrock.sys.world_rank() == 0:
255 # To save the animation using Pillow as a gif
256 # writer = animation.PillowWriter(fps=15, metadata=dict(artist="Me"), bitrate=1800)
257 # ani.save("scatter.gif", writer=writer)
258
259 # Show the animation
260 plt.show()
Total running time of the script: (2 minutes 42.228 seconds)
Estimated memory usage: 152 MB