Note
Go to the end to download the full example code.
Kelvin-Helmholtz instability in SPH#
This simple example shows how to setup a Kelvin-Helmholtz instability in SPH
Warning
This test is shown at low resolution to avoid smashing our testing time, the instability starts to appear for resol > 64 with M6 kernel
14 import shamrock
15
16 # If we use the shamrock executable to run this script instead of the python interpreter,
17 # we should not initialize the system as the shamrock executable needs to handle specific MPI logic
18 if not shamrock.sys.is_initialized():
19 shamrock.change_loglevel(1)
20 shamrock.sys.init("0:0")
-> modified loglevel to 0 enabled log types :
log status :
- Loglevel: 1, enabled log types :
[xxx] Info: xxx ( logger::info )
[xxx] : xxx ( logger::normal )
[xxx] Warning: xxx ( logger::warn )
[xxx] Error: xxx ( logger::err )
Setup parameters
26 import numpy as np
27
28 kernel = "M6" # SPH kernel to use
29 resol = 32 # number of particles in the x & y direction
30 thick = 6 # number of particles in the z direction
31
32 # CFLs
33 C_cour = 0.3
34 C_force = 0.25
35
36 gamma = 1.4
37
38 vslip = 1 # slip speed between the two layers
39
40 rho_1 = 1
41
42 fact = 2 / 3
43 rho_2 = rho_1 / (fact**3)
44
45 P_1 = 3.5
46 P_2 = 3.5
47
48 render_gif = True
49
50 dump_folder = "_to_trash"
51 sim_name = "kh_sph"
52
53 u_1 = P_1 / ((gamma - 1) * rho_1)
54 u_2 = P_2 / ((gamma - 1) * rho_2)
55
56 print("Mach number 1 :", vslip / np.sqrt(gamma * P_1 / rho_1))
57 print("Mach number 2 :", vslip / np.sqrt(gamma * P_2 / rho_2))
58
59
60 import os
61
62 # Create the dump directory if it does not exist
63 if shamrock.sys.world_rank() == 0:
64 os.makedirs(dump_folder, exist_ok=True)
Mach number 1 : 0.45175395145262565
Mach number 2 : 0.8299250027587324
Configure the solver
69 ctx = shamrock.Context()
70 ctx.pdata_layout_new()
71
72 model = shamrock.get_Model_SPH(context=ctx, vector_type="f64_3", sph_kernel=kernel)
73
74 cfg = model.gen_default_config()
75 cfg.set_artif_viscosity_VaryingCD10(
76 alpha_min=0.0, alpha_max=1, sigma_decay=0.1, alpha_u=1, beta_AV=2
77 )
78 cfg.set_boundary_periodic()
79 cfg.set_eos_adiabatic(gamma)
80 cfg.print_status()
81 model.set_solver_config(cfg)
82
83 # Set scheduler criteria to effectively disable patch splitting and merging.
84 crit_split = int(1e9)
85 crit_merge = 1
86 model.init_scheduler(crit_split, crit_merge)
----- 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.4
},
"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
}
]
------------------------------------
Setup the simulation
91 # Compute box size
92 (xs, ys, zs) = model.get_box_dim_fcc_3d(1, resol, resol, thick)
93 dr = 1 / xs
94 (xs, ys, zs) = model.get_box_dim_fcc_3d(dr, resol, resol, thick)
95
96 model.resize_simulation_box((-xs / 2, -ys / 2, -zs / 2), (xs / 2, ys / 2, zs / 2))
97
98 # rho1 domain
99 y_interface = ys / 4
100 model.add_cube_fcc_3d(dr, (-xs / 2, -ys / 2, -zs / 2), (xs / 2, -y_interface, zs / 2))
101 model.add_cube_fcc_3d(dr, (-xs / 2, y_interface, -zs / 2), (xs / 2, ys / 2, zs / 2))
102
103 # rho 2 domain
104 model.add_cube_fcc_3d(dr * fact, (-xs / 2, -y_interface, -zs / 2), (xs / 2, y_interface, zs / 2))
105
106 model.set_value_in_a_box(
107 "uint", "f64", u_1, (-xs / 2, -ys / 2, -zs / 2), (xs / 2, -y_interface, zs / 2)
108 )
109 model.set_value_in_a_box(
110 "uint", "f64", u_1, (-xs / 2, y_interface, -zs / 2), (xs / 2, ys / 2, zs / 2)
111 )
112
113 model.set_value_in_a_box(
114 "uint", "f64", u_2, (-xs / 2, -y_interface, -zs / 2), (xs / 2, y_interface, zs / 2)
115 )
116
117
118 # the velocity function to trigger KH
119 def vel_func(r):
120 x, y, z = r
121
122 ampl = 0.01
123 n = 2
124 pert = np.sin(2 * np.pi * n * x / (xs))
125
126 sigma = 0.05 / (2**0.5)
127 gauss1 = np.exp(-((y - y_interface) ** 2) / (2 * sigma * sigma))
128 gauss2 = np.exp(-((y + y_interface) ** 2) / (2 * sigma * sigma))
129 pert *= gauss1 + gauss2
130
131 # Alternative formula (See T. Tricco paper)
132 # interf_sz = ys/32
133 # vx = np.arctan(y/interf_sz)/np.pi
134
135 vx = 0
136 if np.abs(y) > y_interface:
137 vx = vslip / 2
138 else:
139 vx = -vslip / 2
140
141 return (vx, ampl * pert, 0)
142
143
144 model.set_field_value_lambda_f64_3("vxyz", vel_func)
145
146 vol_b = xs * ys * zs
147
148 totmass = (rho_1 * vol_b / 2) + (rho_2 * vol_b / 2)
149
150 pmass = model.total_mass_to_part_mass(totmass)
151 model.set_particle_mass(pmass)
152
153 print("Total mass :", totmass)
154 print("Current part mass :", pmass)
155
156 model.set_cfl_cour(C_cour)
157 model.set_cfl_force(C_force)
158
159 model.timestep()
Info: Add fcc lattice size : ( 32 8 6 ) [SPH][rank=0]
Info: Push particles : [Model][rank=0]
rank = 0 patch id=0, add N=1536 particles, coords = (-0.5,-0.4330127018922193,-0.07654655446197431) (0.5,0.4330127018922193,0.07654655446197431)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 49.97 us (86.6%)
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 1536.0 min = 1536.0 factor = 1
- strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 1536
max = 1536
avg = 1536
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (0.2%)
patch tree reduce : 8.51 us (0.9%)
gen split merge : 1032.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.1%)
LB compute : 977.29 us (97.8%)
LB move op cnt : 0
LB apply : 4.72 us (0.5%)
Info: current particle counts : min = 1536 max = 1536 [Model][rank=0]
Info: Add fcc lattice size : ( 32 8 6 ) [SPH][rank=0]
Info: Push particles : [Model][rank=0]
rank = 0 patch id=0, add N=1536 particles, coords = (-0.5,-0.4330127018922193,-0.07654655446197431) (0.5,0.4330127018922193,0.07654655446197431)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (56.7%)
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 3072.0 min = 3072.0 factor = 1
- strategy "round robin" : max = 2918.4 min = 2918.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 3072
max = 3072
avg = 3072
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (0.5%)
patch tree reduce : 471.00 ns (0.1%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 490.00 ns (0.1%)
LB compute : 436.65 us (97.7%)
LB move op cnt : 0
LB apply : 3.02 us (0.7%)
Info: current particle counts : min = 3072 max = 3072 [Model][rank=0]
Info: Add fcc lattice size : ( 48 24 9 ) [SPH][rank=0]
Info: Push particles : [Model][rank=0]
rank = 0 patch id=0, add N=10368 particles, coords = (-0.5,-0.4330127018922193,-0.07654655446197431) (0.5,0.4330127018922193,0.07654655446197431)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (59.3%)
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (0.6%)
patch tree reduce : 441.00 ns (0.1%)
gen split merge : 410.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 420.00 ns (0.1%)
LB compute : 322.69 us (97.4%)
LB move op cnt : 0
LB apply : 1633.00 ns (0.5%)
Info: current particle counts : min = 13440 max = 13440 [Model][rank=0]
Total mass : 0.2900242657210449
Current part mass : 2.1579186437577746e-05
---------------- t = 0, dt = 0 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 40.49 us (6.4%)
patch tree reduce : 8.22 us (1.3%)
gen split merge : 1122.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1462.00 ns (0.2%)
LB compute : 562.82 us (88.7%)
LB move op cnt : 0
LB apply : 4.29 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1862.00 ns (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: 1.0654761904761905
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.0171875 unconverged cnt = 13440
Warning: High interface/patch volume 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.125297619047619
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.018906250000000003 unconverged cnt = 13440
Warning: High interface/patch volume 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.125297619047619
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.020796875000000006 unconverged cnt = 13440
Warning: High interface/patch volume 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.3791666666666664
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.02287656250000001 unconverged cnt = 13344
Warning: High interface/patch volume 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.4250744047619044
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.025164218750000012 unconverged cnt = 13152
Warning: High interface/patch volume 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.598883928571429
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.027680640625000016 unconverged cnt = 12768
Warning: High interface/patch volume 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.8520833333333335
Warning: smoothing length is not converged, rerunning the iterator ... [Smoothinglength][rank=0]
largest h = 0.027840759716552387 unconverged cnt = 144
Warning: High interface/patch volume 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.8520833333333335
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.443920760128672e-21,0)
sum a = (7.582135945499286e-17,1.2879664700140343e-17,3.201420823196343e-16)
sum e = 1.196351145408931
sum de = -5.30825383648903e-16
Info: CFL hydro = 1.6959368633748e-05 sink sink = inf [SPH][rank=0]
Info: cfl dt = 1.6959368633748e-05 cfl multiplier : 0.01 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 1.3073e+04 | 13440 | 1 | 1.028e+00 | 0.0% | 0.5% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [sph::Model][rank=0]
<shamrock.model_sph.TimestepLog object at 0x7fafd1a0fbb0>
Plotting functions
164 import copy
165
166 import matplotlib
167 import matplotlib.pyplot as plt
168
169
170 def plot_state(iplot):
171 pixel_x = 1080
172 pixel_y = 1080
173 radius = 0.5
174 center = (0.0, 0.0, 0.0)
175 aspect = pixel_x / pixel_y
176 pic_range = [-radius * aspect, radius * aspect, -radius, radius]
177 delta_x = (radius * 2 * aspect, 0.0, 0.0)
178 delta_y = (0.0, radius * 2, 0.0)
179
180 def _render(field, field_type, center):
181 # Helper to reduce code duplication
182 return model.render_cartesian_slice(
183 field,
184 field_type,
185 center=center,
186 delta_x=delta_x,
187 delta_y=delta_y,
188 nx=pixel_x,
189 ny=pixel_y,
190 )
191
192 arr_rho = _render("rho", "f64", center)
193 arr_alpha = _render("alpha_AV", "f64", center)
194 arr_vel = _render("vxyz", "f64_3", center)
195
196 vy_range = np.abs(arr_vel[:, :, 1]).max()
197
198 my_cmap = copy.copy(matplotlib.colormaps.get_cmap("gist_heat"))
199 my_cmap.set_bad(color="black")
200
201 my_cmap2 = copy.copy(matplotlib.colormaps.get_cmap("nipy_spectral"))
202 my_cmap2.set_bad(color="black")
203
204 # rho plot
205 fig = plt.figure(dpi=200)
206 im0 = plt.imshow(arr_rho, cmap=my_cmap, origin="lower", extent=pic_range, vmin=1, vmax=3)
207
208 cbar0 = plt.colorbar(im0, extend="both")
209 cbar0.set_label(r"$\rho$ [code unit]")
210
211 plt.title("t = {:0.3f} [code unit]".format(model.get_time()))
212 plt.xlabel("x")
213 plt.ylabel("y")
214 plt.savefig(os.path.join(dump_folder, f"{sim_name}_rho_{iplot:04}.png"))
215
216 plt.close(fig)
217
218 # alpha plot
219 fig = plt.figure(dpi=200)
220 im0 = plt.imshow(
221 arr_alpha, cmap=my_cmap2, origin="lower", norm="log", extent=pic_range, vmin=1e-6, vmax=1
222 )
223
224 cbar0 = plt.colorbar(im0, extend="both")
225 cbar0.set_label(r"$\alpha_{AV}$ [code unit]")
226
227 plt.title("t = {:0.3f} [code unit]".format(model.get_time()))
228 plt.xlabel("x")
229 plt.ylabel("y")
230 plt.savefig(os.path.join(dump_folder, f"{sim_name}_alpha_{iplot:04}.png"))
231
232 plt.close(fig)
233
234 # vy plot
235 fig = plt.figure(dpi=200)
236 im1 = plt.imshow(
237 arr_vel[:, :, 1],
238 cmap=my_cmap,
239 origin="lower",
240 extent=pic_range,
241 vmin=-vy_range,
242 vmax=vy_range,
243 )
244
245 cbar1 = plt.colorbar(im1, extend="both")
246 cbar1.set_label(r"$v_y$ [code unit]")
247
248 plt.title("t = {:0.3f} [code unit]".format(model.get_time()))
249 plt.xlabel("x")
250 plt.ylabel("y")
251 plt.savefig(os.path.join(dump_folder, f"{sim_name}_vy_{iplot:04}.png"))
252
253 plt.close(fig)
Running the simulation
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1851.22 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1840.99 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1820.47 ms [sph::CartesianRender][rank=0]
---------------- t = 0, dt = 1.6959368633748e-05 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.38 us (2.9%)
patch tree reduce : 8.92 us (2.1%)
gen split merge : 611.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1081.00 ns (0.3%)
LB compute : 393.52 us (92.0%)
LB move op cnt : 0
LB apply : 4.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (67.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8520833333333333
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.0877842065875115e-20,5.347347922772819e-21)
sum a = (-5.0675347421385516e-17,-5.519856300060147e-17,-3.636780322695878e-17)
sum e = 1.1963511508247078
sum de = 4.3021142204224816e-16
Info: CFL hydro = 0.0005766286633394807 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0005766286633394807 cfl multiplier : 0.34 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.4712e+04 | 13440 | 1 | 2.457e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.24853776443467474 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6959368633748e-05, dt = 0.0005766286633394807 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.9%)
patch tree reduce : 1703.00 ns (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.4%)
LB compute : 289.37 us (93.6%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1983.00 ns (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: 1.8520833333333335
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,6.5883701498113736e-21,-1.797764070708473e-20)
sum a = (-5.040702107346593e-17,3.2505820433687534e-17,7.472888789560595e-17)
sum e = 1.1963573975888835
sum de = -8.847089727481716e-16
Info: CFL hydro = 0.0009504173631537266 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0009504173631537266 cfl multiplier : 0.56 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0889e+04 | 13440 | 1 | 2.207e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.404496265344974 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0005935880319732287, dt = 0.0009504173631537266 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.8%)
patch tree reduce : 1702.00 ns (0.6%)
gen split merge : 1192.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.4%)
LB compute : 280.46 us (93.3%)
LB move op cnt : 0
LB apply : 3.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1853.00 ns (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: 1.8520833333333337
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.197885481783886e-21,8.692156527194323e-20)
sum a = (5.385693126100352e-17,7.421140136747531e-17,-8.615192384989708e-18)
sum e = 1.1963671337333188
sum de = -6.38378239159465e-16
Info: CFL hydro = 0.001183423392023894 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001183423392023894 cfl multiplier : 0.7066666666666667 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.0446e+04 | 13440 | 1 | 2.223e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.388229856105271 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0015440053951269552, dt = 0.001183423392023894 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.7%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.4%)
LB compute : 298.23 us (93.6%)
LB move op cnt : 0
LB apply : 4.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1733.00 ns (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: 1.8520833333333333
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,4.551964830778767e-20,3.586169661090509e-20)
sum a = (-1.3742142247024742e-17,-9.01576529009824e-17,-6.331543502516908e-17)
sum e = 1.1963733462943709
sum de = -2.1163626406917047e-16
Info: CFL hydro = 0.0013321235052401233 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013321235052401233 cfl multiplier : 0.8044444444444444 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9528e+04 | 13440 | 1 | 2.258e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.869749701968203 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0027274287871508493, dt = 0.0013321235052401233 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.9%)
patch tree reduce : 1613.00 ns (0.5%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.4%)
LB compute : 261.42 us (88.1%)
LB move op cnt : 0
LB apply : 3.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1783.00 ns (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: 1.8811011904761907
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.724955093768796e-19,-7.606572809327676e-20)
sum a = (4.550048214007913e-17,-1.5946251533507093e-17,8.245285348214845e-17)
sum e = 1.1963750600813958
sum de = 2.7755575615628914e-17
Info: CFL hydro = 0.0014517457261939495 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014517457261939495 cfl multiplier : 0.8696296296296296 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9266e+04 | 13440 | 1 | 2.268e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.147289296104027 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.004059552292390973, dt = 0.0014517457261939495 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.9%)
patch tree reduce : 1863.00 ns (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.4%)
LB compute : 313.39 us (93.7%)
LB move op cnt : 0
LB apply : 3.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1753.00 ns (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: 1.8811011904761903
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,5.749850312562653e-20,1.2592771127253102e-19)
sum a = (7.014817381326438e-18,-7.605135346749536e-17,1.0244316640215794e-17)
sum e = 1.196373785684952
sum de = 4.2327252813834093e-16
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.012118974700471404
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,6.708158697989762e-20,8.09321378630238e-20)
sum a = (-3.5783235111848245e-17,2.7599281500300734e-17,2.0613213370537112e-17)
sum e = 1.196349218492897
sum de = -2.0990154059319366e-16
Info: CFL hydro = 0.0007674045592355258 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0007674045592355258 cfl multiplier : 0.4565432098765432 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2122e+04 | 13440 | 1 | 3.191e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.379704494750815 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.005511298018584922, dt = 0.0007674045592355258 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.6%)
patch tree reduce : 1882.00 ns (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 327.44 us (94.4%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1502.00 ns (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: 1.8811011904761903
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,8.62477546884398e-20,9.957423067328553e-20)
sum a = (-2.4896851853396287e-17,4.3545533033807824e-17,3.633905397539597e-17)
sum e = 1.1963562107800345
sum de = 3.8163916471489756e-16
Info: CFL hydro = 0.001066093231945647 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001066093231945647 cfl multiplier : 0.6376954732510288 [sph::Model][rank=0]
Info: Timestep 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.9008e+04 | 13440 | 1 | 2.278e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.129345129182342 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.006278702577820448, dt = 0.001066093231945647 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.9%)
patch tree reduce : 1993.00 ns (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 309.65 us (93.8%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1973.00 ns (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: 1.881101190476191
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-3.25824851045217e-19,1.5123304207521563e-19)
sum a = (1.4508788955366427e-17,3.0665868333667484e-19,6.169589385379727e-17)
sum e = 1.1963596526803169
sum de = 5.221517662690189e-16
Info: CFL hydro = 0.0012616150352869704 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012616150352869704 cfl multiplier : 0.7584636488340193 [sph::Model][rank=0]
Info: Timestep 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.2467e+04 | 13440 | 1 | 2.562e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.982528334002938 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.007344795809766096, dt = 0.0012616150352869704 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (2.0%)
patch tree reduce : 1923.00 ns (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.4%)
LB compute : 290.94 us (93.2%)
LB move op cnt : 0
LB apply : 4.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1772.00 ns (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: 1.881101190476191
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,7.474805406331449e-19,2.1187599459052486e-19)
sum a = (1.293716320326597e-17,2.2692742566913938e-17,7.200729208099296e-17)
sum e = 1.1963603867261248
sum de = 1.214306433183765e-16
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010224409073169963
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,-1.8687013515828623e-19,2.41972867320345e-19)
sum a = (-4.620004726144092e-17,3.649238331706431e-17,2.1514023252838595e-17)
sum e = 1.19634984361963
sum de = -2.896988204881268e-16
Info: CFL hydro = 0.0006909728549565848 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0006909728549565848 cfl multiplier : 0.4194878829446731 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1841e+04 | 13440 | 1 | 3.212e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.13946128699609 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.008606410845053066, dt = 0.0006909728549565848 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.5%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 369.02 us (94.8%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1582.00 ns (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: 1.8811011904761907
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,3.8811489609797907e-19,2.0064581819880091e-19)
sum a = (3.3847452173285485e-17,-2.790594018363741e-17,1.1030129516266024e-17)
sum e = 1.1963529770256187
sum de = -9.194034422677078e-17
Info: CFL hydro = 0.0010028304874655524 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0010028304874655524 cfl multiplier : 0.6129919219631154 [sph::Model][rank=0]
Info: Timestep 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.8244e+04 | 13440 | 1 | 2.308e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.779951684121837 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.00929738370000965, dt = 0.0010028304874655524 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 1843.00 ns (0.6%)
gen split merge : 821.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 296.62 us (93.7%)
LB move op cnt : 0
LB apply : 3.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1762.00 ns (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: 1.8811011904761903
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-7.04356663288925e-19,2.689252906604824e-19)
sum a = (1.2199265746487096e-17,3.066586833366748e-17,1.6243327132989494e-17)
sum e = 1.1963549136684808
sum de = -1.5265566588595902e-16
Info: CFL hydro = 0.0012050701391501297 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012050701391501297 cfl multiplier : 0.7419946146420768 [sph::Model][rank=0]
Info: Timestep 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.8429e+04 | 13440 | 1 | 2.300e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.695044646972672 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.010300214187475202, dt = 0.0012050701391501297 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 1993.00 ns (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 301.82 us (93.9%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1993.00 ns (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: 1.8811011904761903
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,5.031119023492321e-19,2.711713259388272e-19)
sum a = (5.2869873624013596e-17,-2.6832634791959047e-17,4.44175936645465e-17)
sum e = 1.1963555237912649
sum de = -6.938893903907228e-17
Info: CFL hydro = 0.0013343524074419953 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013343524074419953 cfl multiplier : 0.8279964097613846 [sph::Model][rank=0]
Info: Timestep 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.0638e+04 | 13440 | 1 | 2.654e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.34529516229188 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.011505284326625332, dt = 0.0013343524074419953 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.8%)
patch tree reduce : 1292.00 ns (0.4%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.4%)
LB compute : 310.56 us (93.9%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1823.00 ns (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: 1.8811011904761905
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,1.0541392239698197e-18,3.659540146849772e-19)
sum a = (2.3066482837230512e-17,4.231889830046113e-17,-3.6343845517323106e-17)
sum e = 1.1963554092635758
sum de = -2.0209528495129803e-16
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011128264207043754
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,7.618551664145516e-19,3.0635921196622886e-19)
sum a = (1.743162953091911e-17,-6.4398323500701715e-18,8.040207353733443e-18)
sum e = 1.19635006204974
sum de = -8.673617379884035e-18
Info: CFL hydro = 0.0007116148707606397 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0007116148707606397 cfl multiplier : 0.4426654699204615 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1448e+04 | 13440 | 1 | 3.243e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.814090667011683 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.012839636734067328, dt = 0.0007116148707606397 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.8%)
patch tree reduce : 1923.00 ns (0.6%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1071.00 ns (0.3%)
LB compute : 315.61 us (94.0%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1472.00 ns (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: 1.8811011904761905
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,6.756074117261118e-19,3.270227365270009e-19)
sum a = (-1.7383714111647755e-17,2.1236113821064733e-17,-7.137480854661107e-17)
sum e = 1.1963515298236997
sum de = 7.806255641895632e-17
Info: CFL hydro = 0.0010138488734798446 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0010138488734798446 cfl multiplier : 0.628443646613641 [sph::Model][rank=0]
Info: Timestep 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.6790e+04 | 13440 | 1 | 2.367e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.824738433346827 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.013551251604827967, dt = 0.0010138488734798446 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.6%)
patch tree reduce : 2.04 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.3%)
LB compute : 354.44 us (94.6%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1722.00 ns (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: 1.8811011904761905
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,6.133173666733497e-19,2.466146735622575e-19)
sum a = (1.1959688650130319e-17,-7.378974567788739e-17,-2.1101950647104937e-17)
sum e = 1.1963528909155192
sum de = -1.6219664500383146e-16
Info: CFL hydro = 0.0012140161439088862 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012140161439088862 cfl multiplier : 0.7522957644090941 [sph::Model][rank=0]
Info: Timestep 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.7144e+04 | 13440 | 1 | 2.352e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.51849002435041 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.014565100478307813, dt = 0.0012140161439088862 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.6%)
patch tree reduce : 1923.00 ns (0.5%)
gen split merge : 1021.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.3%)
LB compute : 342.95 us (94.4%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1703.00 ns (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: 1.8811011904761903
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,2.5395172213818386e-19,2.1202573027574783e-19)
sum a = (8.868185798742466e-17,-4.523215579215954e-17,-9.111596128640951e-17)
sum e = 1.1963542529966895
sum de = 2.992397996059992e-17
Info: CFL hydro = 0.0013514695226909445 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013514695226909445 cfl multiplier : 0.834863842939396 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3524e+04 | 13440 | 1 | 3.088e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.153286362966568 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.015779116622216698, dt = 0.0013514695226909445 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1993.00 ns (0.6%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.4%)
LB compute : 313.35 us (93.9%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1462.00 ns (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: 1.8811011904761903
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,1.1499700625125307e-19,4.62683267339026e-20)
sum a = (-1.9166167708542177e-19,1.682789524810003e-17,9.90483589467824e-17)
sum e = 1.196355855273173
sum de = 8.543513119185775e-17
Info: CFL hydro = 0.0014501049557003444 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014501049557003444 cfl multiplier : 0.889909228626264 [sph::Model][rank=0]
Info: Timestep 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.7000e+04 | 13440 | 1 | 2.358e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.6341910339021 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.01713058614490764, dt = 0.0014501049557003444 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (2.2%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 1192.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.4%)
LB compute : 261.13 us (92.5%)
LB move op cnt : 0
LB apply : 3.70 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1482.00 ns (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: 1.8640624999999995
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,6.708158697989762e-20,3.4469154738331324e-19)
sum a = (-9.77474553135651e-18,-1.2879664700140343e-17,2.6440926239415718e-17)
sum e = 1.1963577746442513
sum de = 3.7730235602495554e-17
Info: CFL hydro = 0.0015382686268546532 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0015382686268546532 cfl multiplier : 0.9266061524175093 [sph::Model][rank=0]
Info: Timestep 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.6964e+04 | 13440 | 1 | 2.359e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.125990625443805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.018580691100607987, dt = 0.0014193088993920133 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.0%)
patch tree reduce : 1822.00 ns (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.2%)
LB compute : 540.62 us (96.4%)
LB move op cnt : 0
LB apply : 3.95 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1772.00 ns (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: 1.8632440476190475
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.7311788984672605e-19,3.069581547071208e-19)
sum a = (-3.641571864623014e-17,-1.5946251533507093e-17,-4.000338566417288e-18)
sum e = 1.1963587059762273
sum de = 1.457167719820518e-16
Info: CFL hydro = 0.0016009811815893937 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016009811815893937 cfl multiplier : 0.9510707682783396 [sph::Model][rank=0]
Info: Timestep 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.8007e+04 | 13440 | 1 | 2.317e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.052535346161246 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 20 [SPH][rank=0]
Info: time since start : 21.911773544000003 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1813.42 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1818.91 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1793.46 ms [sph::CartesianRender][rank=0]
---------------- t = 0.02, dt = 0.0016009811815893937 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.01 us (3.8%)
patch tree reduce : 1853.00 ns (0.5%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1261.00 ns (0.4%)
LB compute : 313.40 us (91.9%)
LB move op cnt : 0
LB apply : 4.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1903.00 ns (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: 1.8632440476190473
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,-4.791541927135544e-19,3.123486393751483e-19)
sum a = (7.340642232371654e-18,5.918512588397825e-17,-1.048844570140335e-16)
sum e = 1.1963620169444162
sum de = -1.214306433183765e-16
Info: CFL hydro = 0.0016578154489938772 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016578154489938772 cfl multiplier : 0.9673805121855598 [sph::Model][rank=0]
Info: Timestep 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.6318e+04 | 13440 | 1 | 2.386e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.15118247094407 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.021600981181589395, dt = 0.0016578154489938772 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.0%)
patch tree reduce : 1793.00 ns (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1352.00 ns (0.4%)
LB compute : 299.49 us (93.4%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1652.00 ns (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: 1.8632440476190475
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.31238773442199e-19,4.926304043836231e-20)
sum a = (-6.19833863694254e-17,-1.9932814416883864e-17,-3.3468920361041776e-18)
sum e = 1.196364137098591
sum de = -1.231653667943533e-16
Info: CFL hydro = 0.0017127056318353199 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017127056318353199 cfl multiplier : 0.9782536747903731 [sph::Model][rank=0]
Info: Timestep 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.6839e+04 | 13440 | 1 | 2.365e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.23983340844265 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.02325879663058327, dt = 0.0017127056318353199 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.7%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 1152.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1523.00 ns (0.5%)
LB compute : 300.03 us (93.8%)
LB move op cnt : 0
LB apply : 3.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1462.00 ns (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: 1.8811011904761903
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,3.545741026080303e-19,1.2982083908832866e-19)
sum a = (4.013395518168732e-17,4.216556895879279e-17,2.5826410987260583e-18)
sum e = 1.1963659339355448
sum de = 4.640385298237959e-17
Info: CFL hydro = 0.0017677005654260394 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017677005654260394 cfl multiplier : 0.9855024498602486 [sph::Model][rank=0]
Info: Timestep 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.3590e+04 | 13440 | 1 | 2.508e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.58512704471773 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.02497150226241859, dt = 0.0017677005654260394 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.9%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1081.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.4%)
LB compute : 283.62 us (93.3%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1713.00 ns (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: 1.8811011904761907
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,6.085258247462141e-19,1.3086898888488954e-19)
sum a = (-1.0273065891778608e-17,-8.417780857591724e-17,2.7354912862016824e-17)
sum e = 1.1963673913361168
sum de = -6.678685382510707e-17
Info: CFL hydro = 0.001863045236962047 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001863045236962047 cfl multiplier : 0.990334966573499 [sph::Model][rank=0]
Info: Timestep 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.7535e+04 | 13440 | 1 | 2.336e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.24225744793103 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.02673920282784463, dt = 0.001863045236962047 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.9%)
patch tree reduce : 1683.00 ns (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1292.00 ns (0.4%)
LB compute : 279.87 us (93.3%)
LB move op cnt : 0
LB apply : 3.79 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1753.00 ns (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: 1.8811011904761903
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-5.174865281306388e-19,1.8469896772255293e-19)
sum a = (-3.3847452173285485e-17,-2.3306059933587286e-17,2.521788516251437e-17)
sum e = 1.196369301165497
sum de = -6.852157730108388e-17
Info: CFL hydro = 0.0019187593324731893 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019187593324731893 cfl multiplier : 0.9935566443823326 [sph::Model][rank=0]
Info: Timestep 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.7680e+04 | 13440 | 1 | 2.330e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.78405517879164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.028602248064806678, dt = 0.0019187593324731893 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.8%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.4%)
LB compute : 296.95 us (93.7%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1562.00 ns (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: 1.8714285714285714
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,6.229004505276208e-20,2.1531991535065351e-19)
sum a = (4.75320959171846e-17,-2.5606000058612347e-17,6.583578607884238e-18)
sum e = 1.1963702851256781
sum de = 9.974659986866641e-17
Info: CFL hydro = 0.0019628452579179283 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019628452579179283 cfl multiplier : 0.9957044295882218 [sph::Model][rank=0]
Info: Timestep 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.6460e+04 | 13440 | 1 | 2.380e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.01798474024588 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.030521007397279868, dt = 0.0019628452579179283 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.7%)
patch tree reduce : 1873.00 ns (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 320.14 us (94.1%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1682.00 ns (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: 1.8703869047619046
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,3.449910187537592e-19,2.0738392403383528e-19)
sum a = (3.3387464148280475e-17,-5.0598682750551347e-17,-2.5826410987260583e-17)
sum e = 1.19637080501668
sum de = 5.204170427930421e-17
Info: CFL hydro = 0.001984428908702307 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001984428908702307 cfl multiplier : 0.9971362863921479 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9201e+04 | 13440 | 1 | 2.732e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.86782158860224 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0324838526551978, dt = 0.001984428908702307 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.5%)
patch tree reduce : 1903.00 ns (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1151.00 ns (0.3%)
LB compute : 336.44 us (94.5%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1512.00 ns (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: 1.8796875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.354079348994881e-20,1.5722246948413506e-19)
sum a = (-1.920450004395926e-17,-7.666467083416871e-20,-2.804968644145148e-17)
sum e = 1.1963707211399643
sum de = 1.43982048506075e-16
Info: CFL hydro = 0.0019912964735130357 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019912964735130357 cfl multiplier : 0.9980908575947653 [sph::Model][rank=0]
Info: Timestep 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.7746e+04 | 13440 | 1 | 2.327e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.69425575676822 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.034468281563900104, dt = 0.0019912964735130357 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 1913.00 ns (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1071.00 ns (0.3%)
LB compute : 312.64 us (94.1%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1613.00 ns (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: 1.8799851190476191
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.293716320326597e-19,8.31033052987571e-20)
sum a = (4.2472227642129466e-17,-4.400552105881284e-17,1.364631140848203e-17)
sum e = 1.1963702593498278
sum de = -1.8908485888147197e-16
Info: CFL hydro = 0.002007812002181347 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002007812002181347 cfl multiplier : 0.9987272383965102 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7456e+04 | 13440 | 1 | 2.832e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.312251492250763 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03645957803741314, dt = 0.002007812002181347 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.7%)
patch tree reduce : 1802.00 ns (0.6%)
gen split merge : 1112.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.4%)
LB compute : 302.28 us (94.0%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1512.00 ns (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: 1.8807291666666668
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.2759824153893835e-19,1.546769628353443e-19)
sum a = (-3.0052550966994134e-17,2.606598808361736e-18,2.6276815928411326e-17)
sum e = 1.1963698244142575
sum de = 1.6653345369377348e-16
Info: CFL hydro = 0.002023450062050561 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002023450062050561 cfl multiplier : 0.9991514922643402 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9893e+04 | 13440 | 1 | 2.694e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.83297454810215 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03846739003959449, dt = 0.0015326099604055093 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.5%)
patch tree reduce : 1843.00 ns (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1061.00 ns (0.3%)
LB compute : 347.24 us (94.8%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1612.00 ns (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: 1.8639136904761906
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.197885481783886e-19,2.0364053190326063e-19)
sum a = (2.322939526275312e-17,1.3799640750150367e-17,2.5316111772020647e-17)
sum e = 1.196362264490394
sum de = -1.0755285551056204e-16
Info: CFL hydro = 0.002039782222656882 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002039782222656882 cfl multiplier : 0.9994343281762269 [sph::Model][rank=0]
Info: Timestep 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.7928e+04 | 13440 | 1 | 2.320e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.780517056341623 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 31 [SPH][rank=0]
Info: time since start : 31.20732651 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1843.91 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1857.28 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1816.28 ms [sph::CartesianRender][rank=0]
---------------- t = 0.04, dt = 0.002039782222656882 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.30 us (3.3%)
patch tree reduce : 1662.00 ns (0.4%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 351.95 us (93.1%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 18.57 us (95.4%)
Warning: High interface/patch volume 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.8632440476190473
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-2.252024705753706e-19,2.611390350288872e-19)
sum a = (1.8897841360622587e-17,-2.491601802110483e-17,8.457071501394236e-18)
sum e = 1.1963686352547112
sum de = 5.724587470723463e-17
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010097879950727879
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.156193867210995e-19,2.376305324488784e-19)
sum a = (-5.404859293808894e-17,2.307606592108478e-17,-2.5653915477883705e-17)
sum e = 1.1963529970104603
sum de = -1.8648277366750676e-16
Info: CFL hydro = 0.0010325024709288968 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0010325024709288968 cfl multiplier : 0.499811442725409 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5877e+04 | 13440 | 1 | 3.746e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.60228756201894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.042039782222656884, dt = 0.0010325024709288968 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (2.1%)
patch tree reduce : 1903.00 ns (0.7%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1121.00 ns (0.4%)
LB compute : 259.38 us (93.1%)
LB move op cnt : 0
LB apply : 3.50 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1533.00 ns (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: 1.863244047619048
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-1.0541392239698198e-19,1.6972539920025436e-19)
sum a = (2.6985964133627386e-17,4.58071408234158e-17,3.9213979131677295e-17)
sum e = 1.1963569144775914
sum de = -1.2750217548429532e-16
Info: CFL hydro = 0.0013857563958165795 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013857563958165795 cfl multiplier : 0.6665409618169393 [sph::Model][rank=0]
Info: Timestep 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.8874e+04 | 13440 | 1 | 2.283e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.28251041762348 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04307228469358578, dt = 0.0013857563958165795 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.2%)
patch tree reduce : 1572.00 ns (0.3%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.2%)
LB compute : 445.41 us (95.8%)
LB move op cnt : 0
LB apply : 3.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1402.00 ns (61.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8804315476190476
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229103,3.8332335417084355e-20,2.6885042281787096e-19)
sum a = (2.357438628150688e-17,-7.513137741748534e-18,-1.973156965594417e-17)
sum e = 1.1963595826117641
sum de = -1.708702623837155e-16
Info: CFL hydro = 0.0016259299273677509 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016259299273677509 cfl multiplier : 0.7776939745446262 [sph::Model][rank=0]
Info: Timestep 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.8211e+04 | 13440 | 1 | 2.309e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.606937074384614 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.044458041089402364, dt = 0.0016259299273677509 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.9%)
patch tree reduce : 1702.00 ns (0.6%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.4%)
LB compute : 284.83 us (93.7%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1732.00 ns (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: 1.8811011904761905
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-7.666467083416871e-20,1.8701987084350922e-19)
sum a = (-3.664571265873264e-17,3.4729095887878426e-17,-4.219192243939203e-17)
sum e = 1.1963613907704858
sum de = 3.122502256758253e-17
Info: CFL hydro = 0.0018004902760843833 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018004902760843833 cfl multiplier : 0.8517959830297507 [sph::Model][rank=0]
Info: Timestep 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.7488e+04 | 13440 | 1 | 2.338e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.036907091332896 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.046083971016770114, dt = 0.0018004902760843833 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.7%)
patch tree reduce : 1382.00 ns (0.4%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.3%)
LB compute : 312.13 us (94.2%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1843.00 ns (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: 1.8811011904761903
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,3.976979799522502e-19,1.0182026595163031e-19)
sum a = (6.171506002150581e-18,5.9798443250651594e-18,2.458300585716891e-17)
sum e = 1.1963624252885525
sum de = -2.2551405187698492e-17
Info: CFL hydro = 0.0019066570317068008 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019066570317068008 cfl multiplier : 0.9011973220198337 [sph::Model][rank=0]
Info: Timestep 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.5181e+04 | 13440 | 1 | 2.436e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.612242290857726 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0478844612928545, dt = 0.0019066570317068008 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.7%)
patch tree reduce : 1563.00 ns (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1432.00 ns (0.5%)
LB compute : 286.42 us (93.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1592.00 ns (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: 1.8811011904761903
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.6957110885928335e-19,2.1359795497058918e-19)
sum a = (2.6525976108622373e-17,2.5299341375275673e-17,-2.6442124124897502e-17)
sum e = 1.196362641760899
sum de = -9.93129189996722e-17
Info: CFL hydro = 0.001964496979870758 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001964496979870758 cfl multiplier : 0.9341315480132225 [sph::Model][rank=0]
Info: Timestep 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.5191e+04 | 13440 | 1 | 2.435e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.186500099314312 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.049791118324561304, dt = 0.001964496979870758 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.9%)
patch tree reduce : 1753.00 ns (0.6%)
gen split merge : 1082.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1392.00 ns (0.5%)
LB compute : 280.01 us (93.3%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1763.00 ns (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: 1.8811011904761903
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.354079348994881e-19,9.927475930283956e-20)
sum a = (-7.858128760502292e-18,6.700492230906345e-17,-6.900179740719719e-17)
sum e = 1.1963625143847634
sum de = -1.5612511283791264e-17
Info: CFL hydro = 0.002003189919250456 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002003189919250456 cfl multiplier : 0.9560876986754817 [sph::Model][rank=0]
Info: Timestep 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.7794e+04 | 13440 | 1 | 2.326e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.411415924946944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05175561530443206, dt = 0.002003189919250456 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.8%)
patch tree reduce : 1652.00 ns (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.4%)
LB compute : 263.47 us (88.0%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1682.00 ns (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: 1.8811011904761907
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,3.1145022526381037e-19,-7.928504532557096e-20)
sum a = (5.749850312562653e-19,2.9515898271154955e-17,2.2503476660792083e-17)
sum e = 1.1963626135848286
sum de = -5.4643789493269423e-17
Info: CFL hydro = 0.00202973147370055 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00202973147370055 cfl multiplier : 0.9707251324503211 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8038e+04 | 13440 | 1 | 2.798e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.775783989948472 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05375880522368252, dt = 0.00202973147370055 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.9%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1061.00 ns (0.4%)
LB compute : 278.69 us (93.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1682.00 ns (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: 1.881101190476191
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.120726057336568e-19,6.199057368231611e-20)
sum a = (-1.3761308414733283e-17,-7.66646708341687e-18,-5.4015052144598993e-17)
sum e = 1.1963629705465169
sum de = -1.2923689896027213e-16
Info: CFL hydro = 0.0020919736609405987 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020919736609405987 cfl multiplier : 0.9804834216335475 [sph::Model][rank=0]
Info: Timestep 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.7974e+04 | 13440 | 1 | 2.318e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.518927076120438 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05578853669738307, dt = 0.0020919736609405987 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (2.1%)
patch tree reduce : 1933.00 ns (0.7%)
gen split merge : 1042.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.4%)
LB compute : 258.00 us (92.6%)
LB move op cnt : 0
LB apply : 3.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1502.00 ns (64.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.881101190476191
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,6.133173666733497e-19,-1.103552000093405e-19)
sum a = (2.0450300945014504e-17,-4.6880446215094165e-17,-4.008124822048883e-18)
sum e = 1.1963639952513287
sum de = -1.5525775109992423e-16
Info: CFL hydro = 0.002112663868943885 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002112663868943885 cfl multiplier : 0.9869889477556985 [sph::Model][rank=0]
Info: Timestep 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.7596e+04 | 13440 | 1 | 2.333e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.27405244114509 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.057880510358323665, dt = 0.002112663868943885 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.6%)
patch tree reduce : 1832.00 ns (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.4%)
LB compute : 314.79 us (94.2%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1663.00 ns (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: 1.881101190476191
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,8.145621276130425e-19,-8.594828331799383e-20)
sum a = (4.638212585467207e-18,-1.2783833861597633e-17,-4.490633094111432e-17)
sum e = 1.19636481559677
sum de = 1.2836953722228372e-16
Info: CFL hydro = 0.0021197262929455248 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021197262929455248 cfl multiplier : 0.9913259651704657 [sph::Model][rank=0]
Info: Timestep 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.7160e+04 | 13440 | 1 | 2.351e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.34630554566688 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05999317422726755, dt = 6.825772732449442e-06 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (2.0%)
patch tree reduce : 2.04 us (0.7%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.4%)
LB compute : 257.64 us (92.7%)
LB move op cnt : 0
LB apply : 3.84 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1492.00 ns (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: 1.881101190476191
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-4.4082185729647e-19,-1.1230176391723933e-19)
sum a = (-1.8437853335617574e-17,5.897429803918427e-17,-6.401020860460373e-17)
sum e = 1.1963538312524065
sum de = 2.168404344971009e-18
Info: CFL hydro = 0.002127361697601232 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002127361697601232 cfl multiplier : 0.9942173101136437 [sph::Model][rank=0]
Info: Timestep 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.3877e+04 | 13440 | 1 | 2.495e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.09850474947521189 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 43 [SPH][rank=0]
Info: time since start : 41.051407068 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1885.33 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1880.03 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1849.78 ms [sph::CartesianRender][rank=0]
---------------- t = 0.06, dt = 0.002127361697601232 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.43 us (3.2%)
patch tree reduce : 1792.00 ns (0.5%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1041.00 ns (0.3%)
LB compute : 361.06 us (93.1%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1903.00 ns (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: 1.855059523809524
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,-3.354079348994881e-20,-2.564972287869746e-19)
sum a = (-1.215135032721574e-17,-6.229004505276207e-19,2.2280669961180282e-17)
sum e = 1.196365177516942
sum de = -3.642919299551295e-17
Info: CFL hydro = 0.00213811657147329 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00213811657147329 cfl multiplier : 0.9961448734090957 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1818e+04 | 13440 | 1 | 3.214e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.82889681110249 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06212736169760123, dt = 0.00213811657147329 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.6%)
patch tree reduce : 1562.00 ns (0.4%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 356.04 us (94.9%)
LB move op cnt : 0
LB apply : 3.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1983.00 ns (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: 1.8549107142857149
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-7.666467083416871e-20,-1.3161766731100448e-19)
sum a = (-1.4911278477245813e-17,-2.6679305450290712e-17,-3.47530535975141e-17)
sum e = 1.1963660988344385
sum de = -1.7564075194265172e-17
Info: CFL hydro = 0.002142340237981182 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002142340237981182 cfl multiplier : 0.9974299156060639 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5533e+04 | 13440 | 1 | 2.952e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.07725871707642 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06426547826907453, dt = 0.002142340237981182 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (2.0%)
patch tree reduce : 1752.00 ns (0.5%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 312.74 us (93.9%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1412.00 ns (63.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8808035714285718
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.5395172213818386e-19,-2.325395191512969e-19)
sum a = (-4.224223362962696e-17,1.3885888504838806e-17,2.2675972170168964e-17)
sum e = 1.196366413739966
sum de = -6.591949208711867e-17
Info: CFL hydro = 0.0021833481476595967 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021833481476595967 cfl multiplier : 0.9982866104040425 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1939e+04 | 13440 | 1 | 3.205e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.06608124675933 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06640781850705571, dt = 0.0021833481476595967 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.7%)
patch tree reduce : 1902.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 338.01 us (94.4%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1512.00 ns (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: 1.8799107142857145
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.102054643241175e-19,-1.5722246948413506e-19)
sum a = (-4.615213184216956e-17,-3.656904798789847e-17,9.372256009477124e-18)
sum e = 1.1963669371966208
sum de = -6.830473686658678e-17
Info: CFL hydro = 0.002180794229603431 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002180794229603431 cfl multiplier : 0.9988577402693618 [sph::Model][rank=0]
Info: Timestep 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.0619e+04 | 13440 | 1 | 2.655e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.603180165865822 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0685911666547153, dt = 0.002180794229603431 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.9%)
patch tree reduce : 1652.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 300.23 us (93.7%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1573.00 ns (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: 1.8802083333333335
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,6.229004505276208e-20,-1.5812088359547295e-19)
sum a = (-1.364631140848203e-17,2.2309419212743094e-17,-1.6674565906431695e-18)
sum e = 1.1963665166241917
sum de = 5.377642775528102e-17
Info: CFL hydro = 0.00217066058249493 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00217066058249493 cfl multiplier : 0.9992384935129079 [sph::Model][rank=0]
Info: Timestep 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.7586e+04 | 13440 | 1 | 2.334e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.63817521796684 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07077196088431874, dt = 0.00217066058249493 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.7%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.4%)
LB compute : 320.62 us (94.1%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1563.00 ns (63.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8805803571428574
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,5.366526958391809e-19,-1.7309445211777153e-19)
sum a = (2.924757192323536e-17,7.53422052622793e-17,4.6760657666915775e-17)
sum e = 1.196365798946176
sum de = 5.984795992119984e-17
Info: CFL hydro = 0.002173892458537422 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002173892458537422 cfl multiplier : 0.9994923290086053 [sph::Model][rank=0]
Info: Timestep 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.7705e+04 | 13440 | 1 | 2.329e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.55110814683181 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07294262146681367, dt = 0.002173892458537422 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (2.0%)
patch tree reduce : 1853.00 ns (0.7%)
gen split merge : 1102.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1061.00 ns (0.4%)
LB compute : 261.04 us (93.1%)
LB move op cnt : 0
LB apply : 3.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1502.00 ns (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: 1.8804315476190478
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,7.331059148517383e-19,-2.994713704459715e-21)
sum a = (-5.558188635477231e-18,9.16142816468316e-18,3.4870446374728924e-17)
sum e = 1.196365208631695
sum de = -8.023096076392733e-18
Info: CFL hydro = 0.0021794331189129296 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021794331189129296 cfl multiplier : 0.9996615526724035 [sph::Model][rank=0]
Info: Timestep 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.6890e+04 | 13440 | 1 | 2.362e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.12685851534223 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0751165139253511, dt = 0.0021794331189129296 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.2%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 1081.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1211.00 ns (0.4%)
LB compute : 267.80 us (92.3%)
LB move op cnt : 0
LB apply : 4.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1493.00 ns (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: 1.8804315476190478
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,6.181089086004853e-19,5.854665292218743e-20)
sum a = (1.1768026973044897e-17,3.3042473129526713e-17,1.1831065696523774e-17)
sum e = 1.1963647050870467
sum de = -2.5153490401663703e-17
Info: CFL hydro = 0.002160361280571982 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002160361280571982 cfl multiplier : 0.9997743684482691 [sph::Model][rank=0]
Info: Timestep 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.6190e+04 | 13440 | 1 | 2.392e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.80270094681791 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07729594704426403, dt = 0.002160361280571982 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (2.1%)
patch tree reduce : 1993.00 ns (0.7%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1231.00 ns (0.4%)
LB compute : 265.81 us (92.3%)
LB move op cnt : 0
LB apply : 4.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1963.00 ns (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: 1.8805803571428574
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,1.0780969336054974e-18,5.854665292218743e-20)
sum a = (-1.2841332364723258e-17,-1.5773756024130212e-17,-9.016244444290953e-17)
sum e = 1.196364100967049
sum de = 9.71445146547012e-17
Info: CFL hydro = 0.002171200024203208 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002171200024203208 cfl multiplier : 0.9998495789655127 [sph::Model][rank=0]
Info: Timestep 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.7477e+04 | 13440 | 1 | 2.338e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.260215334909184 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07945630832483601, dt = 0.0005436916751639931 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.9%)
patch tree reduce : 1662.00 ns (0.6%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.4%)
LB compute : 280.19 us (93.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 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: 1.8805803571428574
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,7.7143825026882265e-19,-9.957423067328553e-20)
sum a = (9.621416189688173e-18,-5.309028455266183e-18,8.001635441220003e-17)
sum e = 1.1963552796479424
sum de = 3.903127820947816e-18
Info: CFL hydro = 0.0021759753338125637 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021759753338125637 cfl multiplier : 0.9998997193103417 [sph::Model][rank=0]
Info: Timestep 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.6910e+04 | 13440 | 1 | 2.362e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.287838686268003 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 53 [SPH][rank=0]
Info: time since start : 50.381455552000006 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1867.33 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1856.82 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1830.35 ms [sph::CartesianRender][rank=0]
---------------- t = 0.08, dt = 0.0021759753338125637 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.02 us (3.2%)
patch tree reduce : 1973.00 ns (0.5%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 351.30 us (93.1%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 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: 1.8652529761904766
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.3847556169421722e-18,8.744564017022369e-20)
sum a = (-4.358386536922491e-17,4.606588408748112e-17,2.3813963377863653e-18)
sum e = 1.1963637999447618
sum de = 4.640385298237959e-17
Info: CFL hydro = 0.0021849555137885106 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021849555137885106 cfl multiplier : 0.9999331462068944 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9668e+04 | 13440 | 1 | 3.388e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.120766848065514 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08217597533381256, dt = 0.0021849555137885106 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.7%)
patch tree reduce : 1633.00 ns (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 337.82 us (94.6%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1863.00 ns (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: 1.8644345238095241
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,4.0728106380652126e-19,3.039634410026611e-20)
sum a = (-4.454217375465202e-17,-8.49540383681132e-18,1.082888475532633e-18)
sum e = 1.1963636943170146
sum de = 4.423544863740858e-17
Info: CFL hydro = 0.002202307266014041 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002202307266014041 cfl multiplier : 0.9999554308045964 [sph::Model][rank=0]
Info: Timestep 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.7002e+04 | 13440 | 1 | 2.358e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.36058536252774 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08436093084760107, dt = 0.002202307266014041 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (1.9%)
patch tree reduce : 1983.00 ns (0.6%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 310.63 us (93.7%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1653.00 ns (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: 1.8796130952380958
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,4.743626507864189e-19,5.36802431524404e-20)
sum a = (-5.924262438710387e-17,3.8083175236873306e-17,1.9223666211667804e-17)
sum e = 1.196363684331111
sum de = -4.640385298237959e-17
Info: CFL hydro = 0.002223018841448953 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002223018841448953 cfl multiplier : 0.9999702872030642 [sph::Model][rank=0]
Info: Timestep 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.5474e+04 | 13440 | 1 | 2.423e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.72420990564175 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08656323811361512, dt = 0.002223018841448953 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.2%)
patch tree reduce : 2.31 us (0.8%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1492.00 ns (0.5%)
LB compute : 273.37 us (92.5%)
LB move op cnt : 0
LB apply : 4.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1903.00 ns (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: 1.8804315476190478
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,1.303299404180868e-18,9.118903230079832e-20)
sum a = (-2.827009737009971e-17,-1.5361683418396556e-17,4.635337660310926e-17)
sum e = 1.1963637411757617
sum de = 7.45931094670027e-17
Info: CFL hydro = 0.0022372274222737863 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022372274222737863 cfl multiplier : 0.9999801914687095 [sph::Model][rank=0]
Info: Timestep 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.1201e+04 | 13440 | 1 | 2.625e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.48799010964478 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08878625695506408, dt = 0.0022372274222737863 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (2.1%)
patch tree reduce : 2.11 us (0.7%)
gen split merge : 1122.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1332.00 ns (0.4%)
LB compute : 279.16 us (92.7%)
LB move op cnt : 0
LB apply : 3.79 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 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: 1.881101190476191
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,6.51649702090434e-19,2.1367282281320068e-19)
sum a = (-2.0220306932511996e-17,3.5802401279556784e-17,5.572563261258638e-17)
sum e = 1.1963637127811366
sum de = 1.3270634591222574e-16
Info: CFL hydro = 0.0022585965572124197 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022585965572124197 cfl multiplier : 0.9999867943124731 [sph::Model][rank=0]
Info: Timestep 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.7934e+04 | 13440 | 1 | 2.320e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.717606165777475 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09102348437733786, dt = 0.0022585965572124197 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.9%)
patch tree reduce : 1743.00 ns (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.4%)
LB compute : 293.79 us (93.4%)
LB move op cnt : 0
LB apply : 3.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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: 1.871949404761905
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,1.0397645981884132e-18,3.5262753870013147e-19)
sum a = (3.8332335417084353e-17,-2.1887763523155166e-17,-5.749850312562653e-19)
sum e = 1.1963636492528038
sum de = 9.974659986866641e-17
Info: CFL hydro = 0.002281046657683645 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002281046657683645 cfl multiplier : 0.9999911962083153 [sph::Model][rank=0]
Info: Timestep 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.6565e+04 | 13440 | 1 | 2.376e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.22048303743449 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09328208093455027, dt = 0.002281046657683645 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.7%)
patch tree reduce : 1733.00 ns (0.5%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 292.00 us (88.6%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1753.00 ns (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: 1.871949404761905
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,2.0028645255426574e-18,2.705723831979353e-19)
sum a = (-2.4063123558074704e-17,-3.6224056969144716e-17,-4.4561339922360565e-18)
sum e = 1.196363452244517
sum de = 8.413408858487514e-17
Info: CFL hydro = 0.00223341840747381 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00223341840747381 cfl multiplier : 0.9999941308055437 [sph::Model][rank=0]
Info: Timestep 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.2844e+04 | 13440 | 1 | 2.543e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.28756936336559 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09556312759223391, dt = 0.00223341840747381 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (2.1%)
patch tree reduce : 1873.00 ns (0.6%)
gen split merge : 1091.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1071.00 ns (0.3%)
LB compute : 286.19 us (93.3%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1852.00 ns (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: 1.8800595238095246
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,6.181089086004853e-19,2.622433357074067e-19)
sum a = (3.605156145976784e-17,-3.074253300450165e-17,1.2390927423572518e-17)
sum e = 1.196362618042023
sum de = -5.204170427930421e-18
Info: CFL hydro = 0.0022521637422939526 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022521637422939526 cfl multiplier : 0.9999960872036958 [sph::Model][rank=0]
Info: Timestep 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.7800e+04 | 13440 | 1 | 2.325e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.57838844581924 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09779654599970772, dt = 0.0022034540002922876 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (2.2%)
patch tree reduce : 1953.00 ns (0.7%)
gen split merge : 1052.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.4%)
LB compute : 259.73 us (92.4%)
LB move op cnt : 0
LB apply : 3.81 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1742.00 ns (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: 1.8805803571428577
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,9.439337596457023e-19,3.02054311016068e-19)
sum a = (-7.973125766753546e-18,-3.6070727627476377e-17,1.0982214096994668e-17)
sum e = 1.1963619933516378
sum de = -4.597017211338539e-17
Info: CFL hydro = 0.0022720353414706572 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022720353414706572 cfl multiplier : 0.9999973914691305 [sph::Model][rank=0]
Info: Timestep 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.7388e+04 | 13440 | 1 | 2.342e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.87115580361033 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 62 [SPH][rank=0]
Info: time since start : 59.356290138000006 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1863.32 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1868.10 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1843.93 ms [sph::CartesianRender][rank=0]
---------------- t = 0.1, dt = 0.0022720353414706572 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.45 us (3.5%)
patch tree reduce : 1753.00 ns (0.5%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 327.20 us (92.4%)
LB move op cnt : 0
LB apply : 4.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 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: 1.86421130952381
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,5.98942740891943e-19,3.3450952078815017e-19)
sum a = (-4.446550908381785e-18,4.5998802500501224e-18,-3.133668420346646e-17)
sum e = 1.1963621132603002
sum de = 0
Info: CFL hydro = 0.002262780169241473 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002262780169241473 cfl multiplier : 0.9999982609794204 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1750e+04 | 13440 | 1 | 3.219e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.408059836983472 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10227203534147067, dt = 0.002262780169241473 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.7%)
patch tree reduce : 1803.00 ns (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 319.14 us (94.3%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1292.00 ns (60.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.86421130952381
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,5.701934893291298e-19,2.0483841738504452e-19)
sum a = (1.8533684174160286e-17,-1.9932814416883864e-17,2.289398732785363e-17)
sum e = 1.1963619874807645
sum de = 2.992397996059992e-17
Info: CFL hydro = 0.002247761320855004 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002247761320855004 cfl multiplier : 0.999998840652947 [sph::Model][rank=0]
Info: Timestep 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.3742e+04 | 13440 | 1 | 2.501e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.57336822250601 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10453481551071214, dt = 0.002247761320855004 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.7%)
patch tree reduce : 1853.00 ns (0.6%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.4%)
LB compute : 311.63 us (93.9%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1702.00 ns (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: 1.8645833333333337
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.354079348994881e-20,3.1414546759782414e-19)
sum a = (6.4302492662159e-18,-2.37660479585923e-18,3.5102836158195e-17)
sum e = 1.1963620911647743
sum de = 2.3418766925686896e-17
Info: CFL hydro = 0.002238744411630579 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002238744411630579 cfl multiplier : 0.9999992271019646 [sph::Model][rank=0]
Info: Timestep 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.6588e+04 | 13440 | 1 | 2.375e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.070547952559025 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10678257683156715, dt = 0.002238744411630579 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.8%)
patch tree reduce : 1973.00 ns (0.6%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1251.00 ns (0.4%)
LB compute : 323.17 us (93.7%)
LB move op cnt : 0
LB apply : 4.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1643.00 ns (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: 1.8809523809523814
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.060363028668284e-19,4.09826570455312e-19)
sum a = (-2.0306554687200438e-17,6.669826362572678e-18,6.583099453691525e-17)
sum e = 1.196362465985153
sum de = 2.7538735181131813e-17
Info: CFL hydro = 0.0022353393923737544 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022353393923737544 cfl multiplier : 0.9999994847346431 [sph::Model][rank=0]
Info: Timestep 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.7033e+04 | 13440 | 1 | 2.357e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.20075851598715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10902132124319773, dt = 0.0022353393923737544 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (2.1%)
patch tree reduce : 1632.00 ns (0.5%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.4%)
LB compute : 282.21 us (93.3%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1582.00 ns (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: 1.8808035714285718
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.25824851045217e-19,6.059803180974234e-19)
sum a = (2.38331295455722e-17,5.1365329458893034e-17,6.73355387020358e-17)
sum e = 1.196363016454243
sum de = -3.3393426912553537e-17
Info: CFL hydro = 0.0022370742306706205 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022370742306706205 cfl multiplier : 0.999999656489762 [sph::Model][rank=0]
Info: Timestep 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.7153e+04 | 13440 | 1 | 2.352e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.220292076177515 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11125666063557149, dt = 0.0022370742306706205 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (2.1%)
patch tree reduce : 1913.00 ns (0.7%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1071.00 ns (0.4%)
LB compute : 271.94 us (93.1%)
LB move op cnt : 0
LB apply : 3.71 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1892.00 ns (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: 1.8806547619047622
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.1284081238404207e-18,7.35801157185752e-19)
sum a = (-1.734538177623067e-17,3.7719018050411005e-17,1.7412463363210567e-17)
sum e = 1.1963636387177998
sum de = 7.806255641895632e-18
Info: CFL hydro = 0.002310979609685713 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002310979609685713 cfl multiplier : 0.9999997709931746 [sph::Model][rank=0]
Info: Timestep 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.4277e+04 | 13440 | 1 | 2.476e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.52395438428984 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11349373486624212, dt = 0.002310979609685713 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.9%)
patch tree reduce : 1993.00 ns (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1291.00 ns (0.4%)
LB compute : 292.36 us (93.7%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1893.00 ns (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8805059523809526
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,7.450847696695771e-19,7.3669957129709e-19)
sum a = (1.046472756886403e-17,-2.1619437175235577e-17,3.601802066627789e-17)
sum e = 1.1963646895362368
sum de = 5.854691731421724e-18
Info: CFL hydro = 0.002318878656330359 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002318878656330359 cfl multiplier : 0.999999847328783 [sph::Model][rank=0]
Info: Timestep 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.4091e+04 | 13440 | 1 | 2.485e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.48313675119142 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11580471447592783, dt = 0.002318878656330359 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.8%)
patch tree reduce : 1783.00 ns (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1121.00 ns (0.3%)
LB compute : 312.97 us (94.0%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1793.00 ns (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: 1.880654761904762
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,5.534230925841554e-19,8.479531854177684e-19)
sum a = (-1.3454649731396608e-17,-4.109226356711443e-17,4.250457055013763e-17)
sum e = 1.1963650753466848
sum de = -6.938893903907228e-17
Info: CFL hydro = 0.0022764070960074436 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022764070960074436 cfl multiplier : 0.9999998982191887 [sph::Model][rank=0]
Info: Timestep 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.6654e+04 | 13440 | 1 | 2.372e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.18955676411768 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11812359313225819, dt = 0.00187640686774182 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.7%)
patch tree reduce : 1682.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.4%)
LB compute : 316.17 us (94.1%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1502.00 ns (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: 1.880505952380952
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,1.9405744804898953e-19,9.377945965515598e-19)
sum a = (1.8725345851245706e-17,-1.0579724575115282e-17,-5.222181757836851e-17)
sum e = 1.1963620813292215
sum de = -2.3635607360183997e-17
Info: CFL hydro = 0.0022812681403103436 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022812681403103436 cfl multiplier : 0.9999999321461258 [sph::Model][rank=0]
Info: Timestep 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.7250e+04 | 13440 | 1 | 2.348e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.774287556086488 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 71 [SPH][rank=0]
Info: time since start : 68.48341596 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1886.18 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1880.97 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1848.47 ms [sph::CartesianRender][rank=0]
---------------- t = 0.12000000000000001, dt = 0.0022812681403103436 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.01 us (3.4%)
patch tree reduce : 1572.00 ns (0.4%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 324.42 us (92.6%)
LB move op cnt : 0
LB apply : 4.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 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: 1.8736607142857145
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,5.98942740891943e-20,7.245709807940281e-19)
sum a = (4.2548892312963635e-18,1.5332934166833742e-19,6.052675762357619e-17)
sum e = 1.1963644079371578
sum de = 1.5612511283791264e-17
Info: CFL hydro = 0.0023170794340528966 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023170794340528966 cfl multiplier : 0.999999954764084 [sph::Model][rank=0]
Info: Timestep 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.7435e+04 | 13440 | 1 | 2.340e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.09603427289803 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12228126814031036, dt = 0.0023170794340528966 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.9%)
patch tree reduce : 1823.00 ns (0.6%)
gen split merge : 1201.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1121.00 ns (0.3%)
LB compute : 303.71 us (93.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1652.00 ns (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: 1.855133928571429
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,7.438868841877932e-19,1.00951798977337e-18)
sum a = (2.472435634401941e-18,-3.020588030866247e-17,-7.898856866882944e-17)
sum e = 1.1963641152987432
sum de = -1.0842021724855044e-18
Info: CFL hydro = 0.002321063120002645 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002321063120002645 cfl multiplier : 0.9999999698427228 [sph::Model][rank=0]
Info: Timestep 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.2126e+04 | 13440 | 1 | 2.578e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.35172014147108 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12459834757436325, dt = 0.002321063120002645 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (2.0%)
patch tree reduce : 1943.00 ns (0.6%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.4%)
LB compute : 292.55 us (93.4%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1592.00 ns (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: 1.8541666666666665
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,3.988958654340341e-19,6.558423012766776e-19)
sum a = (1.381880691785891e-17,-2.3459389275255625e-17,-3.085273846882577e-17)
sum e = 1.196363382741442
sum de = 4.7704895589362195e-17
Info: CFL hydro = 0.0023111832880821415 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023111832880821415 cfl multiplier : 0.9999999798951485 [sph::Model][rank=0]
Info: Timestep 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.3337e+04 | 13440 | 1 | 2.520e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.16018761438496 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1269194106943659, dt = 0.0023111832880821415 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.7%)
patch tree reduce : 1722.00 ns (0.5%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 353.09 us (94.5%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1853.00 ns (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: 1.8781249999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.982734849641876e-19,6.449115962553997e-19)
sum a = (-4.182057794003903e-17,-3.2199161750350857e-17,4.5141116495543965e-17)
sum e = 1.1963625276752834
sum de = 1.1709383462843448e-17
Info: CFL hydro = 0.002288895772943086 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002288895772943086 cfl multiplier : 0.9999999865967656 [sph::Model][rank=0]
Info: Timestep 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.6809e+04 | 13440 | 1 | 2.366e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.16870867309951 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12923059398244804, dt = 0.002288895772943086 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.9%)
patch tree reduce : 1673.00 ns (0.5%)
gen split merge : 1021.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.4%)
LB compute : 309.60 us (93.8%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1803.00 ns (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: 1.8777529761904757
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,3.183380667840677e-19,8.290864890796722e-19)
sum a = (-1.9741152739798443e-18,4.599880250050123e-19,1.3234238802748373e-17)
sum e = 1.1963617330250644
sum de = -2.6020852139652106e-18
Info: CFL hydro = 0.0022695190253599344 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022695190253599344 cfl multiplier : 0.9999999910645103 [sph::Model][rank=0]
Info: Timestep 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.7460e+04 | 13440 | 1 | 2.339e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.22882398059156 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13151948975539113, dt = 0.0022695190253599344 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.0%)
patch tree reduce : 1723.00 ns (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 295.50 us (93.6%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1493.00 ns (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: 1.8781994047619046
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,8.612796614026141e-19,8.040806296474336e-19)
sum a = (-1.2783833861597633e-17,-3.4959089900380934e-17,4.643004127394343e-18)
sum e = 1.1963611578317976
sum de = 6.982261990806649e-17
Info: CFL hydro = 0.0023370574029185254 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023370574029185254 cfl multiplier : 0.9999999940430069 [sph::Model][rank=0]
Info: Timestep 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.3690e+04 | 13440 | 1 | 2.503e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.63853185832589 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13378900878075106, dt = 0.0023370574029185254 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (2.1%)
patch tree reduce : 1752.00 ns (0.6%)
gen split merge : 1001.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 294.49 us (93.3%)
LB move op cnt : 0
LB apply : 4.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1703.00 ns (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: 1.8793898809523806
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.0541392239698198e-19,8.09620850000684e-19)
sum a = (-1.1212208109497174e-17,-1.6866227583517116e-18,-3.260644281415738e-18)
sum e = 1.1963611909520033
sum de = -1.6046192152785466e-17
Info: CFL hydro = 0.0023156011848369093 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023156011848369093 cfl multiplier : 0.9999999960286713 [sph::Model][rank=0]
Info: Timestep 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.0559e+04 | 13440 | 1 | 2.658e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.649785742874442 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1361260661836696, dt = 0.0023156011848369093 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (2.1%)
patch tree reduce : 1973.00 ns (0.7%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1121.00 ns (0.4%)
LB compute : 263.82 us (93.0%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1522.00 ns (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: 1.880059523809524
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,2.395770963567772e-21,8.248938898934285e-19)
sum a = (-3.2735814446190036e-17,1.364631140848203e-17,-3.068982604330316e-18)
sum e = 1.196361139906967
sum de = -3.5778671692021646e-17
Info: CFL hydro = 0.002298001355327122 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002298001355327122 cfl multiplier : 0.9999999973524476 [sph::Model][rank=0]
Info: Timestep 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.2151e+04 | 13440 | 1 | 2.577e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.346935377482026 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1384416673685065, dt = 0.0015583326314935197 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.1%)
patch tree reduce : 1543.00 ns (0.5%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.4%)
LB compute : 289.25 us (93.4%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1562.00 ns (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: 1.880059523809524
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,3.425952477901914e-19,8.0632666492577835e-19)
sum a = (-1.4662118297034766e-17,-4.4925497108822866e-17,-2.0337699709726818e-17)
sum e = 1.1963587770317894
sum de = -2.7538735181131813e-17
Info: CFL hydro = 0.002288637493517075 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002288637493517075 cfl multiplier : 0.9999999982349651 [sph::Model][rank=0]
Info: Timestep 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.4158e+04 | 13440 | 1 | 2.482e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.606010969943174 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 80 [SPH][rank=0]
Info: time since start : 77.457809017 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1858.28 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1862.58 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1837.78 ms [sph::CartesianRender][rank=0]
---------------- t = 0.14, dt = 0.002288637493517075 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.64 us (3.6%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 325.25 us (92.4%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1592.00 ns (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: 1.8683035714285716
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,-1.6770396744974404e-20,7.35801157185752e-19)
sum a = (2.9899221625325797e-18,-8.27978445009022e-18,2.1746413036304668e-17)
sum e = 1.1963614781244123
sum de = 1.452830911130576e-17
Info: CFL hydro = 0.0022764891433853236 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022764891433853236 cfl multiplier : 0.9999999988233101 [sph::Model][rank=0]
Info: Timestep 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.2222e+04 | 13440 | 1 | 2.574e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.013691928638416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.14228863749351708, dt = 0.0022764891433853236 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (2.1%)
patch tree reduce : 1693.00 ns (0.6%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.4%)
LB compute : 277.64 us (93.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1593.00 ns (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: 1.8633184523809527
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,8.385198372487202e-20,8.404664011566191e-19)
sum a = (5.701934893291297e-17,-6.899820375075184e-18,3.08653162663845e-17)
sum e = 1.196362079966568
sum de = 7.589415207398531e-18
Info: CFL hydro = 0.002371944321834541 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002371944321834541 cfl multiplier : 0.9999999992155401 [sph::Model][rank=0]
Info: Timestep 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.7311e+04 | 13440 | 1 | 2.345e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.94679309466072 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1445651266369024, dt = 0.002371944321834541 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.2%)
patch tree reduce : 2.34 us (0.8%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.4%)
LB compute : 266.72 us (92.5%)
LB move op cnt : 0
LB apply : 3.88 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1603.00 ns (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: 1.8633928571428573
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,4.599880250050123e-19,9.21099067649197e-19)
sum a = (3.104919168783833e-17,4.093893422544609e-17,-1.2218431914195637e-19)
sum e = 1.1963631779773207
sum de = -3.686287386450715e-18
Info: CFL hydro = 0.002355808051284119 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002355808051284119 cfl multiplier : 0.9999999994770267 [sph::Model][rank=0]
Info: Timestep 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.7893e+04 | 13440 | 1 | 2.322e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.78172049711016 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.14693707095873695, dt = 0.002355808051284119 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (2.0%)
patch tree reduce : 1853.00 ns (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.4%)
LB compute : 284.41 us (93.2%)
LB move op cnt : 0
LB apply : 3.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1743.00 ns (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: 1.8635416666666669
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.102054643241175e-19,8.809699040094367e-19)
sum a = (3.1164188694089583e-17,1.7479544950190467e-17,1.2703575534318111e-17)
sum e = 1.1963637725211036
sum de = 1.691355389077387e-17
Info: CFL hydro = 0.002338638753846281 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002338638753846281 cfl multiplier : 0.9999999996513512 [sph::Model][rank=0]
Info: Timestep 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.7837e+04 | 13440 | 1 | 2.324e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.49606109687288 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.14929287901002108, dt = 0.002338638753846281 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (2.1%)
patch tree reduce : 1732.00 ns (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 271.75 us (93.1%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1753.00 ns (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: 1.880059523809524
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.953022089886824e-19,9.37045918125445e-19)
sum a = (1.0158068885527354e-17,2.315273059191895e-17,-1.3526522860303641e-17)
sum e = 1.1963642176693792
sum de = -4.119968255444917e-17
Info: CFL hydro = 0.0023486702581575897 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023486702581575897 cfl multiplier : 0.9999999997675676 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3611e+04 | 13440 | 1 | 3.082e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.319134133820505 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15163151776386735, dt = 0.0023486702581575897 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.7%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 1021.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 319.54 us (94.2%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1422.00 ns (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: 1.8718005952380958
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,9.391422177185667e-19,8.918257411881031e-19)
sum a = (2.4954350356521914e-17,1.0579724575115282e-17,-1.886430056713264e-17)
sum e = 1.19636463835333
sum de = -5.345116710353537e-17
Info: CFL hydro = 0.0023531476570892765 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023531476570892765 cfl multiplier : 0.9999999998450452 [sph::Model][rank=0]
Info: Timestep 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.7776e+04 | 13440 | 1 | 2.326e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.34759974886406 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15398018802202496, dt = 0.0023531476570892765 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (2.2%)
patch tree reduce : 2.13 us (0.7%)
gen split merge : 1082.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.4%)
LB compute : 266.79 us (92.8%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1502.00 ns (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: 1.8715773809523812
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.354079348994881e-20,8.124658280199207e-19)
sum a = (3.4393687952978937e-17,2.5146012033607338e-17,-2.7330955152381145e-17)
sum e = 1.1963648697905724
sum de = 1.22514845490862e-17
Info: CFL hydro = 0.002378029105274268 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002378029105274268 cfl multiplier : 0.9999999998966969 [sph::Model][rank=0]
Info: Timestep 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.8197e+04 | 13440 | 1 | 2.309e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.68176009629997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15633333567911423, dt = 0.002378029105274268 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.6%)
patch tree reduce : 8.65 us (2.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 317.51 us (92.2%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1883.00 ns (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: 1.8718005952380954
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,6.947735794346539e-19,7.503255186523817e-19)
sum a = (-2.3143147508064678e-17,-7.359808400080196e-18,2.6353480599245495e-17)
sum e = 1.1963650738978673
sum de = 3.312237636943216e-17
Info: CFL hydro = 0.0023708558449166963 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023708558449166963 cfl multiplier : 0.9999999999311312 [sph::Model][rank=0]
Info: Timestep 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.6972e+04 | 13440 | 1 | 2.359e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.289271785063335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1587113647843885, dt = 0.001288635215611511 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.9%)
patch tree reduce : 1943.00 ns (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 295.38 us (93.5%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1583.00 ns (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: 1.8718005952380954
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-8.62477546884398e-20,8.349261808033686e-19)
sum a = (-8.05458197951485e-18,-3.327246714202922e-17,-8.023676534084826e-17)
sum e = 1.1963598811906424
sum de = -5.041540102057596e-18
Info: CFL hydro = 0.0023696808830296194 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023696808830296194 cfl multiplier : 0.9999999999540874 [sph::Model][rank=0]
Info: Timestep 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.4902e+04 | 13440 | 1 | 2.448e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.950496510883998 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 89 [SPH][rank=0]
Info: time since start : 86.345248767 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1868.48 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1842.95 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1829.76 ms [sph::CartesianRender][rank=0]
---------------- t = 0.16, dt = 0.0023696808830296194 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.61 us (3.7%)
patch tree reduce : 1743.00 ns (0.5%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 315.91 us (92.2%)
LB move op cnt : 0
LB apply : 3.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1913.00 ns (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: 1.8758184523809525
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,7.762297921959581e-19,5.845681151105364e-19)
sum a = (2.5742559003535712e-18,2.1006119808562225e-17,-5.408452950254246e-17)
sum e = 1.19636486849559
sum de = -7.657177843178875e-19
Info: CFL hydro = 0.002338318802647213 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002338318802647213 cfl multiplier : 0.9999999999693916 [sph::Model][rank=0]
Info: Timestep 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.7288e+04 | 13440 | 1 | 2.346e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.36306183884869 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1623696808830296, dt = 0.002338318802647213 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.8%)
patch tree reduce : 1683.00 ns (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1061.00 ns (0.3%)
LB compute : 312.69 us (93.7%)
LB move op cnt : 0
LB apply : 4.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1803.00 ns (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: 1.8644345238095241
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,7.331059148517383e-19,4.664266594696006e-19)
sum a = (7.932397660372894e-18,3.020588030866247e-17,-5.4163589944340195e-17)
sum e = 1.196364583210433
sum de = 3.168580849088887e-17
Info: CFL hydro = 0.0023349122382256616 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023349122382256616 cfl multiplier : 0.9999999999795944 [sph::Model][rank=0]
Info: Timestep 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.2110e+04 | 13440 | 1 | 2.579e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.63835596551264 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16470799968567681, dt = 0.0023349122382256616 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.7%)
patch tree reduce : 1783.00 ns (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1091.00 ns (0.3%)
LB compute : 325.75 us (94.1%)
LB move op cnt : 0
LB apply : 4.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1883.00 ns (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: 1.864285714285714
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,5.89359657037672e-19,3.3960053408573173e-19)
sum a = (4.042623923924259e-17,-3.097252701700416e-17,2.576951142687585e-18)
sum e = 1.1963643541390085
sum de = 5.4752209710517974e-17
Info: CFL hydro = 0.0023335694989746925 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023335694989746925 cfl multiplier : 0.9999999999863963 [sph::Model][rank=0]
Info: Timestep 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.7643e+04 | 13440 | 1 | 2.332e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.051220414687144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16704291192390247, dt = 0.0023335694989746925 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.0%)
patch tree reduce : 1793.00 ns (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1081.00 ns (0.3%)
LB compute : 307.98 us (93.7%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1593.00 ns (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: 1.8639136904761904
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,5.174865281306388e-19,4.111741916223189e-19)
sum a = (-3.09916931847127e-17,-4.75320959171846e-17,-1.1986641073470456e-17)
sum e = 1.1963640609222965
sum de = -3.491130995403324e-17
Info: CFL hydro = 0.0023322589866446824 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023322589866446824 cfl multiplier : 0.9999999999909308 [sph::Model][rank=0]
Info: Timestep 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.7682e+04 | 13440 | 1 | 2.330e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.054934572770065 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16937648142287717, dt = 0.0023322589866446824 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.7%)
patch tree reduce : 1833.00 ns (0.5%)
gen split merge : 1001.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1141.00 ns (0.3%)
LB compute : 334.09 us (94.4%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1873.00 ns (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: 1.8790922619047619
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,-3.6415718646230135e-19,3.8541965376396535e-19)
sum a = (-3.443202028839602e-17,1.3339652725145356e-17,-6.166714460223446e-18)
sum e = 1.1963636561298332
sum de = 1.9949319973733282e-17
Info: CFL hydro = 0.002331672562594376 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002331672562594376 cfl multiplier : 0.9999999999939538 [sph::Model][rank=0]
Info: Timestep 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.7439e+04 | 13440 | 1 | 2.340e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.883058170135435 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17170874040952186, dt = 0.002331672562594376 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.8%)
patch tree reduce : 1783.00 ns (0.5%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1081.00 ns (0.3%)
LB compute : 315.17 us (94.2%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1473.00 ns (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: 1.879910714285714
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,5.845681151105364e-19,3.68349785648545e-19)
sum a = (-1.030181514334142e-19,6.1331736667334966e-18,2.3905002674479232e-17)
sum e = 1.1963631373627566
sum de = 1.5178830414797062e-18
Info: CFL hydro = 0.0023325911788819815 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023325911788819815 cfl multiplier : 0.9999999999959691 [sph::Model][rank=0]
Info: Timestep 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.7380e+04 | 13440 | 1 | 2.342e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.83704186579785 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17404041297211623, dt = 0.0023325911788819815 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.9%)
patch tree reduce : 1843.00 ns (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.4%)
LB compute : 282.55 us (93.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1612.00 ns (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: 1.8796130952380954
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.4853779974120188e-19,4.650790383025938e-19)
sum a = (8.610400843062574e-18,6.1331736667334966e-18,-4.0613109374400875e-17)
sum e = 1.1963624878517696
sum de = 4.9873299934333204e-17
Info: CFL hydro = 0.002267387981516365 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002267387981516365 cfl multiplier : 0.9999999999973127 [sph::Model][rank=0]
Info: Timestep 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.7768e+04 | 13440 | 1 | 2.327e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.093665611896846 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1763730041509982, dt = 0.002267387981516365 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (1.9%)
patch tree reduce : 1713.00 ns (0.5%)
gen split merge : 1031.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1131.00 ns (0.3%)
LB compute : 313.70 us (93.9%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1602.00 ns (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: 1.8793898809523808
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-9.583083854271089e-21,2.9303273598138314e-19)
sum a = (1.0891174800379092e-17,1.4719616800160393e-17,-2.3068878608194077e-17)
sum e = 1.1963614871009884
sum de = 4.933119884809045e-17
Info: CFL hydro = 0.0022702122198114934 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022702122198114934 cfl multiplier : 0.9999999999982085 [sph::Model][rank=0]
Info: Timestep 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.7567e+04 | 13440 | 1 | 2.335e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.9626320752501 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1786403921325146, dt = 0.0013596078674854017 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.7%)
patch tree reduce : 1843.00 ns (0.5%)
gen split merge : 1001.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1081.00 ns (0.3%)
LB compute : 341.00 us (94.5%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1873.00 ns (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: 1.8797619047619047
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-3.0665868333667484e-19,2.796313921539259e-19)
sum a = (-1.3569646737647861e-17,1.5332934166833742e-19,6.186359782124701e-17)
sum e = 1.196358647313524
sum de = -2.3093506273941244e-17
Info: CFL hydro = 0.0022741350196644372 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022741350196644372 cfl multiplier : 0.9999999999988057 [sph::Model][rank=0]
Info: Timestep 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.8062e+04 | 13440 | 1 | 2.315e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.145075044253606 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 98 [SPH][rank=0]
Info: time since start : 95.136810995 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1851.70 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1855.01 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1825.93 ms [sph::CartesianRender][rank=0]
---------------- t = 0.18, dt = 0.0022741350196644372 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.95 us (3.5%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 311.59 us (92.3%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1863.00 ns (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: 1.8796130952380952
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.5332934166833742e-19,4.670256022104925e-19)
sum a = (-1.8207859323115067e-19,-2.5299341375275673e-17,1.742204644706484e-17)
sum e = 1.1963604883444545
sum de = -2.45029690981724e-17
Info: CFL hydro = 0.0022810489008999076 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022810489008999076 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 | 4.8207e+04 | 13440 | 1 | 2.788e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.364904288868242 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18227413501966444, dt = 0.0022810489008999076 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.2%)
patch tree reduce : 1792.00 ns (0.6%)
gen split merge : 1052.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.4%)
LB compute : 277.99 us (93.0%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1953.00 ns (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: 1.8560267857142858
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.724955093768796e-19,4.599131571624008e-19)
sum a = (-3.741235936707433e-17,-2.62193174252857e-17,-3.6056353001694974e-17)
sum e = 1.1963597910233428
sum de = -1.5287250632045613e-17
Info: CFL hydro = 0.0022927864132330266 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022927864132330266 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 | 5.2953e+04 | 13440 | 1 | 2.538e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.353956752114186 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18455518392056436, dt = 0.0022927864132330266 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (1.6%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 366.52 us (94.6%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1683.00 ns (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: 1.8550595238095238
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,6.229004505276207e-19,3.198354236362976e-19)
sum a = (-2.2563370934881278e-17,-4.446550908381785e-18,-1.9309913966356244e-18)
sum e = 1.19635933032087
sum de = 2.7321894746634712e-17
Info: CFL hydro = 0.002308951987650361 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002308951987650361 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 | 5.7183e+04 | 13440 | 1 | 2.350e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.11828553753905 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18684797033379738, dt = 0.002308951987650361 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (2.1%)
patch tree reduce : 1883.00 ns (0.7%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 267.59 us (92.8%)
LB move op cnt : 0
LB apply : 3.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1612.00 ns (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: 1.8550595238095235
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,-9.583083854271089e-21,3.449910187537592e-19)
sum a = (-2.0555714867411484e-18,8.187786845089218e-17,3.774297576004668e-17)
sum e = 1.1963590929442836
sum de = 1.723881454251952e-17
Info: CFL hydro = 0.0022647495346995073 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022647495346995073 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 | 5.7634e+04 | 13440 | 1 | 2.332e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.644996359915545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18915692232144773, dt = 0.0022647495346995073 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.0%)
patch tree reduce : 1442.00 ns (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.4%)
LB compute : 305.32 us (93.8%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1452.00 ns (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: 1.8694196428571426
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,5.270696119849099e-19,4.852933558076968e-19)
sum a = (1.0951069074468286e-17,-2.4072706641928973e-17,3.335871489671766e-17)
sum e = 1.1963590128531354
sum de = -5.204170427930421e-17
Info: CFL hydro = 0.0022813975429532246 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022813975429532246 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 | 5.7485e+04 | 13440 | 1 | 2.338e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.872030877496684 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19142167185614725, dt = 0.0022813975429532246 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1953.00 ns (0.6%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.4%)
LB compute : 305.33 us (93.7%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1502.00 ns (63.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8796875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,2.4916018021104833e-19,5.7872842338684e-19)
sum a = (2.086596720719351e-17,1.2113017991798656e-17,8.242410423058563e-17)
sum e = 1.196359249433555
sum de = -2.5153490401663703e-17
Info: CFL hydro = 0.0023032053961711337 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023032053961711337 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 | 5.2204e+04 | 13440 | 1 | 2.575e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.90113791596008 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19370306939910048, dt = 0.0023032053961711337 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (2.1%)
patch tree reduce : 1943.00 ns (0.7%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.4%)
LB compute : 270.73 us (93.2%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1482.00 ns (63.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8800595238095237
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,7.666467083416871e-19,8.126155637051438e-19)
sum a = (-1.0842061495625953e-17,-8.27978445009022e-18,-2.7934689435200224e-17)
sum e = 1.1963597003679334
sum de = -5.2909066017292616e-17
Info: CFL hydro = 0.0023319517891497313 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023319517891497313 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 | 5.7402e+04 | 13440 | 1 | 2.341e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.41271453447525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1960062747952716, dt = 0.0023319517891497313 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.9%)
patch tree reduce : 1482.00 ns (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1231.00 ns (0.4%)
LB compute : 290.93 us (93.7%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1943.00 ns (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: 1.8797619047619047
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,7.57063624487416e-19,6.244352413011564e-19)
sum a = (-5.199362039408868e-17,1.0273065891778608e-17,-5.160490655524981e-18)
sum e = 1.1963603209358684
sum de = 9.215718466126788e-19
Info: CFL hydro = 0.0023667335243434547 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023667335243434547 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 | 5.3843e+04 | 13440 | 1 | 2.496e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.63178247733097 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19833822658442135, dt = 0.0016617734155786323 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.8%)
patch tree reduce : 1913.00 ns (0.6%)
gen split merge : 1152.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 313.74 us (93.9%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1633.00 ns (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: 1.8794642857142856
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,4.983203604220967e-19,6.287401422513172e-19)
sum a = (3.566823810559699e-17,-5.979844325065159e-17,3.487523791665606e-17)
sum e = 1.1963594480816977
sum de = 1.5748036555351952e-17
Info: CFL hydro = 0.0023307892037228574 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023307892037228574 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 | 5.3667e+04 | 13440 | 1 | 2.504e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.888038501638643 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 107 [SPH][rank=0]
Info: time since start : 104.18167316300001 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1857.18 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1860.15 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1830.03 ms [sph::CartesianRender][rank=0]
---------------- t = 0.19999999999999998, dt = 0.0023307892037228574 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.53 us (3.4%)
patch tree reduce : 1803.00 ns (0.5%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 336.54 us (92.5%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1993.00 ns (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: 1.8796874999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,1.0541392239698198e-19,7.547427213664597e-19)
sum a = (2.0939038221582327e-18,-6.685159296739512e-17,5.627186839227983e-17)
sum e = 1.1963612272301811
sum de = -5.1323420340032566e-17
Info: CFL hydro = 0.0023489084663178127 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023489084663178127 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 | 4.2481e+04 | 13440 | 1 | 3.164e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.52196565402778 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20233078920372283, dt = 0.0023489084663178127 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.9%)
patch tree reduce : 1813.00 ns (0.6%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 301.44 us (93.8%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1773.00 ns (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: 1.872247023809524
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.6415718646230135e-19,9.177300147316798e-19)
sum a = (-7.934793431336462e-18,-1.0733053916783619e-17,1.518200059612897e-17)
sum e = 1.1963619121865467
sum de = 6.5865281978494394e-18
Info: CFL hydro = 0.0023824547302233627 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023824547302233627 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 | 5.5639e+04 | 13440 | 1 | 2.416e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.00671855027079 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20467969767004063, dt = 0.0023824547302233627 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.7%)
patch tree reduce : 1723.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 311.30 us (94.0%)
LB move op cnt : 0
LB apply : 3.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1632.00 ns (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: 1.8639136904761904
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,4.6957110885928335e-19,8.965611322332802e-19)
sum a = (-1.2170516494924282e-18,-2.5299341375275673e-18,-5.0505247682972206e-17)
sum e = 1.1963624455964534
sum de = -6.960577947356938e-17
Info: CFL hydro = 0.002419098699047534 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002419098699047534 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 | 5.7143e+04 | 13440 | 1 | 2.352e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.46632073501728 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.207062152400264, dt = 0.002419098699047534 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (1.9%)
patch tree reduce : 1953.00 ns (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 330.01 us (93.7%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1733.00 ns (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: 1.8639136904761906
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.9166167708542177e-19,7.067524342524928e-19)
sum a = (-1.188302397929615e-17,3.917564679626021e-17,-1.2485560376633444e-17)
sum e = 1.1963628487516162
sum de = 8.944667923005412e-18
Info: CFL hydro = 0.0024024226608865373 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024024226608865373 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 | 5.7549e+04 | 13440 | 1 | 2.335e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.290009807779875 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2094812510993115, dt = 0.0024024226608865373 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.9%)
patch tree reduce : 1863.00 ns (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1051.00 ns (0.4%)
LB compute : 272.25 us (93.3%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1722.00 ns (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: 1.8713541666666664
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,3.25824851045217e-19,7.293625227211637e-19)
sum a = (-1.4278794942863923e-18,3.396244917953674e-17,2.5653915477883705e-17)
sum e = 1.1963628895447656
sum de = 5.7462715141731735e-18
Info: CFL hydro = 0.0023672985008429456 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023672985008429456 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 | 5.6783e+04 | 13440 | 1 | 2.367e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.54007638204036 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21188367376019804, dt = 0.0023672985008429456 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.8%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.3%)
LB compute : 313.46 us (93.7%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1543.00 ns (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: 1.8798363095238093
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.449910187537592e-19,8.343272380624767e-19)
sum a = (-6.8902372912209125e-18,-2.2041092864823505e-17,-4.1772662520767676e-17)
sum e = 1.196362723329123
sum de = -5.637851296924623e-18
Info: CFL hydro = 0.002368798532240056 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002368798532240056 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 | 5.2038e+04 | 13440 | 1 | 2.583e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.997062988328224 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21425097226104098, dt = 0.002368798532240056 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.9%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1212.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1762.00 ns (0.6%)
LB compute : 277.00 us (92.8%)
LB move op cnt : 0
LB apply : 3.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1402.00 ns (63.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8703869047619048
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,4.216556895879279e-19,6.51350230719988e-19)
sum a = (2.447519616380836e-17,-1.8514518006451744e-17,4.258962041934429e-17)
sum e = 1.1963626055035523
sum de = -3.252606517456513e-17
Info: CFL hydro = 0.002369940516030401 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002369940516030401 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 | 5.7619e+04 | 13440 | 1 | 2.333e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.5591457220959 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21661977079328104, dt = 0.002369940516030401 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (1.9%)
patch tree reduce : 1843.00 ns (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1422.00 ns (0.4%)
LB compute : 306.00 us (93.6%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1472.00 ns (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: 1.8686011904761903
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,3.0665868333667484e-19,8.333165221872215e-19)
sum a = (-4.3085545008802815e-17,1.4547121290783512e-17,2.2232754541908927e-18)
sum e = 1.196362431018313
sum de = -1.9949319973733282e-17
Info: CFL hydro = 0.0023402498861807113 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023402498861807113 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 | 5.0767e+04 | 13440 | 1 | 2.647e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.22746544422985 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21898971130931144, dt = 0.0010102886906885322 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (2.2%)
patch tree reduce : 1873.00 ns (0.7%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.4%)
LB compute : 264.83 us (92.7%)
LB move op cnt : 0
LB apply : 4.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1833.00 ns (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: 1.8683779761904762
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,1.1499700625125307e-19,7.937488673670475e-19)
sum a = (1.2362178172009705e-17,-1.3224655718894102e-17,2.121694765335619e-17)
sum e = 1.1963590904526293
sum de = 6.071532165918825e-18
Info: CFL hydro = 0.0023310832188742124 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023310832188742124 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 | 5.5955e+04 | 13440 | 1 | 2.402e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.14221475883663 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 116 [SPH][rank=0]
Info: time since start : 113.099026777 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1910.43 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1914.07 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1875.99 ms [sph::CartesianRender][rank=0]
---------------- t = 0.21999999999999997, dt = 0.0023310832188742124 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.87 us (3.6%)
patch tree reduce : 1903.00 ns (0.5%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 332.28 us (92.4%)
LB move op cnt : 0
LB apply : 4.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 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: 1.872693452380952
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,3.0665868333667484e-19,8.669696174410875e-19)
sum a = (-1.3837973085567452e-17,-1.8974506031456757e-18,1.736933948586635e-17)
sum e = 1.1963620430734787
sum de = -7.48099499014998e-17
Info: CFL hydro = 0.002308956863108604 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002308956863108604 cfl multiplier : 0.9999999999999994 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2836e+04 | 13440 | 1 | 3.138e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.74666586867826 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22233108321887418, dt = 0.002308956863108604 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (1.8%)
patch tree reduce : 1743.00 ns (0.5%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1071.00 ns (0.3%)
LB compute : 358.08 us (94.5%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1652.00 ns (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: 1.8754464285714285
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,1.5332934166833742e-19,8.910021949193767e-19)
sum a = (-5.447983171153114e-18,6.928569626637997e-18,-2.4714773260165137e-17)
sum e = 1.1963617905196857
sum de = 2.3527187142935446e-17
Info: CFL hydro = 0.002314729059828116 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002314729059828116 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5755e+04 | 13440 | 1 | 2.411e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.48307497830186 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2246400400819828, dt = 0.002314729059828116 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.8%)
patch tree reduce : 1983.00 ns (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 320.97 us (94.1%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1782.00 ns (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: 1.8598214285714285
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.791541927135544e-20,7.797485807986983e-19)
sum a = (4.722064569192079e-17,-1.2611338352220752e-17,-2.6861384043521862e-17)
sum e = 1.1963616132207737
sum de = -5.9631119486702744e-18
Info: CFL hydro = 0.0023720288434061565 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023720288434061565 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7269e+04 | 13440 | 1 | 2.347e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.5080056100234 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2269547691418109, dt = 0.0023720288434061565 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.1%)
patch tree reduce : 1833.00 ns (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1151.00 ns (0.4%)
LB compute : 287.19 us (93.5%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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: 1.8579613095238097
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,2.2999401250250614e-19,7.276405623410993e-19)
sum a = (-7.886878012065106e-18,2.4954350356521914e-17,4.0033332801217475e-17)
sum e = 1.1963615782887098
sum de = -3.382710778154774e-17
Info: CFL hydro = 0.0023624615635410126 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023624615635410126 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8390e+04 | 13440 | 1 | 2.777e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.745422608222697 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22932679798521705, dt = 0.0023624615635410126 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.5%)
patch tree reduce : 1963.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.3%)
LB compute : 361.55 us (94.5%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1923.00 ns (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: 1.8575892857142855
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.545741026080303e-19,8.959434725317353e-19)
sum a = (-2.177755805883105e-17,1.866784734812008e-17,-6.063696308790031e-18)
sum e = 1.1963613608264423
sum de = 7.947201924318748e-17
Info: CFL hydro = 0.0023566248850863726 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023566248850863726 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6996e+04 | 13440 | 1 | 2.358e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.06696769390191 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23168925954875805, dt = 0.0023566248850863726 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (2.0%)
patch tree reduce : 1863.00 ns (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1181.00 ns (0.4%)
LB compute : 289.04 us (93.5%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1422.00 ns (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: 1.8741071428571427
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.9166167708542177e-19,8.329796168954698e-19)
sum a = (-2.620973434143143e-18,-3.350246115453172e-17,2.8943309010862253e-17)
sum e = 1.1963611546641038
sum de = -3.870601755773251e-17
Info: CFL hydro = 0.002354772945024539 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002354772945024539 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0414e+04 | 13440 | 1 | 2.666e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.823277370038653 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23404588443384441, dt = 0.002354772945024539 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.8%)
patch tree reduce : 1673.00 ns (0.5%)
gen split merge : 1021.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 304.32 us (93.9%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1493.00 ns (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: 1.8741815476190475
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229113,1.5332934166833742e-19,9.313559620869715e-19)
sum a = (-7.321476064663112e-18,4.0095622846270236e-17,-4.318856316023623e-17)
sum e = 1.1963609595924436
sum de = 6.505213034913027e-19
Info: CFL hydro = 0.0023620306199504753 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023620306199504753 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6483e+04 | 13440 | 1 | 2.891e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.31893955119069 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23640065737886895, dt = 0.0023620306199504753 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.9%)
patch tree reduce : 1692.00 ns (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 315.70 us (94.1%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1622.00 ns (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: 1.8746279761904763
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,1.3416317395979523e-19,7.576625672283079e-19)
sum a = (-1.0177235053235896e-17,-7.283143729246027e-18,3.9410432350689856e-18)
sum e = 1.1963607956713158
sum de = 7.806255641895632e-18
Info: CFL hydro = 0.0024229588215065917 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024229588215065917 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6952e+04 | 13440 | 1 | 2.360e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.03246708895213 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23876268799881942, dt = 0.001237312001180546 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.9%)
patch tree reduce : 1873.00 ns (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.4%)
LB compute : 285.65 us (93.6%)
LB move op cnt : 0
LB apply : 4.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1563.00 ns (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: 1.874404761904762
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.6832634791959046e-19,7.99438823405521e-19)
sum a = (3.683258279389093e-17,-2.7062628804461555e-17,7.029192007107844e-18)
sum e = 1.1963589833415809
sum de = -2.873135757086587e-17
Info: CFL hydro = 0.0024229837663664548 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024229837663664548 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0412e+04 | 13440 | 1 | 2.666e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.70762446124199 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 125 [SPH][rank=0]
Info: time since start : 122.291279341 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1908.61 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1901.02 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1867.94 ms [sph::CartesianRender][rank=0]
---------------- t = 0.23999999999999996, dt = 0.0024229837663664548 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.03 us (3.4%)
patch tree reduce : 1783.00 ns (0.5%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 325.70 us (92.5%)
LB move op cnt : 0
LB apply : 4.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 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: 1.874553571428571
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,5.079034442763677e-19,8.139631848721506e-19)
sum a = (-3.9482305479596886e-18,-3.3042473129526713e-17,3.8001719024112e-17)
sum e = 1.1963607132425318
sum de = 3.3610267347050637e-18
Info: CFL hydro = 0.002441916439473056 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002441916439473056 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9581e+04 | 13440 | 1 | 2.711e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.17876844046634 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24242298376636642, dt = 0.002441916439473056 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.8%)
patch tree reduce : 1773.00 ns (0.5%)
gen split merge : 1001.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 312.86 us (93.6%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 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: 1.8746279761904756
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,2.4916018021104833e-19,9.690893547631639e-19)
sum a = (3.7167990728790417e-17,-3.633905397539597e-17,-5.70109637345405e-17)
sum e = 1.1963606841353989
sum de = 2.1141942363467336e-17
Info: CFL hydro = 0.0024463322651481476 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024463322651481476 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6892e+04 | 13440 | 1 | 2.362e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.21189513099098 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24486490020583948, dt = 0.0024463322651481476 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.9%)
patch tree reduce : 1863.00 ns (0.6%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.4%)
LB compute : 284.09 us (93.4%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1672.00 ns (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: 1.8529761904761906
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,1.4374625781406633e-19,6.968698790277758e-19)
sum a = (-3.0814406133408685e-17,1.717288626685379e-17,-1.434887124354828e-17)
sum e = 1.1963607046424451
sum de = -8.239936510889834e-18
Info: CFL hydro = 0.0024488749541099544 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024488749541099544 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6866e+04 | 13440 | 1 | 2.363e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.26255731354011 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24731123247098763, dt = 0.0024488749541099544 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.6%)
patch tree reduce : 1783.00 ns (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1171.00 ns (0.3%)
LB compute : 324.55 us (94.2%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1683.00 ns (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: 1.850818452380952
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.629124255226085e-19,6.871370594882817e-19)
sum a = (1.8619931928848725e-17,-2.1006119808562225e-17,1.6107966073547917e-17)
sum e = 1.196360795518727
sum de = -3.3393426912553537e-17
Info: CFL hydro = 0.0024666984269286524 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024666984269286524 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6353e+04 | 13440 | 1 | 2.385e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.9649668897542 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24976010742509758, dt = 0.0024666984269286524 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (2.2%)
patch tree reduce : 1693.00 ns (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.4%)
LB compute : 270.37 us (93.0%)
LB move op cnt : 0
LB apply : 3.70 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1903.00 ns (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: 1.8500744047619047
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.0541392239698198e-19,8.09471114315461e-19)
sum a = (8.931434152180655e-18,6.102507798399829e-17,-3.9288248031547896e-17)
sum e = 1.1963609773817183
sum de = -2.7972416050126014e-17
Info: CFL hydro = 0.0024405694879043433 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024405694879043433 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1618e+04 | 13440 | 1 | 2.604e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.10491969592379 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2522268058520262, dt = 0.0024405694879043433 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.9%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 305.96 us (93.8%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1543.00 ns (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: 1.8725446428571426
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,6.708158697989762e-19,6.070284678939843e-19)
sum a = (-2.5308924459129946e-17,-3.0665868333667484e-19,4.644441589972483e-17)
sum e = 1.1963611110040469
sum de = 2.7972416050126014e-17
Info: CFL hydro = 0.0024496404504118358 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024496404504118358 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6394e+04 | 13440 | 1 | 2.383e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.86625402400727 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.25466737533993056, dt = 0.0024496404504118358 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (2.0%)
patch tree reduce : 1973.00 ns (0.7%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1101.00 ns (0.4%)
LB compute : 274.69 us (93.2%)
LB move op cnt : 0
LB apply : 3.88 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1753.00 ns (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: 1.8739583333333334
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.395770963567772e-19,8.404664011566191e-19)
sum a = (1.864868118041154e-17,-1.0733053916783619e-17,3.260644281415738e-18)
sum e = 1.196361317248394
sum de = -7.806255641895632e-18
Info: CFL hydro = 0.002463989787874663 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002463989787874663 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6942e+04 | 13440 | 1 | 2.360e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.36239441485713 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2571170157903424, dt = 0.002463989787874663 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.7%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 321.79 us (94.2%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1712.00 ns (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: 1.8742559523809526
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.874925156281327e-20,8.036314225917645e-19)
sum a = (2.190692969086371e-17,1.9932814416883866e-18,-2.55724592651224e-17)
sum e = 1.1963615182598366
sum de = -3.0357660829594124e-18
Info: CFL hydro = 0.0024812638181460943 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024812638181460943 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6641e+04 | 13440 | 1 | 2.373e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.38316868006733 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.25958100557821706, dt = 0.00041899442178289226 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (2.1%)
patch tree reduce : 1902.00 ns (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.4%)
LB compute : 274.41 us (92.8%)
LB move op cnt : 0
LB apply : 4.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1522.00 ns (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: 1.8744047619047621
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,5.749850312562653e-19,7.404429634276646e-19)
sum a = (7.493971574039991e-18,1.9779485075215528e-17,2.8653420724270553e-17)
sum e = 1.196358830722998
sum de = 6.505213034913027e-19
Info: CFL hydro = 0.0024853943108783484 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024853943108783484 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.3607e+04 | 13440 | 1 | 2.507e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.016311506654118 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 134 [SPH][rank=0]
Info: time since start : 131.46157778 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1877.74 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1882.64 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1850.90 ms [sph::CartesianRender][rank=0]
---------------- t = 0.25999999999999995, dt = 0.0024853943108783484 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.23 us (3.5%)
patch tree reduce : 1913.00 ns (0.5%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 322.19 us (92.5%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1843.00 ns (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: 1.8745535714285717
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.4082185729647e-19,8.061769292405553e-19)
sum a = (3.4901591397255304e-17,-2.315273059191895e-17,1.2009999840365241e-17)
sum e = 1.1963616322350614
sum de = -2.190088388420719e-17
Info: CFL hydro = 0.002493799778354429 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002493799778354429 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1286e+04 | 13440 | 1 | 3.255e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.48566845392768 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2624853943108783, dt = 0.002493799778354429 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.9%)
patch tree reduce : 1662.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.4%)
LB compute : 284.96 us (93.6%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1722.00 ns (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: 1.8742559523809523
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.874925156281327e-20,8.374716874521593e-19)
sum a = (2.8739668478958995e-17,-2.729262281696406e-17,-2.4973516524230457e-17)
sum e = 1.1963617806134748
sum de = 3.686287386450715e-17
Info: CFL hydro = 0.0024385754997967323 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024385754997967323 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7225e+04 | 13440 | 1 | 2.349e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.22513822800944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.26497919408923276, dt = 0.0024385754997967323 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.7%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1081.00 ns (0.3%)
LB compute : 304.63 us (93.8%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1532.00 ns (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: 1.8651785714285711
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,0,7.442612234008507e-19)
sum a = (-3.3569542741511626e-17,-1.901283836687384e-17,-2.7244707397692706e-17)
sum e = 1.196361697591379
sum de = 5.421010862427522e-17
Info: CFL hydro = 0.002453975179176348 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002453975179176348 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7383e+04 | 13440 | 1 | 2.836e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.95007244047355 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2674177695890295, dt = 0.002453975179176348 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.5%)
patch tree reduce : 1943.00 ns (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1071.00 ns (0.3%)
LB compute : 349.70 us (94.7%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1723.00 ns (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: 1.8578125
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,1.9166167708542177e-19,6.596605612498638e-19)
sum a = (3.769026879884819e-17,-3.3732455167034233e-18,2.7177625810712806e-17)
sum e = 1.1963617720465545
sum de = -1.496198998029996e-17
Info: CFL hydro = 0.002475358766399354 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002475358766399354 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.4859e+04 | 13440 | 1 | 2.450e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.05938057262631 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.26987174476820586, dt = 0.002475358766399354 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.7%)
patch tree reduce : 1673.00 ns (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 330.96 us (94.1%)
LB move op cnt : 0
LB apply : 4.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1603.00 ns (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: 1.8575148809523807
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.2458009010552416e-19,7.88957325439912e-19)
sum a = (2.2683159483059668e-17,2.5452670716944012e-17,2.888581050773663e-17)
sum e = 1.196361879471098
sum de = 5.128276275856436e-17
Info: CFL hydro = 0.0024766384480020996 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024766384480020996 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7538e+04 | 13440 | 1 | 2.336e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.14987817584423 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27234710353460523, dt = 0.0024766384480020996 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.94 us (1.6%)
patch tree reduce : 1913.00 ns (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.4%)
LB compute : 299.31 us (94.0%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1763.00 ns (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: 1.8682291666666664
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-1.4374625781406634e-20,8.758788907118551e-19)
sum a = (4.211765353952144e-17,1.847618567103466e-17,-1.933626744695549e-17)
sum e = 1.1963619690642986
sum de = 2.0383000842727483e-17
Info: CFL hydro = 0.002483273394033677 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002483273394033677 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6011e+04 | 13440 | 1 | 2.400e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.1567439462992 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27482374198260734, dt = 0.002483273394033677 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (1.9%)
patch tree reduce : 1542.00 ns (0.5%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1452.00 ns (0.4%)
LB compute : 307.91 us (91.8%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1482.00 ns (63.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8735863095238094
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.6353480599245493e-19,7.580369064413654e-19)
sum a = (-1.8121611568426627e-17,4.446550908381785e-18,-6.481758341932608e-18)
sum e = 1.1963620973209694
sum de = -7.188260403578894e-17
Info: CFL hydro = 0.0024991341210149113 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024991341210149113 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7525e+04 | 13440 | 1 | 2.336e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.26331552621466 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27730701537664104, dt = 0.0024991341210149113 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.9%)
patch tree reduce : 1733.00 ns (0.5%)
gen split merge : 1041.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.4%)
LB compute : 304.63 us (93.8%)
LB move op cnt : 0
LB apply : 3.97 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1412.00 ns (63.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.865997023809524
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,6.229004505276208e-20,7.667964440269101e-19)
sum a = (-4.0555610871275245e-17,7.666467083416871e-19,-3.012442409590117e-17)
sum e = 1.1963622583597484
sum de = -1.3010426069826053e-17
Info: CFL hydro = 0.002472160682193325 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002472160682193325 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7567e+04 | 13440 | 1 | 2.335e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.53575467145642 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.279806149497656, dt = 0.00019385050234399515 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.9%)
patch tree reduce : 1953.00 ns (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1181.00 ns (0.4%)
LB compute : 305.59 us (93.8%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1452.00 ns (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: 1.865997023809524
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.593656445351658e-19,7.430633379190669e-19)
sum a = (2.3191062927336035e-17,5.213197616723472e-18,1.1102002645173057e-17)
sum e = 1.1963590834440425
sum de = 2.862293735361732e-17
Info: CFL hydro = 0.002472835467588105 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002472835467588105 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9473e+04 | 13440 | 1 | 2.260e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.088068900363677 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 143 [SPH][rank=0]
Info: time since start : 140.465619393 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1894.16 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1897.07 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1861.47 ms [sph::CartesianRender][rank=0]
---------------- t = 0.27999999999999997, dt = 0.002472835467588105 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.40 us (3.5%)
patch tree reduce : 1943.00 ns (0.5%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 327.73 us (92.4%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1613.00 ns (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: 1.865848214285714
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,1.9166167708542177e-19,7.609567523032136e-19)
sum a = (3.6128226130602e-18,-1.7632874291858803e-17,9.330569594711045e-17)
sum e = 1.1963622268691225
sum de = 8.348356728138384e-18
Info: CFL hydro = 0.0024902344098713444 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024902344098713444 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.3112e+04 | 13440 | 1 | 2.530e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.17978775147316 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.28247283546758806, dt = 0.0024902344098713444 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (2.0%)
patch tree reduce : 1873.00 ns (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.4%)
LB compute : 268.58 us (93.1%)
LB move op cnt : 0
LB apply : 3.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 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: 1.8706845238095235
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,5.654019474019942e-19,1.1058729032143614e-18)
sum a = (-1.462378596161768e-17,-3.426910786287341e-17,4.767584217499866e-19)
sum e = 1.1963623542717852
sum de = 1.235990476633475e-17
Info: CFL hydro = 0.002488037388301505 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002488037388301505 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.4295e+04 | 13440 | 1 | 2.475e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.21643317192362 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2849630698774594, dt = 0.002488037388301505 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (2.0%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.4%)
LB compute : 270.46 us (93.2%)
LB move op cnt : 0
LB apply : 3.69 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1602.00 ns (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: 1.869642857142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.9166167708542177e-20,9.881806546290945e-19)
sum a = (3.8332335417084355e-20,6.478164685487256e-17,-2.0698263239743767e-17)
sum e = 1.1963623072801115
sum de = 1.6859343782149594e-17
Info: CFL hydro = 0.0024605524301107677 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024605524301107677 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7811e+04 | 13440 | 1 | 2.325e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.52753904631535 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2874511072657609, dt = 0.0024605524301107677 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (2.0%)
patch tree reduce : 1782.00 ns (0.6%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.4%)
LB compute : 271.10 us (93.1%)
LB move op cnt : 0
LB apply : 3.65 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1472.00 ns (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: 1.85922619047619
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,4.791541927135544e-20,8.970664901709077e-19)
sum a = (1.1696153844137864e-17,1.188302397929615e-17,-2.6147444296378666e-17)
sum e = 1.1963621057502636
sum de = -4.553649124439119e-18
Info: CFL hydro = 0.002469390596922942 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002469390596922942 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7501e+04 | 13440 | 1 | 2.337e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.89761635925875 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2899116596958717, dt = 0.002469390596922942 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.7%)
patch tree reduce : 1903.00 ns (0.6%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 304.82 us (93.9%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1872.00 ns (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: 1.8587797619047617
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.6832634791959046e-19,8.310330529875709e-19)
sum a = (-2.2352543090087315e-17,-8.931434152180655e-18,-5.15689699907963e-17)
sum e = 1.1963619138468666
sum de = 6.613633252161577e-18
Info: CFL hydro = 0.002456992184894072 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002456992184894072 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.3400e+04 | 13440 | 1 | 2.517e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.32111927924986 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2923810502927946, dt = 0.002456992184894072 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.8%)
patch tree reduce : 1773.00 ns (0.5%)
gen split merge : 1071.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1081.00 ns (0.3%)
LB compute : 314.21 us (93.7%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1722.00 ns (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: 1.8587053571428573
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,7.666467083416871e-20,6.669227419831786e-19)
sum a = (1.933387167599192e-17,4.684211387967708e-17,6.97744335429478e-17)
sum e = 1.1963616210343317
sum de = 1.1370570283941728e-17
Info: CFL hydro = 0.0024552260234267805 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024552260234267805 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7240e+04 | 13440 | 1 | 2.348e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.671197532638 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2948380424776887, dt = 0.0024552260234267805 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.7%)
patch tree reduce : 19.13 us (5.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 309.14 us (89.0%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1642.00 ns (63.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8732886904761905
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.360303153693346e-19,9.925978573431726e-19)
sum a = (2.3737298707029487e-17,-1.2611338352220752e-17,-3.746985787019996e-18)
sum e = 1.1963613345319888
sum de = -1.2739375526704677e-17
Info: CFL hydro = 0.0024604107801398565 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024604107801398565 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1594e+04 | 13440 | 1 | 2.605e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.930757133171355 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2972932685011155, dt = 0.0024604107801398565 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.7%)
patch tree reduce : 1742.00 ns (0.5%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 328.50 us (94.0%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1633.00 ns (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: 1.8744047619047621
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.9707559948240377e-19,9.00585278773648e-19)
sum a = (2.0574881035120027e-17,8.35644912092439e-18,4.0920965943219334e-17)
sum e = 1.1963610828670377
sum de = 2.168404344971009e-18
Info: CFL hydro = 0.0024156506637014893 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024156506637014893 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6626e+04 | 13440 | 1 | 2.373e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.31841874040332 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.29975367928125535, dt = 0.00024632071874464145 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (1.9%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.4%)
LB compute : 321.26 us (93.7%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1863.00 ns (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: 1.8744047619047617
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,2.395770963567772e-19,9.681909406518258e-19)
sum a = (-2.2204005290346113e-17,-1.7096221596019623e-17,2.514361626264377e-17)
sum e = 1.1963590192577707
sum de = -3.5236570605778894e-19
Info: CFL hydro = 0.0024165648484479724 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024165648484479724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8344e+04 | 13440 | 1 | 2.304e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8494784797845827 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 152 [SPH][rank=0]
Info: time since start : 149.41744744800002 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1895.23 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1897.39 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1871.31 ms [sph::CartesianRender][rank=0]
---------------- t = 0.3, dt = 0.0024165648484479724 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.72 us (3.7%)
patch tree reduce : 1813.00 ns (0.5%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1292.00 ns (0.4%)
LB compute : 318.16 us (92.2%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1923.00 ns (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: 1.8751488095238094
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,4.791541927135544e-21,1.0142720977791999e-18)
sum a = (-8.548110798009812e-18,-2.0546131783557215e-17,-7.090284166678822e-17)
sum e = 1.1963608505562404
sum de = 1.8119728807663993e-17
Info: CFL hydro = 0.002418677873877673 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002418677873877673 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7229e+04 | 13440 | 1 | 2.348e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.0438910400465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.302416564848448, dt = 0.002418677873877673 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.7%)
patch tree reduce : 1622.00 ns (0.5%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1362.00 ns (0.4%)
LB compute : 334.75 us (94.3%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1843.00 ns (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: 1.8752976190476194
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,0,7.363252320840324e-19)
sum a = (2.3095232088793324e-18,4.588380549424997e-17,1.0982214096994668e-17)
sum e = 1.1963607091940585
sum de = 6.911788849595091e-19
Info: CFL hydro = 0.002403058272908256 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002403058272908256 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1110e+04 | 13440 | 1 | 2.630e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.11205006558785 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.30483524272232565, dt = 0.002403058272908256 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.9%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 307.47 us (93.6%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1522.00 ns (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: 1.8750744047619048
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,7.187312890703316e-19,8.531565004792672e-19)
sum a = (-5.3128616888078916e-17,1.9089503037708007e-17,1.0435499163108502e-16)
sum e = 1.1963606371353317
sum de = -7.047314121155779e-19
Info: CFL hydro = 0.002392841673149007 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002392841673149007 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6923e+04 | 13440 | 1 | 2.361e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.63987563543957 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3072383009952339, dt = 0.002392841673149007 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.9%)
patch tree reduce : 1873.00 ns (0.6%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.4%)
LB compute : 289.18 us (93.4%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1643.00 ns (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: 1.8543898809523809
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.599880250050123e-19,1.2164527067515363e-18)
sum a = (2.9899221625325797e-18,-1.3876305420984537e-17,-8.246243656600272e-18)
sum e = 1.1963606325988594
sum de = 1.6127507315721878e-17
Info: CFL hydro = 0.002399108306923122 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002399108306923122 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0542e+04 | 13440 | 1 | 2.659e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.394408895899026 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.30963114266838293, dt = 0.002399108306923122 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.8%)
patch tree reduce : 1413.00 ns (0.4%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.4%)
LB compute : 305.81 us (93.9%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1562.00 ns (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: 1.8502976190476186
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,5.749850312562653e-20,1.068289246223392e-18)
sum a = (9.966407208441932e-18,-3.5112419242049267e-17,-5.032077331877749e-17)
sum e = 1.1963606882690925
sum de = -3.209238430557093e-17
Info: CFL hydro = 0.0024078999842634704 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024078999842634704 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6833e+04 | 13440 | 1 | 2.365e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.5221059384496 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.31203025097530607, dt = 0.0024078999842634704 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.7%)
patch tree reduce : 1713.00 ns (0.5%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.4%)
LB compute : 324.01 us (94.1%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1683.00 ns (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: 1.8501488095238094
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-1.4374625781406633e-19,8.902909504145675e-19)
sum a = (-3.1815838396180015e-18,-1.433629344598955e-17,3.8116716030363256e-18)
sum e = 1.1963607689023366
sum de = 2.2063514210080015e-17
Info: CFL hydro = 0.002410729692780658 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002410729692780658 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0884e+04 | 13440 | 1 | 2.641e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.81870094942543 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.31443815095956956, dt = 0.002410729692780658 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.8%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.4%)
LB compute : 289.02 us (93.7%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1762.00 ns (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: 1.870386904761905
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,1.4374625781406634e-20,9.74751235360658e-19)
sum a = (-1.6444571893929187e-17,1.778620363352714e-17,4.699544322134542e-17)
sum e = 1.1963608473271419
sum de = 4.323256162785949e-18
Info: CFL hydro = 0.002428572963633682 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002428572963633682 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7349e+04 | 13440 | 1 | 2.344e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.03178895249385 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.31684888065235023, dt = 0.002428572963633682 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.0%)
patch tree reduce : 1903.00 ns (0.6%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.4%)
LB compute : 306.13 us (93.5%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1813.00 ns (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: 1.8750000000000002
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.8207859323115067e-19,1.1424832782513814e-18)
sum a = (-4.162891626295361e-17,-3.311913780036088e-17,-1.502148394156993e-17)
sum e = 1.196360943876492
sum de = -9.039535613097893e-18
Info: CFL hydro = 0.002377968802553499 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002377968802553499 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6902e+04 | 13440 | 1 | 2.362e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.01562290467402 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3192774536159839, dt = 0.0007225463840160873 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (2.2%)
patch tree reduce : 1773.00 ns (0.6%)
gen split merge : 1092.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 267.35 us (92.9%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1482.00 ns (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: 1.875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,1.9166167708542177e-19,1.0622436679325138e-18)
sum a = (1.8016197646029646e-17,-7.666467083416871e-19,-1.4750761822686773e-17)
sum e = 1.1963593514756743
sum de = -9.486769009248164e-18
Info: CFL hydro = 0.0023836948386717596 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023836948386717596 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9371e+04 | 13440 | 1 | 2.264e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.490567765904505 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 161 [SPH][rank=0]
Info: time since start : 158.57406633800002 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1907.45 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1914.51 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1876.39 ms [sph::CartesianRender][rank=0]
---------------- t = 0.32, dt = 0.0023836948386717596 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.14 us (3.8%)
patch tree reduce : 1953.00 ns (0.6%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 313.67 us (91.8%)
LB move op cnt : 0
LB apply : 4.39 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 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: 1.8744791666666665
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.156193867210995e-19,1.0215717124338204e-18)
sum a = (2.069946112522555e-18,-1.8629515012702998e-17,-5.821723441469687e-19)
sum e = 1.1963609163871833
sum de = 1.9873087008480395e-17
Info: CFL hydro = 0.0023963465294955704 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023963465294955704 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1532e+04 | 13440 | 1 | 2.608e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.90247539743847 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.32238369483867174, dt = 0.0023963465294955704 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.8%)
patch tree reduce : 1843.00 ns (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 329.93 us (94.3%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1642.00 ns (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: 1.8744791666666667
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.126012352876853e-19,1.027523705921434e-18)
sum a = (4.638212585467207e-17,-2.0622796454391382e-17,1.7580167330660312e-17)
sum e = 1.1963610142239025
sum de = 2.987654611555368e-17
Info: CFL hydro = 0.002416264192067409 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002416264192067409 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7361e+04 | 13440 | 1 | 2.343e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.818791423484974 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3247800413681673, dt = 0.002416264192067409 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (2.1%)
patch tree reduce : 1893.00 ns (0.7%)
gen split merge : 1011.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1091.00 ns (0.4%)
LB compute : 270.49 us (93.3%)
LB move op cnt : 0
LB apply : 3.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 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: 1.8743303571428571
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,4.551964830778767e-20,1.0915357113542605e-18)
sum a = (4.1609750095245064e-17,8.40244792342489e-17,-5.009557084820211e-18)
sum e = 1.1963610969398086
sum de = -4.784042086092288e-18
Info: CFL hydro = 0.0024393805922127273 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024393805922127273 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7064e+04 | 13440 | 1 | 2.355e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.93267619402828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3271963055602347, dt = 0.0024393805922127273 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (2.1%)
patch tree reduce : 1903.00 ns (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.4%)
LB compute : 275.80 us (93.3%)
LB move op cnt : 0
LB apply : 3.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1752.00 ns (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: 1.8655505952380953
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,1.629124255226085e-19,1.0542140918124312e-18)
sum a = (2.4360199157557108e-17,-3.020588030866247e-17,2.84713421310394e-17)
sum e = 1.1963611830543495
sum de = 2.6183482465524932e-17
Info: CFL hydro = 0.002437341812669415 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002437341812669415 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7512e+04 | 13440 | 1 | 2.337e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.57872367557257 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3296356861524474, dt = 0.002437341812669415 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.7%)
patch tree reduce : 1773.00 ns (0.5%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 333.27 us (94.2%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1862.00 ns (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: 1.8588541666666665
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,4.0967683477008905e-19,1.177072221537891e-18)
sum a = (-1.7115387763728166e-17,3.2812479117024205e-17,-5.2290097050830196e-17)
sum e = 1.1963612219888529
sum de = -2.0681156440160997e-17
Info: CFL hydro = 0.0024267983158224385 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024267983158224385 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7764e+04 | 13440 | 1 | 2.327e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.71146010990057 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.33207302796511684, dt = 0.0024267983158224385 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.8%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1221.00 ns (0.4%)
LB compute : 309.79 us (93.9%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1853.00 ns (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: 1.8581845238095238
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229103,3.018671414095393e-19,9.689396190779409e-19)
sum a = (-1.6923726086642743e-17,2.844259287947659e-17,1.946563907898815e-17)
sum e = 1.1963612295253967
sum de = 2.0057740190981832e-18
Info: CFL hydro = 0.0024397619183437994 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024397619183437994 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7892e+04 | 13440 | 1 | 2.322e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.63187228821698 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.33449982628093927, dt = 0.0024397619183437994 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.9%)
patch tree reduce : 1663.00 ns (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.3%)
LB compute : 292.39 us (93.6%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1512.00 ns (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: 1.8619791666666667
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,2.3718132539320947e-19,1.0751770877436493e-18)
sum a = (1.5582094347044792e-17,2.6985964133627386e-17,1.5167625970347565e-17)
sum e = 1.1963612508815464
sum de = -2.222614453595284e-18
Info: CFL hydro = 0.002458420802525946 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002458420802525946 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7909e+04 | 13440 | 1 | 2.321e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.843808317424774 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.33693958819928305, dt = 0.002458420802525946 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.7%)
patch tree reduce : 1922.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 335.94 us (94.3%)
LB move op cnt : 0
LB apply : 4.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1922.00 ns (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: 1.872693452380952
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,6.971693503982217e-19,1.0957657444618099e-18)
sum a = (1.84953518387432e-17,1.9089503037708007e-17,-3.33036121645556e-17)
sum e = 1.1963612540359856
sum de = 7.589415207398531e-18
Info: CFL hydro = 0.0024807989318540156 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024807989318540156 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7928e+04 | 13440 | 1 | 2.320e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.14598509880071 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.339398009001809, dt = 0.0006019909981910265 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.9%)
patch tree reduce : 1583.00 ns (0.5%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.4%)
LB compute : 310.90 us (93.8%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1492.00 ns (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: 1.8679315476190481
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,5.031119023492321e-19,1.0226198622303813e-18)
sum a = (2.800177102218012e-17,-2.7752610841969073e-17,5.383776509329498e-17)
sum e = 1.196359464026562
sum de = -1.0028870095490916e-17
Info: CFL hydro = 0.0024863808070178907 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024863808070178907 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9010e+04 | 13440 | 1 | 2.278e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.515236555196886 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 170 [SPH][rank=0]
Info: time since start : 167.542620196 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1918.29 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1909.29 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1884.08 ms [sph::CartesianRender][rank=0]
---------------- t = 0.34, dt = 0.0024863808070178907 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.51 us (3.3%)
patch tree reduce : 1983.00 ns (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 352.52 us (93.0%)
LB move op cnt : 0
LB apply : 4.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1873.00 ns (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: 1.865699404761905
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.755605362682027e-19,1.182986781104199e-18)
sum a = (-3.8696492603546655e-17,-8.89310181676357e-18,-1.2024374466146649e-17)
sum e = 1.1963612274164337
sum de = 1.6263032587282567e-18
Info: CFL hydro = 0.002477366562436926 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002477366562436926 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8102e+04 | 13440 | 1 | 2.313e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.69533461169603 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.34248638080701793, dt = 0.002477366562436926 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.9%)
patch tree reduce : 1803.00 ns (0.6%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.4%)
LB compute : 302.36 us (93.6%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1843.00 ns (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: 1.8658482142857142
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,9.307570193460794e-19,1.077423123021994e-18)
sum a = (-1.7594541956441718e-17,-4.0708940212943584e-17,1.3449858189469474e-17)
sum e = 1.1963611339963776
sum de = -2.8189256484623115e-18
Info: CFL hydro = 0.00245846844757421 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00245846844757421 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7635e+04 | 13440 | 1 | 2.332e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.245434074163434 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.34496374736945484, dt = 0.00245846844757421 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.8%)
patch tree reduce : 1722.00 ns (0.5%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 315.72 us (94.1%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1933.00 ns (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: 1.867708333333333
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,8.8164371459294e-19,1.1444298421592802e-18)
sum a = (1.909908612156228e-17,-4.201223961712445e-17,-3.237884457261844e-17)
sum e = 1.196361019394989
sum de = 1.3986208025063007e-17
Info: CFL hydro = 0.00244924547012866 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00244924547012866 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7951e+04 | 13440 | 1 | 2.319e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.1617580397464 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.34742221581702903, dt = 0.00244924547012866 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.9%)
patch tree reduce : 1863.00 ns (0.6%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1051.00 ns (0.3%)
LB compute : 297.08 us (93.8%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1782.00 ns (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: 1.8678571428571427
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,5.234759555395582e-19,1.0137854568022252e-18)
sum a = (-1.4384208865260904e-17,2.821259886697408e-17,-6.750324266948555e-17)
sum e = 1.1963609326232751
sum de = 8.456776945386935e-18
Info: CFL hydro = 0.002447985260739115 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002447985260739115 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7870e+04 | 13440 | 1 | 2.322e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.96561869126641 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3498714612871577, dt = 0.002447985260739115 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.1%)
patch tree reduce : 2.11 us (0.7%)
gen split merge : 1072.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 290.97 us (93.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 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: 1.8581845238095236
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,1.5812088359547295e-19,7.976419951828452e-19)
sum a = (-1.821744240696934e-17,3.319580247119505e-17,5.111676822142288e-18)
sum e = 1.1963608836617379
sum de = -1.2034644114589099e-17
Info: CFL hydro = 0.0024918669146929426 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024918669146929426 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7601e+04 | 13440 | 1 | 2.333e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.76980417489572 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3523194465478968, dt = 0.0024918669146929426 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.9%)
patch tree reduce : 1282.00 ns (0.4%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.4%)
LB compute : 318.42 us (94.2%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1482.00 ns (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: 1.8575148809523805
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-2.335876689478578e-19,8.98638714865749e-19)
sum a = (1.8064113065301003e-17,-2.384271262942647e-17,-8.525590550952275e-17)
sum e = 1.1963609267889377
sum de = 6.5052130349130266e-18
Info: CFL hydro = 0.00247842355929617 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00247842355929617 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1598e+04 | 13440 | 1 | 2.605e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.43963355755724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35481131346258976, dt = 0.00247842355929617 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.6%)
patch tree reduce : 1703.00 ns (0.5%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 315.94 us (88.8%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1683.00 ns (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: 1.8586309523809526
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.736933948586635e-20,5.755091061545457e-19)
sum a = (-1.4374625781406634e-17,-5.711517977145569e-18,9.54954306078114e-18)
sum e = 1.1963609390887988
sum de = -6.505213034913027e-19
Info: CFL hydro = 0.0024720674467772798 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024720674467772798 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7177e+04 | 13440 | 1 | 2.351e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.95792719648805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35728973702188593, dt = 0.0024720674467772798 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.5%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 335.12 us (94.8%)
LB move op cnt : 0
LB apply : 3.27 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1822.00 ns (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: 1.8738839285714284
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,4.132704912154407e-19,7.107204299109019e-19)
sum a = (-2.986088928990871e-17,-1.410629943348704e-17,1.9197312731068557e-17)
sum e = 1.1963609886432107
sum de = 1.2793585635328952e-17
Info: CFL hydro = 0.0024690370917706643 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024690370917706643 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6084e+04 | 13440 | 1 | 2.916e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.51528165337884 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35976180446866324, dt = 0.0002381955313368045 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.9%)
patch tree reduce : 1613.00 ns (0.5%)
gen split merge : 1031.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1071.00 ns (0.3%)
LB compute : 291.92 us (93.4%)
LB move op cnt : 0
LB apply : 4.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1563.00 ns (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: 1.8741815476190475
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.5949845189952443e-18,7.284641086098257e-19)
sum a = (-2.165776951065266e-18,-7.896461095919377e-17,-9.2105414694363e-18)
sum e = 1.1963594569454228
sum de = -2.3635607360183997e-17
Info: CFL hydro = 0.002468268144170938 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002468268144170938 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9414e+04 | 13440 | 1 | 2.262e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7907383723996255 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 179 [SPH][rank=0]
Info: time since start : 176.557341736 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1931.96 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1930.09 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1899.06 ms [sph::CartesianRender][rank=0]
---------------- t = 0.36000000000000004, dt = 0.002468268144170938 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.79 us (3.5%)
patch tree reduce : 1612.00 ns (0.4%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 338.23 us (92.7%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1853.00 ns (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: 1.875892857142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,-7.091482052160606e-19,7.007630068435734e-19)
sum a = (1.1505690052534226e-17,-3.6837374335818064e-17,5.787703493787023e-17)
sum e = 1.196361015203056
sum de = -1.431146867680866e-17
Info: CFL hydro = 0.0024738791850359887 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024738791850359887 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8118e+04 | 13440 | 1 | 2.793e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.81309100956948 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.362468268144171, dt = 0.0024738791850359887 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (2.2%)
patch tree reduce : 1703.00 ns (0.6%)
gen split merge : 1011.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1151.00 ns (0.4%)
LB compute : 273.13 us (93.1%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1723.00 ns (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: 1.8764880952380953
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.9705216175344925e-19,9.21099067649197e-19)
sum a = (-2.848571675682081e-17,6.669826362572678e-18,-1.0126923863000974e-17)
sum e = 1.1963611063042316
sum de = -1.6046192152785466e-17
Info: CFL hydro = 0.002478350088569283 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002478350088569283 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8708e+04 | 13440 | 1 | 2.759e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.2764737557138 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.364942147329207, dt = 0.002478350088569283 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (2.0%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 299.93 us (93.5%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1672.00 ns (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.877380952380952
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,4.6957110885928335e-19,8.1755684131750225e-19)
sum a = (-7.181083886198041e-17,-1.3282154222019729e-17,-1.7822140197980658e-17)
sum e = 1.1963611428982746
sum de = -2.5370330836160804e-17
Info: CFL hydro = 0.0024877516507984636 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024877516507984636 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0582e+04 | 13440 | 1 | 2.657e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.578650976728746 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.36742049741777627, dt = 0.0024877516507984636 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (2.1%)
patch tree reduce : 1933.00 ns (0.7%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.4%)
LB compute : 267.07 us (91.0%)
LB move op cnt : 0
LB apply : 6.40 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1703.00 ns (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: 1.8735863095238097
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,6.193816619248806e-19,7.646627105124826e-19)
sum a = (-2.7838858596657515e-17,6.711991931531471e-17,6.4470196629608745e-18)
sum e = 1.1963611458923107
sum de = -2.1033522146218786e-17
Info: CFL hydro = 0.0024767783150275212 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024767783150275212 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8591e+04 | 13440 | 1 | 2.294e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.04253916715761 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3699082490685747, dt = 0.0024767783150275212 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (2.0%)
patch tree reduce : 1782.00 ns (0.6%)
gen split merge : 832.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.4%)
LB compute : 268.99 us (93.0%)
LB move op cnt : 0
LB apply : 3.67 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1542.00 ns (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: 1.8572172619047618
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.662769237843777e-19,8.055779864996634e-19)
sum a = (1.858159959343164e-17,3.7719018050411005e-17,-1.922845775359494e-17)
sum e = 1.1963610799270972
sum de = 4.90059381963448e-17
Info: CFL hydro = 0.0024713774707146256 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024713774707146256 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6105e+04 | 13440 | 1 | 2.396e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.22145083259048 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.37238502738360224, dt = 0.0024713774707146256 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (2.0%)
patch tree reduce : 1663.00 ns (0.5%)
gen split merge : 1041.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 303.12 us (93.6%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1542.00 ns (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: 1.8568452380952376
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,7.816202768639857e-19,7.36549835611867e-19)
sum a = (1.7584958872587448e-17,4.4484675251526395e-17,1.8143173507098738e-17)
sum e = 1.196360991476715
sum de = 1.6479873021779667e-17
Info: CFL hydro = 0.002476126783251731 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002476126783251731 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8256e+04 | 13440 | 1 | 2.307e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.56429546708596 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.37485640485431687, dt = 0.002476126783251731 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (2.2%)
patch tree reduce : 1562.00 ns (0.5%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1171.00 ns (0.4%)
LB compute : 271.82 us (93.1%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1472.00 ns (63.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8566964285714285
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,6.363766621976895e-20,8.239206079394792e-19)
sum a = (5.476732422715927e-18,-1.9530324895004478e-17,5.550043014201101e-17)
sum e = 1.1963609041565517
sum de = -9.324138683375338e-18
Info: CFL hydro = 0.0024834787082119152 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024834787082119152 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5147e+04 | 13440 | 1 | 2.437e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.57646765925109 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3773325316375686, dt = 0.0024834787082119152 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (2.0%)
patch tree reduce : 1652.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1492.00 ns (0.5%)
LB compute : 282.25 us (93.2%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1432.00 ns (62.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8654017857142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,-6.597354290924753e-19,9.994482649421243e-19)
sum a = (-1.7220801686125147e-17,-3.4518268043084464e-17,-9.894534079534899e-18)
sum e = 1.1963608281719864
sum de = -1.6046192152785466e-17
Info: CFL hydro = 0.00252273206065239 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00252273206065239 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.3243e+04 | 13440 | 1 | 2.524e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.41819883823102 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3798160103457805, dt = 0.00018398965421956293 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (2.1%)
patch tree reduce : 1953.00 ns (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1191.00 ns (0.4%)
LB compute : 285.79 us (93.4%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1533.00 ns (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: 1.867857142857143
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,8.886812917984205e-19,9.230456315570957e-19)
sum a = (4.547173288851632e-17,2.1427775498150153e-17,-2.1027681747234336e-17)
sum e = 1.1963595067528716
sum de = -1.5178830414797062e-17
Info: CFL hydro = 0.002522232240535449 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002522232240535449 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.2217e+04 | 13440 | 1 | 2.574e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.573419666123796 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 188 [SPH][rank=0]
Info: time since start : 185.887122572 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1923.68 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1913.16 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1876.98 ms [sph::CartesianRender][rank=0]
---------------- t = 0.38000000000000006, dt = 0.002522232240535449 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.94 us (3.5%)
patch tree reduce : 1853.00 ns (0.5%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 346.57 us (92.6%)
LB move op cnt : 0
LB apply : 4.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1863.00 ns (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: 1.8782738095238094
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.848207110230734e-20,8.488515995291063e-19)
sum a = (-3.555324109934574e-17,-1.671289824184878e-17,3.79645845741767e-17)
sum e = 1.1963608159740013
sum de = -2.0816681711721685e-17
Info: CFL hydro = 0.0025196695333797956 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025196695333797956 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.3216e+04 | 13440 | 1 | 2.526e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.95276524637224 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3825222322405355, dt = 0.0025196695333797956 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.8%)
patch tree reduce : 1633.00 ns (0.5%)
gen split merge : 1152.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 327.43 us (94.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1712.00 ns (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: 1.8784226190476192
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,6.848910242099369e-19,1.0301066464915305e-18)
sum a = (-4.5280071211430894e-17,4.887372765678255e-18,3.144209812586344e-17)
sum e = 1.1963607916615084
sum de = -3.7947076036992655e-17
Info: CFL hydro = 0.002515717453237713 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002515717453237713 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7942e+04 | 13440 | 1 | 2.320e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.10599860610245 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3850419017739153, dt = 0.002515717453237713 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (2.2%)
patch tree reduce : 1923.00 ns (0.7%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1181.00 ns (0.4%)
LB compute : 271.12 us (92.8%)
LB move op cnt : 0
LB apply : 4.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1422.00 ns (63.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8785714285714286
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,1.6321189689305449e-19,1.0929956342851845e-18)
sum a = (-1.5749798314494533e-17,9.027264990723365e-18,-3.315747013577797e-17)
sum e = 1.1963608031363961
sum de = 9.974659986866641e-18
Info: CFL hydro = 0.0025176537476179726 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025176537476179726 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8148e+04 | 13440 | 1 | 2.311e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.18338374792795 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.387557619227153, dt = 0.0025176537476179726 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (1.9%)
patch tree reduce : 1482.00 ns (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 318.50 us (93.9%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1743.00 ns (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: 1.8732142857142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,5.091013297581516e-19,9.258906095763325e-19)
sum a = (-1.3382776602489575e-17,-1.0282648975632879e-17,1.0778573565091407e-17)
sum e = 1.1963608476882817
sum de = 3.903127820947816e-18
Info: CFL hydro = 0.0025243275537023555 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025243275537023555 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1903e+04 | 13440 | 1 | 2.589e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.00160670628256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.39007527297477096, dt = 0.0025243275537023555 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.1%)
patch tree reduce : 1703.00 ns (0.6%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1443.00 ns (0.5%)
LB compute : 287.81 us (93.1%)
LB move op cnt : 0
LB apply : 4.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1623.00 ns (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: 1.8629464285714286
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.1172625890530188e-19,1.0014322627713287e-18)
sum a = (-1.555454298096376e-17,-4.1590583927536525e-17,9.401005261039938e-18)
sum e = 1.1963609101335069
sum de = 2.0599841277224584e-17
Info: CFL hydro = 0.0025329305812078393 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025329305812078393 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7823e+04 | 13440 | 1 | 2.324e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.09736285854607 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3925996005284733, dt = 0.0025329305812078393 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (2.1%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 1212.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1191.00 ns (0.4%)
LB compute : 274.88 us (92.9%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1823.00 ns (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: 1.8631696428571427
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,5.165881140193009e-19,1.0170796418771308e-18)
sum a = (-1.601333312048699e-17,-2.4896851853396287e-17,-2.3468972359109898e-17)
sum e = 1.1963609767239824
sum de = 2.7972416050126014e-17
Info: CFL hydro = 0.0025491137219418735 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025491137219418735 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5400e+04 | 13440 | 1 | 2.426e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.58666600325087 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.39513253110968116, dt = 0.0025491137219418735 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (2.0%)
patch tree reduce : 1913.00 ns (0.7%)
gen split merge : 1232.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1091.00 ns (0.4%)
LB compute : 265.94 us (93.0%)
LB move op cnt : 0
LB apply : 3.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1412.00 ns (64.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8633184523809523
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-1.1308038948039885e-18,9.394416890890127e-19)
sum a = (-5.555792864513663e-17,-2.5275383665639998e-17,5.70768474360386e-17)
sum e = 1.1963610477078104
sum de = -5.074066167232161e-17
Info: CFL hydro = 0.0025524262198320454 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025524262198320454 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8448e+04 | 13440 | 1 | 2.299e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.90799738736455 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.39768164483162305, dt = 0.0023183551683770287 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (2.1%)
patch tree reduce : 1602.00 ns (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 267.09 us (93.1%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 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: 1.862202380952381
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-4.860420342338118e-19,1.1803664066127968e-18)
sum a = (3.25010288917604e-17,-1.8246191658532154e-17,2.054134024163008e-17)
sum e = 1.196360846595587
sum de = 8.977193988179977e-17
Info: CFL hydro = 0.0025469566819429504 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025469566819429504 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4501e+04 | 13440 | 1 | 3.020e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.634300587181983 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 196 [SPH][rank=0]
Info: time since start : 194.71704727800002 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1969.13 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1968.09 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1922.29 ms [sph::CartesianRender][rank=0]
---------------- t = 0.4000000000000001, dt = 0.0025469566819429504 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.34 us (3.4%)
patch tree reduce : 1813.00 ns (0.5%)
gen split merge : 590.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.3%)
LB compute : 334.12 us (92.8%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8659970238095236
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-8.301346388762331e-19,1.1716817368698635e-18)
sum a = (-1.8533684174160286e-17,-2.444165537031841e-17,-1.5308976457198063e-17)
sum e = 1.196361127759489
sum de = -1.4094628242311558e-17
Info: CFL hydro = 0.0025433241224393616 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025433241224393616 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9067e+04 | 13440 | 1 | 2.275e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.29690114405302 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.402546956681943, dt = 0.0025433241224393616 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.8%)
patch tree reduce : 1312.00 ns (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 314.12 us (94.3%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1652.00 ns (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: 1.8710565476190477
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.1320017802857723e-19,1.0959903479896442e-18)
sum a = (5.3694018835480907e-17,4.3967188723395756e-17,-5.318132384927741e-17)
sum e = 1.1963611783830017
sum de = 8.673617379884035e-19
Info: CFL hydro = 0.0025570640184367508 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025570640184367508 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8790e+04 | 13440 | 1 | 2.286e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.050247586451846 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.40509028080438236, dt = 0.0025570640184367508 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (2.0%)
patch tree reduce : 1713.00 ns (0.6%)
gen split merge : 1002.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.4%)
LB compute : 266.22 us (93.1%)
LB move op cnt : 0
LB apply : 3.65 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1562.00 ns (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: 1.872098214285714
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,1.4254837233228245e-19,9.093448163591925e-19)
sum a = (1.452795512307497e-17,-6.11879904095209e-17,1.5385641128032232e-17)
sum e = 1.196361252554859
sum de = 3.0791341698588326e-17
Info: CFL hydro = 0.0025575562129679518 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025575562129679518 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9389e+04 | 13440 | 1 | 2.263e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.67733439585385 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4076473448228191, dt = 0.0025575562129679518 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (2.1%)
patch tree reduce : 1663.00 ns (0.6%)
gen split merge : 1021.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.4%)
LB compute : 261.31 us (92.6%)
LB move op cnt : 0
LB apply : 3.65 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1643.00 ns (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: 1.8600446428571433
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.483086415576193e-19,1.0343741135203855e-18)
sum a = (-7.187312890703317e-18,9.6789146928138e-18,5.684924919449967e-17)
sum e = 1.1963613206997687
sum de = -2.1250362580715887e-17
Info: CFL hydro = 0.002577293801357148 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002577293801357148 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.9348e+04 | 13440 | 1 | 2.265e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.65724638035315 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41020490103578705, dt = 0.002577293801357148 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.8%)
patch tree reduce : 1622.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.4%)
LB compute : 303.65 us (93.9%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1923.00 ns (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: 1.858407738095238
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-9.942449498806255e-20,1.231725746644281e-18)
sum a = (-2.173443418148683e-17,-3.0934194681587075e-17,3.7047004295130246e-17)
sum e = 1.1963614177074233
sum de = -1.6588293239028218e-17
Info: CFL hydro = 0.002606187275931383 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002606187275931383 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9179e+04 | 13440 | 1 | 2.271e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.85371359821652 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4127821948371442, dt = 0.002606187275931383 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.9%)
patch tree reduce : 1622.00 ns (0.6%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.4%)
LB compute : 263.72 us (93.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 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: 1.863318452380952
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-5.655516830872172e-19,1.3019517830138612e-18)
sum a = (-2.368938328775813e-17,1.3301320389728271e-17,-1.0671961757212641e-17)
sum e = 1.1963615296562475
sum de = -1.8648277366750676e-17
Info: CFL hydro = 0.0026435101909230603 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026435101909230603 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.4898e+04 | 13440 | 1 | 2.448e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.32363463012678 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41538838211307555, dt = 0.0026435101909230603 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.8%)
patch tree reduce : 1763.00 ns (0.5%)
gen split merge : 1101.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1201.00 ns (0.4%)
LB compute : 311.51 us (93.8%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1582.00 ns (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: 1.863764880952381
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-4.0106703286976736e-19,1.2020780809701298e-18)
sum a = (-2.838509437635097e-17,-3.806400906916477e-17,-1.9163472466208163e-17)
sum e = 1.1963616523342289
sum de = 9.64939933512099e-18
Info: CFL hydro = 0.0026421217933517292 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026421217933517292 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6799e+04 | 13440 | 1 | 2.366e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.218154128751515 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4180318923039986, dt = 0.0019681076960014754 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.3%)
patch tree reduce : 1653.00 ns (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.4%)
LB compute : 263.72 us (92.9%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1553.00 ns (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: 1.863616071428571
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,2.0551222796854795e-19,1.1644944239791602e-18)
sum a = (1.3377985060562439e-17,-4.2932215667134474e-18,-1.7068071287197702e-17)
sum e = 1.196360886486325
sum de = 1.463672932855431e-17
Info: CFL hydro = 0.0026436385938106593 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026436385938106593 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9914e+04 | 13440 | 1 | 2.243e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.584835322704617 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 204 [SPH][rank=0]
Info: time since start : 203.55374524700002 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1964.99 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1975.85 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1925.54 ms [sph::CartesianRender][rank=0]
---------------- t = 0.4200000000000001, dt = 0.0026436385938106593 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.36 us (3.6%)
patch tree reduce : 1682.00 ns (0.5%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1041.00 ns (0.3%)
LB compute : 318.49 us (92.4%)
LB move op cnt : 0
LB apply : 4.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1602.00 ns (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: 1.8623511904761898
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.531516135984119e-19,1.125113938765515e-18)
sum a = (1.3052160209517223e-17,-5.5236895336018554e-17,3.578083934088468e-18)
sum e = 1.1963617366915014
sum de = -3.686287386450715e-17
Info: CFL hydro = 0.00264101629467724 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00264101629467724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5091e+04 | 13440 | 1 | 2.981e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.929621102229166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.42264363859381077, dt = 0.00264101629467724 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.7%)
patch tree reduce : 1762.00 ns (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1131.00 ns (0.3%)
LB compute : 318.27 us (92.8%)
LB move op cnt : 0
LB apply : 4.39 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1673.00 ns (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: 1.8750744047619048
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.9679956584091226e-19,1.157157375403234e-18)
sum a = (-5.125991553649605e-17,1.7441212614773382e-17,1.1056482996865268e-18)
sum e = 1.1963617952279293
sum de = -1.1817803680091998e-17
Info: CFL hydro = 0.00263091470374757 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00263091470374757 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9454e+04 | 13440 | 1 | 2.261e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.05892547052773 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.425284654888488, dt = 0.00263091470374757 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.9%)
patch tree reduce : 1763.00 ns (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.4%)
LB compute : 295.25 us (93.6%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1482.00 ns (61.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8776785714285715
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,7.636519946372274e-20,1.1538631903283283e-18)
sum a = (-4.4867998605697236e-17,2.2232754541908927e-18,5.392880438991055e-18)
sum e = 1.1963618217203373
sum de = -2.981555974335137e-17
Info: CFL hydro = 0.0026212525903669863 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026212525903669863 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9253e+04 | 13440 | 1 | 2.729e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.70877703912789 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.42791556959223553, dt = 0.0026212525903669863 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.9%)
patch tree reduce : 1763.00 ns (0.6%)
gen split merge : 1031.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1121.00 ns (0.4%)
LB compute : 288.19 us (93.6%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1782.00 ns (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: 1.860565476190476
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-6.827947246168151e-20,1.1802166709275738e-18)
sum a = (3.4362542930452557e-17,-2.3382724604421455e-18,-1.3742142247024742e-17)
sum e = 1.1963618385066457
sum de = 2.1575623232461538e-17
Info: CFL hydro = 0.002620616988116301 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002620616988116301 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8811e+04 | 13440 | 1 | 2.753e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.27119900572527 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.43053682218260253, dt = 0.002620616988116301 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.8%)
patch tree reduce : 1672.00 ns (0.5%)
gen split merge : 1152.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 307.27 us (93.8%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1732.00 ns (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: 1.854315476190476
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.10228902053072e-19,1.1182260972452577e-18)
sum a = (-2.5181948598060854e-17,1.7747871298110057e-17,3.0143590263609707e-17)
sum e = 1.1963618523190425
sum de = -1.8648277366750676e-17
Info: CFL hydro = 0.002628810942882098 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002628810942882098 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9468e+04 | 13440 | 1 | 2.260e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.74364856988008 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4331574391707188, dt = 0.002628810942882098 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.6%)
patch tree reduce : 1683.00 ns (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1523.00 ns (0.4%)
LB compute : 321.56 us (94.2%)
LB move op cnt : 0
LB apply : 3.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1792.00 ns (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: 1.8531994047619045
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.8571912513441133e-19,1.2555337205947357e-18)
sum a = (4.29082579574988e-18,1.866784734812008e-17,7.00044275554503e-18)
sum e = 1.1963618536376153
sum de = -3.892285799222961e-17
Info: CFL hydro = 0.0026378750037212065 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026378750037212065 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9572e+04 | 13440 | 1 | 2.256e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.94732282322378 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4357862501136009, dt = 0.0026378750037212065 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 1112.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 314.68 us (93.8%)
LB move op cnt : 0
LB apply : 3.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1642.00 ns (62.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8528273809523812
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,-1.8207859323115067e-19,1.235993213673136e-18)
sum a = (1.1446993663926815e-17,-2.3804380294009384e-17,1.2745501526180548e-17)
sum e = 1.19636182104319
sum de = -8.673617379884035e-19
Info: CFL hydro = 0.0026130136565135006 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026130136565135006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9405e+04 | 13440 | 1 | 2.262e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.974270187658085 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4384241251173221, dt = 0.001575874882678019 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.9%)
patch tree reduce : 1332.00 ns (0.4%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.4%)
LB compute : 292.09 us (93.6%)
LB move op cnt : 0
LB apply : 3.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1542.00 ns (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: 1.853199404761905
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.9166167708542177e-20,1.2714057032283721e-18)
sum a = (-1.2113017991798656e-17,1.970282040438136e-17,-3.95853236310303e-17)
sum e = 1.1963605835314575
sum de = -1.3010426069826053e-18
Info: CFL hydro = 0.0026187808488062764 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026187808488062764 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9539e+04 | 13440 | 1 | 2.257e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.13198797816657 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 212 [SPH][rank=0]
Info: time since start : 212.556656682 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1955.54 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1941.73 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1910.71 ms [sph::CartesianRender][rank=0]
---------------- t = 0.4400000000000001, dt = 0.0026187808488062764 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 14.19 us (4.1%)
patch tree reduce : 1953.00 ns (0.6%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 320.62 us (91.6%)
LB move op cnt : 0
LB apply : 4.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1923.00 ns (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: 1.8534226190476193
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,-1.5931876907725685e-19,1.1268358991455793e-18)
sum a = (2.5299341375275673e-17,3.25824851045217e-18,-5.478169885294068e-17)
sum e = 1.1963616438081632
sum de = 2.42861286636753e-17
Info: CFL hydro = 0.0026145385497144337 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026145385497144337 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9346e+04 | 13440 | 1 | 2.265e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.62880586218613 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4426187808488064, dt = 0.0026145385497144337 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 1773.00 ns (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.4%)
LB compute : 293.37 us (93.8%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 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: 1.8720982142857143
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,2.2759824153893834e-20,9.648218877343087e-19)
sum a = (1.6588318151743253e-17,-3.4882425229546765e-18,1.861514038692159e-18)
sum e = 1.1963614746744196
sum de = 1.6371452804531117e-17
Info: CFL hydro = 0.00260927813726553 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00260927813726553 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4503e+04 | 13440 | 1 | 3.020e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.16680678577612 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.44523331939852084, dt = 0.00260927813726553 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (2.0%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.4%)
LB compute : 282.40 us (93.4%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1542.00 ns (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: 1.877157738095238
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.390015913448398e-19,1.0410373515128086e-18)
sum a = (-2.809760186072283e-17,-1.8782844354371334e-18,2.3241374117570958e-17)
sum e = 1.196361274118058
sum de = 9.432558900623889e-18
Info: CFL hydro = 0.0026152051309846366 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026152051309846366 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8549e+04 | 13440 | 1 | 2.296e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.92079296689708 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.44784259753578637, dt = 0.0026152051309846366 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.8%)
patch tree reduce : 1653.00 ns (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.4%)
LB compute : 275.19 us (93.1%)
LB move op cnt : 0
LB apply : 4.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1632.00 ns (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: 1.8762648809523812
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-5.522252071023715e-19,1.1274348418864713e-18)
sum a = (-1.6693732074140238e-17,5.399109443496331e-17,2.2556183621990576e-18)
sum e = 1.1963610652203427
sum de = -2.1467203015212988e-17
Info: CFL hydro = 0.002618295783310387 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002618295783310387 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0830e+04 | 13440 | 1 | 2.644e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.60669803757996 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.450457802666771, dt = 0.002618295783310387 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1773.00 ns (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1131.00 ns (0.3%)
LB compute : 313.84 us (94.1%)
LB move op cnt : 0
LB apply : 3.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1623.00 ns (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: 1.8651785714285718
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,-1.0421603691519809e-19,1.1102901059284394e-18)
sum a = (1.20651025725273e-17,-2.1523606336692865e-17,2.909783623801238e-17)
sum e = 1.196360849645145
sum de = 6.830473686658678e-18
Info: CFL hydro = 0.0025961739576275643 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025961739576275643 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7928e+04 | 13440 | 1 | 2.320e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.62657901634854 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4530760984500814, dt = 0.0025961739576275643 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (2.1%)
patch tree reduce : 1512.00 ns (0.5%)
gen split merge : 1131.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.4%)
LB compute : 260.57 us (92.9%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1873.00 ns (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: 1.864136904761905
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.2338220462374027e-19,1.220196098882111e-18)
sum a = (3.3234134806612137e-17,-3.510044038723143e-17,6.140600556720557e-17)
sum e = 1.196360635823839
sum de = -4.9873299934333204e-18
Info: CFL hydro = 0.0025923738827887404 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025923738827887404 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7814e+04 | 13440 | 1 | 2.325e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.20405151730349 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.45567227240770897, dt = 0.0025923738827887404 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 1862.00 ns (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 302.47 us (93.9%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1682.00 ns (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: 1.8645089285714285
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.006692559277554e-19,1.414627886144158e-18)
sum a = (-2.9132574916984108e-18,-2.905591024614994e-17,6.848311299358477e-17)
sum e = 1.1963604758944064
sum de = -2.1250362580715887e-17
Info: CFL hydro = 0.0025885473533037934 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025885473533037934 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.2212e+04 | 13440 | 1 | 2.574e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.254982230832034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.45826464629049773, dt = 0.0017353537095023963 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 1672.00 ns (0.5%)
gen split merge : 1001.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.4%)
LB compute : 309.34 us (93.8%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1522.00 ns (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: 1.863913690476191
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,1.9166167708542177e-20,1.5538072055589232e-18)
sum a = (-1.9194916960104992e-17,-1.6885393751225658e-17,-1.863430655463013e-17)
sum e = 1.1963600404155292
sum de = -2.168404344971009e-18
Info: CFL hydro = 0.002578020412387697 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002578020412387697 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8169e+04 | 13440 | 1 | 2.310e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.03868688174866 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 220 [SPH][rank=0]
Info: time since start : 221.687875111 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1937.35 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1896.85 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1878.22 ms [sph::CartesianRender][rank=0]
---------------- t = 0.46000000000000013, dt = 0.002578020412387697 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.07 us (3.2%)
patch tree reduce : 1794.00 ns (0.5%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 351.96 us (93.0%)
LB move op cnt : 0
LB apply : 4.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1884.00 ns (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: 1.8638392857142858
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,-6.061300537826464e-19,1.4300506617221256e-18)
sum a = (-4.9046223166159433e-17,-9.23809283551733e-18,2.5694643584264356e-18)
sum e = 1.1963603228150723
sum de = 1.1384122811097797e-17
Info: CFL hydro = 0.0025832222007187737 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025832222007187737 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7310e+04 | 13440 | 1 | 2.345e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.57524106844419 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4625780204123878, dt = 0.0025832222007187737 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.9%)
patch tree reduce : 1382.00 ns (0.5%)
gen split merge : 1061.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1091.00 ns (0.4%)
LB compute : 285.63 us (93.4%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1673.00 ns (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: 1.8704613095238094
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-5.426421232481004e-19,1.4571902546687916e-18)
sum a = (-2.3143147508064678e-17,2.3919377300260638e-17,-2.9111012978312e-17)
sum e = 1.19636029514612
sum de = 4.206704429243757e-17
Info: CFL hydro = 0.002589778059885711 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002589778059885711 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4091e+04 | 13440 | 1 | 3.048e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.50795540342733 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4651612426131066, dt = 0.002589778059885711 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.8%)
patch tree reduce : 1703.00 ns (0.5%)
gen split merge : 1011.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.4%)
LB compute : 313.59 us (93.9%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1472.00 ns (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: 1.8716517857142854
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-3.0785656881845873e-19,1.349530296993465e-18)
sum a = (-1.1815942392316253e-17,4.496382944423995e-17,-4.077602179992348e-17)
sum e = 1.196360316840605
sum de = -4.9873299934333204e-18
Info: CFL hydro = 0.0025762086731901794 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025762086731901794 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6148e+04 | 13440 | 1 | 2.394e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.94965654913558 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4677510206729923, dt = 0.0025762086731901794 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.8%)
patch tree reduce : 1983.00 ns (0.6%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1141.00 ns (0.3%)
LB compute : 334.80 us (93.7%)
LB move op cnt : 0
LB apply : 4.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 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: 1.8712053571428575
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,4.2644723151506344e-19,1.2231159447439592e-18)
sum a = (2.966443607089616e-17,2.4072706641928973e-17,5.392820544716966e-17)
sum e = 1.1963603649149193
sum de = 2.6237692574149207e-17
Info: CFL hydro = 0.002581014433250938 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002581014433250938 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6569e+04 | 13440 | 1 | 2.376e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.035611046748144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4703272293461825, dt = 0.002581014433250938 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.4%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1121.00 ns (0.3%)
LB compute : 327.39 us (94.6%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1682.00 ns (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: 1.8734374999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,4.551964830778767e-19,1.4827576229206166e-18)
sum a = (5.0795135969563906e-17,3.5495742596220113e-17,1.724955093768796e-19)
sum e = 1.1963604439855833
sum de = -3.707971429900425e-17
Info: CFL hydro = 0.002581989160156594 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002581989160156594 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6576e+04 | 13440 | 1 | 2.376e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.113309974996206 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4729082437794334, dt = 0.002581989160156594 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.9%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1492.00 ns (0.5%)
LB compute : 287.56 us (93.4%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1652.00 ns (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: 1.8667410714285717
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,6.19905736823161e-19,1.4119326438101443e-18)
sum a = (2.5404755297672655e-17,3.150917971284334e-17,-4.8510768355802035e-17)
sum e = 1.1963605392308874
sum de = -7.979727989493313e-17
Info: CFL hydro = 0.002558892125537261 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002558892125537261 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6196e+04 | 13440 | 1 | 2.392e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.86507165793868 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.47549023293959003, dt = 0.002558892125537261 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.9%)
patch tree reduce : 1793.00 ns (0.6%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 305.32 us (93.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1542.00 ns (65.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8651041666666666
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-8.385198372487202e-20,1.2255491496288326e-18)
sum a = (1.4853779974120187e-18,-8.525111396759561e-17,-3.492794487785455e-17)
sum e = 1.1963606331881975
sum de = 1.5829351718288365e-17
Info: CFL hydro = 0.0025612950272837836 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025612950272837836 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1479e+04 | 13440 | 1 | 2.611e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.284793492173684 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4780491250651273, dt = 0.0019508749348728371 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.8%)
patch tree reduce : 1742.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 306.58 us (93.9%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1702.00 ns (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: 1.8642113095238098
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.6118591048679616e-20,1.1810776511176058e-18)
sum a = (2.055092332548435e-17,-1.9166167708542177e-17,-4.644621272794751e-17)
sum e = 1.1963604061454236
sum de = -2.2551405187698492e-17
Info: CFL hydro = 0.002560102017302908 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002560102017302908 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6789e+04 | 13440 | 1 | 2.367e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.675586107231446 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 228 [SPH][rank=0]
Info: time since start : 230.524100618 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1920.39 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1922.25 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1890.36 ms [sph::CartesianRender][rank=0]
---------------- t = 0.48000000000000015, dt = 0.002560102017302908 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.26 us (3.6%)
patch tree reduce : 1582.00 ns (0.5%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 315.34 us (92.4%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1642.00 ns (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: 1.8681547619047618
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,1.6440978237483836e-19,1.0531285080945647e-18)
sum a = (-1.3869118108093834e-17,-6.731158099240012e-17,-1.3527121803044535e-18)
sum e = 1.1963608065145785
sum de = -4.7488055154865094e-17
Info: CFL hydro = 0.002559017659657758 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002559017659657758 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6690e+04 | 13440 | 1 | 2.371e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.87468785352752 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.48256010201730304, dt = 0.002559017659657758 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.8%)
patch tree reduce : 1832.00 ns (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 310.77 us (88.8%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1803.00 ns (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: 1.877157738095238
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,-2.7618747139379724e-19,1.1043381124408258e-18)
sum a = (-1.5334132052315525e-17,-6.1331736667334966e-18,2.7980808026248903e-17)
sum e = 1.196360935107024
sum de = -5.074066167232161e-17
Info: CFL hydro = 0.002556151523586395 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002556151523586395 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.4699e+04 | 13440 | 1 | 2.457e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.493292590371134 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4851191196769608, dt = 0.002556151523586395 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (2.1%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 1051.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.4%)
LB compute : 293.85 us (93.3%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1482.00 ns (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: 1.8779761904761905
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.959245894585289e-19,1.2070942264250997e-18)
sum a = (-3.4330798965185286e-17,-1.0426395233446945e-17,1.4392594063633392e-17)
sum e = 1.196361040783254
sum de = -4.83554168928535e-17
Info: CFL hydro = 0.0025553009180322183 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025553009180322183 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7220e+04 | 13440 | 1 | 2.349e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.177433549260314 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4876752712005472, dt = 0.0025553009180322183 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.8%)
patch tree reduce : 1712.00 ns (0.5%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.4%)
LB compute : 313.45 us (93.9%)
LB move op cnt : 0
LB apply : 3.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1522.00 ns (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: 1.8782738095238096
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-5.600114627339668e-20,1.2291802399954902e-18)
sum a = (3.013760083620079e-17,-5.9798443250651594e-18,-1.3500768322445288e-17)
sum e = 1.1963611324121672
sum de = -5.746271514173174e-17
Info: CFL hydro = 0.0025752481999665876 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025752481999665876 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6564e+04 | 13440 | 1 | 2.376e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.71539983953387 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.49023057211857946, dt = 0.0025752481999665876 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.7%)
patch tree reduce : 1722.00 ns (0.5%)
gen split merge : 1392.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1682.00 ns (0.5%)
LB compute : 311.37 us (93.7%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1782.00 ns (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: 1.8789434523809525
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.6473269147423883e-19,1.1580183555932662e-18)
sum a = (6.557225127284992e-18,6.056508995899328e-17,-1.2698185049650085e-17)
sum e = 1.1963612199898057
sum de = 4.336808689942018e-17
Info: CFL hydro = 0.0025860236635264233 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025860236635264233 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7984e+04 | 13440 | 1 | 2.318e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.997359824155396 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.49280582031854603, dt = 0.0025860236635264233 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1582.00 ns (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 332.07 us (94.3%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1702.00 ns (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: 1.8784970238095235
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.3181427845413645e-19,1.133536571059308e-18)
sum a = (2.257295401873555e-17,-2.6602640779456543e-17,-5.099158918857646e-17)
sum e = 1.196361273549442
sum de = 1.2576745200831851e-17
Info: CFL hydro = 0.002595618734067225 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002595618734067225 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.4286e+04 | 13440 | 1 | 2.476e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.603091244611846 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4953918439820725, dt = 0.002595618734067225 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.8%)
patch tree reduce : 1452.00 ns (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.4%)
LB compute : 307.29 us (93.9%)
LB move op cnt : 0
LB apply : 3.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1793.00 ns (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: 1.8600446428571427
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,2.395770963567772e-19,9.495488478415642e-19)
sum a = (3.77860996373909e-17,-1.425962877515538e-17,1.8545064086237233e-17)
sum e = 1.1963612970469022
sum de = 4.401860820291148e-17
Info: CFL hydro = 0.0025925443180014724 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025925443180014724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8728e+04 | 13440 | 1 | 2.289e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.830978643881735 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4979874627161397, dt = 0.002012537283860416 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (2.1%)
patch tree reduce : 1893.00 ns (0.6%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.4%)
LB compute : 274.58 us (93.1%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1463.00 ns (63.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.855654761904762
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.1859066269660473e-19,1.0721823740391895e-18)
sum a = (-7.594593954509838e-19,-6.117840732566663e-17,4.476977199619096e-17)
sum e = 1.1963608120269376
sum de = 2.5804011705155006e-17
Info: CFL hydro = 0.0025890845741873966 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025890845741873966 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8485e+04 | 13440 | 1 | 2.298e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.527648414710622 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 236 [SPH][rank=0]
Info: time since start : 239.299260951 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1927.34 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1928.50 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1900.65 ms [sph::CartesianRender][rank=0]
---------------- t = 0.5000000000000001, dt = 0.0025890845741873966 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.12 us (3.4%)
patch tree reduce : 1622.00 ns (0.5%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 329.89 us (92.6%)
LB move op cnt : 0
LB apply : 4.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 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: 1.8695684523809528
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-6.839926100985989e-19,1.208366979749495e-18)
sum a = (-1.0249108182142929e-17,2.0009479087718033e-17,5.755480374327038e-17)
sum e = 1.1963612553117526
sum de = -4.2934406030425976e-17
Info: CFL hydro = 0.0025941276163005495 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025941276163005495 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2841e+04 | 13440 | 1 | 3.137e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.710229526002927 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5025890845741875, dt = 0.0025941276163005495 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.7%)
patch tree reduce : 1703.00 ns (0.5%)
gen split merge : 1051.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.4%)
LB compute : 302.42 us (93.7%)
LB move op cnt : 0
LB apply : 4.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1693.00 ns (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: 1.8770089285714284
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.3718132539320947e-19,1.3751725330879013e-18)
sum a = (9.314757506351499e-18,-3.120252102950666e-17,5.225296260089489e-17)
sum e = 1.1963612296433555
sum de = -3.0140820395097023e-17
Info: CFL hydro = 0.002606011697104425 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002606011697104425 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8160e+04 | 13440 | 1 | 2.311e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.41267951082213 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.505183212190488, dt = 0.002606011697104425 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (2.0%)
patch tree reduce : 1543.00 ns (0.5%)
gen split merge : 1031.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 296.38 us (93.7%)
LB move op cnt : 0
LB apply : 3.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1492.00 ns (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: 1.876934523809524
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-7.690424793052549e-19,1.508811632149416e-18)
sum a = (-4.294179875098875e-17,-5.3051952217244746e-17,6.236191818166911e-18)
sum e = 1.1963612095441574
sum de = -2.6454533008646308e-17
Info: CFL hydro = 0.0025825991771516225 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025825991771516225 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8097e+04 | 13440 | 1 | 2.313e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.554211382344626 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5077892238875924, dt = 0.0025825991771516225 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.0%)
patch tree reduce : 1733.00 ns (0.5%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 305.81 us (93.7%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1632.00 ns (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: 1.8773065476190476
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-7.930001889409326e-19,1.4593239881832192e-18)
sum a = (1.1190646170825064e-17,-1.0733053916783619e-18,-2.115585549378521e-17)
sum e = 1.19636117061327
sum de = -6.7220534694101275e-18
Info: CFL hydro = 0.002576553398051002 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002576553398051002 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5897e+04 | 13440 | 1 | 2.404e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.66753569033422 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.510371823064744, dt = 0.002576553398051002 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.8%)
patch tree reduce : 1853.00 ns (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1141.00 ns (0.3%)
LB compute : 318.53 us (94.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1782.00 ns (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: 1.8774553571428576
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-7.7143825026882265e-19,1.380525583834623e-18)
sum a = (2.4266764089977965e-17,1.9319497050210515e-17,-1.953990797885875e-17)
sum e = 1.1963611594354107
sum de = 1.3877787807814457e-17
Info: CFL hydro = 0.0025758529104397045 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025758529104397045 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7868e+04 | 13440 | 1 | 2.323e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.93762873942866 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.512948376462795, dt = 0.0025758529104397045 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (2.1%)
patch tree reduce : 1483.00 ns (0.5%)
gen split merge : 1111.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1332.00 ns (0.5%)
LB compute : 274.76 us (93.1%)
LB move op cnt : 0
LB apply : 3.83 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1792.00 ns (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: 1.8775297619047624
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-4.887372765678255e-19,1.330775902419286e-18)
sum a = (-4.118330286373e-17,6.746491033406846e-17,-4.039030267478907e-17)
sum e = 1.1963611634110687
sum de = -7.15573433840433e-18
Info: CFL hydro = 0.00259165552162409 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00259165552162409 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8313e+04 | 13440 | 1 | 2.305e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.2336763428824 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5155242293732347, dt = 0.00259165552162409 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (2.0%)
patch tree reduce : 1552.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.4%)
LB compute : 268.42 us (93.0%)
LB move op cnt : 0
LB apply : 4.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1502.00 ns (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: 1.8735119047619047
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.0124476093969286e-19,1.1892382459622586e-18)
sum a = (-2.0007083316754465e-17,8.126455108421884e-18,5.9558866154294815e-18)
sum e = 1.196361185646621
sum de = -5.9631119486702744e-18
Info: CFL hydro = 0.0025966335263033734 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025966335263033734 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1885e+04 | 13440 | 1 | 2.590e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.01813114133916 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5181158848948588, dt = 0.001884115105141304 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.91 us (1.4%)
patch tree reduce : 1913.00 ns (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1061.00 ns (0.3%)
LB compute : 319.37 us (94.3%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1793.00 ns (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: 1.8635416666666664
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,-4.456133992236056e-19,1.2618974872167125e-18)
sum a = (2.0967787473145143e-17,4.185891027545612e-17,1.5543762011627707e-17)
sum e = 1.1963607006839607
sum de = 7.589415207398531e-19
Info: CFL hydro = 0.0026092747237978133 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026092747237978133 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8548e+04 | 13440 | 1 | 2.296e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.54775223430528 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 244 [SPH][rank=0]
Info: time since start : 248.346923432 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1940.03 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1927.15 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1894.81 ms [sph::CartesianRender][rank=0]
---------------- t = 0.5200000000000001, dt = 0.0026092747237978133 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.76 us (3.5%)
patch tree reduce : 1673.00 ns (0.5%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 339.06 us (92.6%)
LB move op cnt : 0
LB apply : 4.30 us (1.2%)
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: 1.8671874999999998
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-2.252024705753706e-19,1.3154654286052357e-18)
sum a = (-4.1911617236654605e-17,1.9779485075215528e-17,-2.363667632655964e-17)
sum e = 1.1963612033765685
sum de = 3.5561831257524545e-17
Info: CFL hydro = 0.0026070764352294448 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026070764352294448 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8363e+04 | 13440 | 1 | 2.303e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.79080886245098 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5226092747237979, dt = 0.0026070764352294448 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.8%)
patch tree reduce : 1582.00 ns (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.4%)
LB compute : 308.94 us (93.9%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1442.00 ns (63.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8767857142857143
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.456133992236056e-19,1.1997946117704791e-18)
sum a = (1.4875341912792297e-17,9.966407208441932e-18,2.0749772315460473e-17)
sum e = 1.1963612087328683
sum de = 2.8297676701871666e-17
Info: CFL hydro = 0.002590142262359933 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002590142262359933 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.4126e+04 | 13440 | 1 | 2.483e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.79736991558436 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5252163511590273, dt = 0.002590142262359933 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 21.71 us (2.7%)
patch tree reduce : 1793.00 ns (0.2%)
gen split merge : 951.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.2%)
LB compute : 775.05 us (95.5%)
LB move op cnt : 0
LB apply : 3.65 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1763.00 ns (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: 1.8767113095238095
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-2.5395172213818386e-19,1.3143424109660633e-18)
sum a = (-9.765162447502239e-18,-4.093893422544609e-17,2.9484753248628575e-17)
sum e = 1.1963611986020604
sum de = -1.8106176280507924e-17
Info: CFL hydro = 0.002570475200689667 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002570475200689667 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8034e+04 | 13440 | 1 | 2.316e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.26360062670867 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5278064934213873, dt = 0.002570475200689667 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (2.1%)
patch tree reduce : 1763.00 ns (0.6%)
gen split merge : 1022.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1342.00 ns (0.5%)
LB compute : 270.59 us (93.1%)
LB move op cnt : 0
LB apply : 3.83 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1522.00 ns (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: 1.8700892857142855
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.7311788984672605e-19,1.4043709917063834e-18)
sum a = (-6.874425202861366e-17,3.833233541708435e-18,3.9580532089103164e-17)
sum e = 1.1963611937125895
sum de = 3.0249240612345574e-17
Info: CFL hydro = 0.0025665559270273367 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025665559270273367 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7336e+04 | 13440 | 1 | 2.344e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.47712716145596 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.530376968622077, dt = 0.0025665559270273367 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (2.1%)
patch tree reduce : 1552.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.4%)
LB compute : 269.02 us (93.2%)
LB move op cnt : 0
LB apply : 3.67 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1592.00 ns (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: 1.871577380952381
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,-3.9290643802511465e-19,1.5117314780112642e-18)
sum a = (3.8332335417084355e-20,-5.044535340888301e-17,-8.24265000015492e-17)
sum e = 1.1963612145226281
sum de = -3.7947076036992655e-18
Info: CFL hydro = 0.002613838126534372 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002613838126534372 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8531e+04 | 13440 | 1 | 2.296e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.23861490524646 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5329435245491043, dt = 0.002613838126534372 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.9%)
patch tree reduce : 1703.00 ns (0.6%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1463.00 ns (0.5%)
LB compute : 267.42 us (93.0%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1562.00 ns (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: 1.8776041666666665
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-5.941511989648075e-19,1.1405367143434824e-18)
sum a = (-3.612822613060201e-17,3.9558970150431056e-17,4.182057794003903e-17)
sum e = 1.1963612946049407
sum de = 3.5453411040275995e-17
Info: CFL hydro = 0.0026096299664217604 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026096299664217604 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8979e+04 | 13440 | 1 | 2.744e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.29188954285413 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5355573626756387, dt = 0.0026096299664217604 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 1752.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.4%)
LB compute : 311.82 us (94.2%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1733.00 ns (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: 1.8744791666666667
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-3.018671414095393e-19,1.4123444169445075e-18)
sum a = (7.331059148517383e-18,-1.6252910216843767e-17,-1.45183720392207e-17)
sum e = 1.19636135321182
sum de = 8.456776945386935e-18
Info: CFL hydro = 0.0025894215171759095 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025894215171759095 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8330e+04 | 13440 | 1 | 2.304e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.77320871002399 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5381669926420605, dt = 0.0018330073579396755 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.6%)
patch tree reduce : 1683.00 ns (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1211.00 ns (0.4%)
LB compute : 323.27 us (94.3%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1743.00 ns (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: 1.8642857142857143
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.9290643802511465e-19,1.306406419649245e-18)
sum a = (-6.30471086772495e-17,-3.0052550966994134e-17,-3.1087524023255414e-17)
sum e = 1.1963608319738666
sum de = 6.331740687315346e-17
Info: CFL hydro = 0.0025947883802042815 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025947883802042815 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.3391e+04 | 13440 | 1 | 2.517e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.21413597122895 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 252 [SPH][rank=0]
Info: time since start : 257.19193838900003 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1935.40 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1914.65 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1886.55 ms [sph::CartesianRender][rank=0]
---------------- t = 0.5400000000000001, dt = 0.0025947883802042815 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.35 us (3.5%)
patch tree reduce : 1693.00 ns (0.5%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 326.15 us (92.5%)
LB move op cnt : 0
LB apply : 4.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1753.00 ns (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.8394573464069e-19,1.2123349754079043e-18)
sum a = (-2.059404720282857e-17,3.2199161750350858e-18,2.785083745147535e-17)
sum e = 1.19636144187556
sum de = -6.505213034913027e-19
Info: CFL hydro = 0.002581459195724069 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002581459195724069 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1654e+04 | 13440 | 1 | 3.227e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.951092848725946 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5425947883802045, dt = 0.002581459195724069 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.6%)
patch tree reduce : 1422.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1372.00 ns (0.4%)
LB compute : 350.06 us (94.7%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1903.00 ns (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: 1.8718005952380954
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-4.024895218793857e-19,1.3579903632085635e-18)
sum a = (-1.6291242552260852e-17,-2.069946112522555e-18,5.592448160256251e-17)
sum e = 1.1963615090032422
sum de = 1.9949319973733282e-17
Info: CFL hydro = 0.002580692553044151 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002580692553044151 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7894e+04 | 13440 | 1 | 2.321e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.03163341026515 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5451762475759285, dt = 0.002580692553044151 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (2.1%)
patch tree reduce : 1372.00 ns (0.5%)
gen split merge : 832.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.4%)
LB compute : 274.97 us (93.3%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1473.00 ns (63.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8777529761904765
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.449910187537592e-19,1.5424647274032821e-18)
sum a = (2.359355244921542e-17,1.76328742918588e-18,-3.8843832517806076e-17)
sum e = 1.1963615598671082
sum de = -1.5178830414797062e-18
Info: CFL hydro = 0.002551145819852284 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002551145819852284 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.2079e+04 | 13440 | 1 | 2.581e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.99986975232906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5477569401289727, dt = 0.002551145819852284 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.7%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 1091.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.4%)
LB compute : 299.03 us (93.7%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1752.00 ns (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: 1.877232142857143
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-6.51649702090434e-19,1.3158772017395989e-18)
sum a = (-3.18541707315971e-17,2.2462748554411433e-17,-5.350475292935906e-17)
sum e = 1.1963615605046363
sum de = 2.6129272356900657e-17
Info: CFL hydro = 0.0025515046930549186 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025515046930549186 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7033e+04 | 13440 | 1 | 2.357e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.972979181847194 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.550308085948825, dt = 0.0025515046930549186 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.8%)
patch tree reduce : 1712.00 ns (0.6%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 283.95 us (93.6%)
LB move op cnt : 0
LB apply : 3.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1623.00 ns (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: 1.8776041666666667
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.024895218793857e-19,1.1703715496241625e-18)
sum a = (-5.586937887040045e-17,-6.133173666733497e-19,4.1834952565820436e-17)
sum e = 1.1963615665070593
sum de = -1.1600963245594897e-17
Info: CFL hydro = 0.0025831353124168813 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025831353124168813 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1625e+04 | 13440 | 1 | 2.603e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.28262111510342 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5528595906418798, dt = 0.0025831353124168813 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (2.0%)
patch tree reduce : 1773.00 ns (0.6%)
gen split merge : 1001.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1121.00 ns (0.4%)
LB compute : 262.03 us (92.9%)
LB move op cnt : 0
LB apply : 3.85 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1732.00 ns (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: 1.8775297619047622
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,-7.091482052160606e-19,1.3977451876352664e-18)
sum a = (-7.641551065395767e-17,3.4652431217044257e-17,7.776672547740988e-18)
sum e = 1.1963615860455796
sum de = -1.4148838350935833e-17
Info: CFL hydro = 0.002597350177012989 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002597350177012989 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.4280e+04 | 13440 | 1 | 2.476e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.556848767188654 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5554427259542967, dt = 0.002597350177012989 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.9%)
patch tree reduce : 1201.00 ns (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1382.00 ns (0.5%)
LB compute : 287.47 us (93.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1653.00 ns (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: 1.8753720238095237
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-3.6415718646230135e-19,1.3773624174842874e-18)
sum a = (-1.7287883273105044e-17,-2.207942520024059e-17,3.443681183032316e-17)
sum e = 1.1963615776386674
sum de = 9.595189226496714e-18
Info: CFL hydro = 0.002588802304989147 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002588802304989147 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8665e+04 | 13440 | 1 | 2.291e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.81444168712985 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5580400761313097, dt = 0.001959923868690483 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.7%)
patch tree reduce : 1733.00 ns (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1101.00 ns (0.3%)
LB compute : 313.92 us (94.2%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1583.00 ns (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: 1.8575892857142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-5.462357796934521e-19,1.4733055577909156e-18)
sum a = (5.622395297300848e-17,-9.50641918343692e-18,9.111116974448237e-17)
sum e = 1.1963610268412386
sum de = 3.577867169202165e-18
Info: CFL hydro = 0.0025894125304972418 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025894125304972418 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.2963e+04 | 13440 | 1 | 2.538e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.80450562358606 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 260 [SPH][rank=0]
Info: time since start : 266.142270483 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1920.55 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1928.76 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1897.87 ms [sph::CartesianRender][rank=0]
---------------- t = 0.5600000000000002, dt = 0.0025894125304972418 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.21 us (3.5%)
patch tree reduce : 1883.00 ns (0.5%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 325.82 us (92.5%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1693.00 ns (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: 1.8560267857142858
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.4374625781406633e-19,1.777559111683696e-18)
sum a = (4.831790879323483e-17,-1.583125452725584e-17,4.946308731382022e-17)
sum e = 1.1963615184875398
sum de = 3.957337929572091e-18
Info: CFL hydro = 0.0025847900064946048 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025847900064946048 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8654e+04 | 13440 | 1 | 2.291e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.681849422068716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5625894125304974, dt = 0.0025847900064946048 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.8%)
patch tree reduce : 1582.00 ns (0.5%)
gen split merge : 1162.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.4%)
LB compute : 298.23 us (93.5%)
LB move op cnt : 0
LB apply : 4.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1643.00 ns (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: 1.857738095238095
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.25824851045217e-19,1.858968532043368e-18)
sum a = (-1.76328742918588e-18,-3.5342413254551774e-17,4.767584217499866e-18)
sum e = 1.1963614853446058
sum de = 2.585822181377928e-17
Info: CFL hydro = 0.0025814436929365906 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025814436929365906 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.2469e+04 | 13440 | 1 | 2.562e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.327310310204126 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.565174202536992, dt = 0.0025814436929365906 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (2.2%)
patch tree reduce : 1893.00 ns (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1382.00 ns (0.5%)
LB compute : 267.54 us (92.8%)
LB move op cnt : 0
LB apply : 3.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1402.00 ns (62.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8741071428571432
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-6.708158697989762e-19,1.8044647426222013e-18)
sum a = (1.5582094347044792e-17,6.324835343818918e-18,-1.5400015753813638e-17)
sum e = 1.1963614475843178
sum de = 1.4094628242311558e-17
Info: CFL hydro = 0.002576691855633511 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002576691855633511 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.2251e+04 | 13440 | 1 | 2.572e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.129243103767585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5677556462299286, dt = 0.002576691855633511 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (2.1%)
patch tree reduce : 1673.00 ns (0.6%)
gen split merge : 1101.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.4%)
LB compute : 263.78 us (92.8%)
LB move op cnt : 0
LB apply : 4.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1653.00 ns (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: 1.8760416666666666
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-2.1082784479396395e-19,1.7382067019110303e-18)
sum a = (4.690919546665698e-18,-3.986562883376773e-18,-6.499247469966652e-17)
sum e = 1.1963614000018752
sum de = 5.5294310796760726e-18
Info: CFL hydro = 0.0025673013039902047 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025673013039902047 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8817e+04 | 13440 | 1 | 2.285e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.594286138232455 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.570332338085562, dt = 0.0025673013039902047 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (2.2%)
patch tree reduce : 1752.00 ns (0.6%)
gen split merge : 1022.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1372.00 ns (0.5%)
LB compute : 269.31 us (92.7%)
LB move op cnt : 0
LB apply : 3.75 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1472.00 ns (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: 1.8770833333333337
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.9166167708542177e-19,1.5058917862875677e-18)
sum a = (1.7211218602270874e-17,-2.219442220649184e-17,-2.3123981340356136e-17)
sum e = 1.1963613378593194
sum de = -2.589549126345847e-17
Info: CFL hydro = 0.0025556775934270607 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025556775934270607 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.3882e+04 | 13440 | 1 | 2.494e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.05332214681705 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5728996393895522, dt = 0.0025556775934270607 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.9%)
patch tree reduce : 1933.00 ns (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1402.00 ns (0.4%)
LB compute : 295.49 us (93.7%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1622.00 ns (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: 1.8776041666666672
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.791541927135544e-20,1.5002018302490943e-18)
sum a = (-2.621991636802659e-17,2.526100903985859e-17,-3.723028077384318e-17)
sum e = 1.1963612640328367
sum de = 2.6264797628461345e-17
Info: CFL hydro = 0.00254596613987566 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00254596613987566 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8279e+04 | 13440 | 1 | 2.306e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.895399328901306 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5754553169829792, dt = 0.00254596613987566 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.7%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1121.00 ns (0.3%)
LB compute : 309.91 us (94.1%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1522.00 ns (65.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.877604166666667
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.4916018021104833e-19,1.377718039736692e-18)
sum a = (-3.033525194069513e-17,-5.464274413705375e-17,6.16192291829631e-18)
sum e = 1.1963611860730883
sum de = 5.800481622797449e-18
Info: CFL hydro = 0.002564430881414196 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002564430881414196 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8241e+04 | 13440 | 1 | 2.308e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.717716811020544 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5780012831228549, dt = 0.001998716877145257 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (2.1%)
patch tree reduce : 1752.00 ns (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.4%)
LB compute : 261.45 us (92.9%)
LB move op cnt : 0
LB apply : 3.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1602.00 ns (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: 1.8683779761904764
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.31238773442199e-19,1.4521366752925158e-18)
sum a = (3.056524595319764e-17,4.0268118355647113e-17,3.6482800233210035e-17)
sum e = 1.1963608107896906
sum de = -8.375461782450522e-18
Info: CFL hydro = 0.002645648431567327 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002645648431567327 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8717e+04 | 13440 | 1 | 2.289e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.43530272979083 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 268 [SPH][rank=0]
Info: time since start : 275.135553497 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1943.96 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1931.01 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1899.78 ms [sph::CartesianRender][rank=0]
---------------- t = 0.5800000000000002, dt = 0.002645648431567327 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.99 us (2.5%)
patch tree reduce : 1622.00 ns (0.3%)
gen split merge : 611.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 496.76 us (94.8%)
LB move op cnt : 0
LB apply : 4.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 1.8645089285714287
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-6.995651213617895e-19,1.57671676539804e-18)
sum a = (-4.393843947183294e-18,4.401031260073998e-18,-1.0354522104539912e-17)
sum e = 1.1963611330840247
sum de = 9.703609443745265e-18
Info: CFL hydro = 0.00265570947577367 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00265570947577367 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5977e+04 | 13440 | 1 | 2.923e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.581529151364386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5826456484315675, dt = 0.00265570947577367 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.9%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1231.00 ns (0.4%)
LB compute : 290.82 us (93.4%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1823.00 ns (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: 1.864732142857143
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,-2.4916018021104833e-19,1.4955600240071817e-18)
sum a = (8.255826740454544e-18,1.6190620171791004e-17,-4.2505768435619414e-17)
sum e = 1.1963610881912503
sum de = -1.463672932855431e-17
Info: CFL hydro = 0.002667695087782433 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002667695087782433 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6707e+04 | 13440 | 1 | 2.370e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.338406760407885 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5853013579073412, dt = 0.002667695087782433 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (2.0%)
patch tree reduce : 1983.00 ns (0.7%)
gen split merge : 1112.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.4%)
LB compute : 273.38 us (93.2%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1482.00 ns (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: 1.8756696428571429
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-4.599880250050123e-19,1.3432788321354053e-18)
sum a = (6.165756151838019e-17,2.695721488206457e-17,1.360318753113781e-17)
sum e = 1.1963610735880634
sum de = -1.1506095555502416e-17
Info: CFL hydro = 0.002649919462151927 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002649919462151927 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7832e+04 | 13440 | 1 | 2.324e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.324815670900406 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5879690529951236, dt = 0.002649919462151927 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.6%)
patch tree reduce : 1552.00 ns (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.4%)
LB compute : 340.50 us (94.3%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1793.00 ns (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: 1.8720982142857143
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-7.283143729246027e-19,1.4379117851963323e-18)
sum a = (-4.49446632765314e-18,1.8936173696039672e-17,-4.9073774532240464e-17)
sum e = 1.1963610704954128
sum de = -1.3579632210380943e-17
Info: CFL hydro = 0.0026343756399502673 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026343756399502673 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.4363e+04 | 13440 | 1 | 2.472e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.58673270127937 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5906189724572755, dt = 0.0026343756399502673 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.6%)
patch tree reduce : 1773.00 ns (0.5%)
gen split merge : 1111.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1051.00 ns (0.3%)
LB compute : 324.09 us (94.4%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1943.00 ns (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: 1.8710565476190473
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,5.654019474019942e-19,1.2338220462374027e-18)
sum a = (3.548615951236584e-17,4.990870071304383e-17,3.479917218856278e-17)
sum e = 1.1963610906203253
sum de = 8.05020113070487e-18
Info: CFL hydro = 0.002683419205779012 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002683419205779012 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8754e+04 | 13440 | 1 | 2.757e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.40236257039301 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5932533480972257, dt = 0.002683419205779012 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (2.0%)
patch tree reduce : 1853.00 ns (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1342.00 ns (0.4%)
LB compute : 294.77 us (93.2%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1663.00 ns (61.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8726190476190476
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-8.337282953215847e-19,1.4320720934726358e-18)
sum a = (2.1169032234084833e-17,-2.085279046689389e-17,-5.615747032876948e-17)
sum e = 1.1963611615160252
sum de = -6.979551485375435e-19
Info: CFL hydro = 0.0026739670567986515 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026739670567986515 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7678e+04 | 13440 | 1 | 2.330e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.45758247322736 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5959367673030047, dt = 0.0026739670567986515 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (2.0%)
patch tree reduce : 1392.00 ns (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1121.00 ns (0.4%)
LB compute : 274.06 us (93.4%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1552.00 ns (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: 1.877752976190476
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.2999401250250614e-19,1.165842045146167e-18)
sum a = (-6.995651213617895e-18,-6.742657799865138e-17,2.649722685705956e-18)
sum e = 1.1963612070797232
sum de = -5.990217002982412e-18
Info: CFL hydro = 0.002667556341756203 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002667556341756203 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.2634e+04 | 13440 | 1 | 2.553e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.698674517068554 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5986107343598034, dt = 0.0013892656401968129 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.9%)
patch tree reduce : 1663.00 ns (0.6%)
gen split merge : 1011.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1121.00 ns (0.4%)
LB compute : 281.34 us (93.4%)
LB move op cnt : 0
LB apply : 3.82 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1783.00 ns (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: 1.8758184523809522
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,-6.612327859447051e-19,1.239961209331545e-18)
sum a = (-2.2520247057537057e-17,-7.704799418833955e-18,2.2507070317237435e-17)
sum e = 1.1963606336735444
sum de = 5.6785088783928295e-18
Info: CFL hydro = 0.002676943489960692 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002676943489960692 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.3580e+04 | 13440 | 1 | 2.508e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.938343300825462 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 276 [SPH][rank=0]
Info: time since start : 284.099176215 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1947.45 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1929.76 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1892.54 ms [sph::CartesianRender][rank=0]
---------------- t = 0.6000000000000002, dt = 0.002676943489960692 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.46 us (3.4%)
patch tree reduce : 1673.00 ns (0.5%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 336.43 us (92.8%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1893.00 ns (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: 1.8638392857142858
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-5.270696119849099e-19,1.3179735013327207e-18)
sum a = (-2.4245202151305854e-17,2.1887763523155166e-17,-2.2066248459940964e-17)
sum e = 1.1963612548590876
sum de = 1.1085967213664283e-17
Info: CFL hydro = 0.0026686266540223496 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026686266540223496 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6995e+04 | 13440 | 1 | 2.358e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.86734386269278 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6026769434899609, dt = 0.0026686266540223496 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (2.0%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 1061.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 295.40 us (93.6%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1783.00 ns (63.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8642113095238095
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,-2.9707559948240377e-19,1.2029764950814677e-18)
sum a = (-4.6300669641910765e-17,-2.2731074902331023e-17,1.146376406067179e-16)
sum e = 1.19636129783093
sum de = 1.3796472644878044e-17
Info: CFL hydro = 0.00265983596708053 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00265983596708053 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6964e+04 | 13440 | 1 | 2.359e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.718120694420584 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6053455701439833, dt = 0.00265983596708053 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.9%)
patch tree reduce : 1682.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.4%)
LB compute : 304.22 us (93.9%)
LB move op cnt : 0
LB apply : 3.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1482.00 ns (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: 1.869940476190476
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.2999401250250614e-19,1.6959063708355368e-18)
sum a = (5.208406074796337e-18,2.092945513772806e-17,-3.035322022292189e-17)
sum e = 1.1963613213293542
sum de = 1.338989683019598e-17
Info: CFL hydro = 0.00270781825145908 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00270781825145908 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6632e+04 | 13440 | 1 | 2.373e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.34783853205708 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6080054061110638, dt = 0.00270781825145908 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.7%)
patch tree reduce : 1633.00 ns (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.4%)
LB compute : 326.23 us (94.0%)
LB move op cnt : 0
LB apply : 4.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1913.00 ns (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: 1.8764136904761906
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-4.791541927135544e-19,1.4305747366204059e-18)
sum a = (2.682065593714121e-18,-2.085279046689389e-17,-7.050514368683597e-17)
sum e = 1.1963613798481263
sum de = 6.5052130349130266e-18
Info: CFL hydro = 0.0026990486652442715 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026990486652442715 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7057e+04 | 13440 | 1 | 2.356e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.383729057782254 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6107132243625228, dt = 0.0026990486652442715 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.8%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1301.00 ns (0.4%)
LB compute : 318.62 us (93.8%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1682.00 ns (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: 1.876190476190476
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-7.762297921959581e-19,1.1851579485399322e-18)
sum a = (-1.8567224967650233e-18,2.790594018363741e-17,2.866420169360661e-17)
sum e = 1.1963614027127094
sum de = -1.734723475976807e-18
Info: CFL hydro = 0.0026892099191715042 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026892099191715042 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7285e+04 | 13440 | 1 | 2.346e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.41508535688689 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6134122730277671, dt = 0.0026892099191715042 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 1722.00 ns (0.5%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 319.13 us (94.4%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1672.00 ns (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: 1.8764880952380953
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,5.174865281306388e-19,1.3801138107002597e-18)
sum a = (-2.0354470106471792e-17,-1.663623357101461e-17,-3.9839275353168484e-17)
sum e = 1.196361426581463
sum de = 3.415236843329339e-18
Info: CFL hydro = 0.00270289115950585 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00270289115950585 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.2237e+04 | 13440 | 1 | 2.573e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.62775481871567 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6161014829469387, dt = 0.00270289115950585 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.9%)
patch tree reduce : 1753.00 ns (0.6%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.4%)
LB compute : 266.89 us (93.3%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1672.00 ns (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: 1.8758184523809525
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-5.941511989648075e-19,1.188152662244392e-18)
sum a = (1.4202130272029753e-17,-4.063227554210942e-18,-1.2014791382292378e-17)
sum e = 1.1963614686780417
sum de = -3.333921680392926e-17
Info: CFL hydro = 0.0027214376872132014 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027214376872132014 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.3870e+04 | 13440 | 1 | 2.495e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.00107976842435 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6188043741064445, dt = 0.0011956258935557074 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (2.1%)
patch tree reduce : 1692.00 ns (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.5%)
LB compute : 264.07 us (93.0%)
LB move op cnt : 0
LB apply : 3.69 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1662.00 ns (62.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8748511904761906
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.9707559948240377e-19,1.2004309884326768e-18)
sum a = (9.535168434999733e-18,-1.2649670687637837e-17,-5.48990916301555e-18)
sum e = 1.1963607043807662
sum de = -1.7780915628762273e-17
Info: CFL hydro = 0.0027250952848026553 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027250952848026553 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8788e+04 | 13440 | 1 | 2.286e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.827154332897965 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 284 [SPH][rank=0]
Info: time since start : 292.939552725 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1981.68 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1989.89 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1943.87 ms [sph::CartesianRender][rank=0]
---------------- t = 0.6200000000000002, dt = 0.0027250952848026553 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.09 us (3.2%)
patch tree reduce : 1732.00 ns (0.5%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 353.38 us (93.1%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1953.00 ns (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: 1.8561011904761904
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-6.324835343818918e-19,1.1918960543749666e-18)
sum a = (2.6631390031019354e-17,-9.966407208441932e-18,4.776328781516889e-17)
sum e = 1.1963615071427538
sum de = 1.452830911130576e-17
Info: CFL hydro = 0.0027076720432186 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027076720432186 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.3276e+04 | 13440 | 1 | 2.523e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.88772865230334 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6227250952848029, dt = 0.0027076720432186 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (2.0%)
patch tree reduce : 1653.00 ns (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1362.00 ns (0.5%)
LB compute : 272.82 us (93.3%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1692.00 ns (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: 1.8550595238095242
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-5.270696119849099e-20,1.397632885871349e-18)
sum a = (2.2299836128888825e-17,1.7709538962692972e-17,5.28327391740783e-17)
sum e = 1.1963615314067089
sum de = 4.7704895589362195e-18
Info: CFL hydro = 0.0026925332825730747 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026925332825730747 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8046e+04 | 13440 | 1 | 2.315e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.098949695512935 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6254327673280216, dt = 0.0026925332825730747 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.9%)
patch tree reduce : 1652.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.4%)
LB compute : 298.67 us (93.6%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1583.00 ns (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: 1.8593005952380954
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.449910187537592e-19,1.5389833727218476e-18)
sum a = (4.101559889628026e-17,-3.756568870874267e-18,4.8661701926506806e-17)
sum e = 1.1963615344168288
sum de = -1.8431436932253575e-17
Info: CFL hydro = 0.002715973348698444 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002715973348698444 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7507e+04 | 13440 | 1 | 2.337e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.47521603542309 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6281253006105947, dt = 0.002715973348698444 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (2.1%)
patch tree reduce : 1863.00 ns (0.7%)
gen split merge : 1041.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 264.25 us (93.1%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1693.00 ns (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: 1.8748511904761906
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,-5.749850312562653e-20,1.6740449607929808e-18)
sum a = (-9.966407208441932e-18,-2.3459389275255625e-17,-4.570532055746418e-18)
sum e = 1.196361558107704
sum de = 1.3118846287074604e-17
Info: CFL hydro = 0.0027178827058606733 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027178827058606733 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1061e+04 | 13440 | 1 | 2.632e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.14660972755537 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6308412739592931, dt = 0.0027178827058606733 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.3%)
patch tree reduce : 1552.00 ns (0.5%)
gen split merge : 1021.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.4%)
LB compute : 274.52 us (92.9%)
LB move op cnt : 0
LB apply : 3.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1543.00 ns (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: 1.8774553571428572
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.360303153693346e-19,1.5806098932138377e-18)
sum a = (-2.6353480599245495e-17,3.074253300450165e-17,-1.9210489471368182e-17)
sum e = 1.1963615599515995
sum de = 4.0115480381963664e-18
Info: CFL hydro = 0.0027037231046400604 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027037231046400604 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1296e+04 | 13440 | 1 | 2.620e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.343736688190035 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6335591566651538, dt = 0.0027037231046400604 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (2.2%)
patch tree reduce : 1712.00 ns (0.6%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.4%)
LB compute : 275.43 us (93.1%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1773.00 ns (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: 1.877306547619048
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,-8.433113791758558e-19,1.5088864999920276e-18)
sum a = (-1.460461979390914e-17,3.442243720454175e-17,-2.641337487333469e-18)
sum e = 1.1963615464869413
sum de = 4.9873299934333204e-18
Info: CFL hydro = 0.0027203207446883752 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027203207446883752 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0816e+04 | 13440 | 1 | 2.645e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.80133107204974 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6362628797697939, dt = 0.0027203207446883752 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (2.1%)
patch tree reduce : 1712.00 ns (0.6%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1392.00 ns (0.5%)
LB compute : 275.68 us (93.0%)
LB move op cnt : 0
LB apply : 3.71 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1643.00 ns (61.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8775297619047622
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-6.229004505276207e-19,1.5106833282147033e-18)
sum a = (1.1078044935537378e-17,3.327246714202922e-17,2.988903959873063e-17)
sum e = 1.1963615545913406
sum de = -6.7220534694101275e-18
Info: CFL hydro = 0.00271776457190802 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00271776457190802 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7109e+04 | 13440 | 1 | 2.353e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.612973433007674 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6389832005144823, dt = 0.0010167994855179163 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.9%)
patch tree reduce : 1743.00 ns (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1392.00 ns (0.5%)
LB compute : 263.64 us (92.9%)
LB move op cnt : 0
LB apply : 3.60 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1432.00 ns (63.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8771577380952384
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,8.62477546884398e-20,1.598727911125819e-18)
sum a = (-1.9089503037708007e-17,3.2199161750350858e-18,-2.9090648925121675e-17)
sum e = 1.1963607168896333
sum de = 2.883977778811442e-17
Info: CFL hydro = 0.002722060278647723 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002722060278647723 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.9001e+04 | 13440 | 1 | 2.278e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.069206227767463 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 292 [SPH][rank=0]
Info: time since start : 302.159581032 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1972.09 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1975.86 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1942.11 ms [sph::CartesianRender][rank=0]
---------------- t = 0.6400000000000002, dt = 0.002722060278647723 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.02 us (3.4%)
patch tree reduce : 1753.00 ns (0.5%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 352.32 us (92.8%)
LB move op cnt : 0
LB apply : 4.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1633.00 ns (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: 1.8649553571428574
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.293716320326597e-19,1.482383283707559e-18)
sum a = (-1.2189682662632825e-17,2.5452670716944012e-17,6.184383271079758e-18)
sum e = 1.1963615412826611
sum de = 2.42861286636753e-17
Info: CFL hydro = 0.0027218225267530228 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027218225267530228 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7458e+04 | 13440 | 1 | 2.832e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.602631372165625 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.642722060278648, dt = 0.0027218225267530228 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.7%)
patch tree reduce : 1733.00 ns (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 335.25 us (94.3%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1703.00 ns (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: 1.8648065476190476
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.0124476093969286e-19,1.5553045624111531e-18)
sum a = (5.933845522564658e-17,-5.9798443250651594e-18,-9.039842788282097e-18)
sum e = 1.1963615417366509
sum de = -7.047314121155779e-18
Info: CFL hydro = 0.002717248152676945 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002717248152676945 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6945e+04 | 13440 | 1 | 2.360e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.5163543897759 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.645443882805401, dt = 0.002717248152676945 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (2.0%)
patch tree reduce : 1693.00 ns (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1221.00 ns (0.4%)
LB compute : 299.91 us (93.7%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1503.00 ns (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: 1.8642857142857143
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.354079348994881e-19,1.5028970725831081e-18)
sum a = (1.3952970091818706e-17,-1.5792922191838754e-17,-3.304546784323117e-17)
sum e = 1.196361529598789
sum de = -2.1358782797964437e-17
Info: CFL hydro = 0.0027223462882698555 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027223462882698555 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9350e+04 | 13440 | 1 | 2.723e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.91846489939886 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6481611309580779, dt = 0.0027223462882698555 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.9%)
patch tree reduce : 1773.00 ns (0.6%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1171.00 ns (0.4%)
LB compute : 298.64 us (93.5%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1723.00 ns (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: 1.8712797619047616
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.8687013515828623e-19,1.3904455729806457e-18)
sum a = (4.0708940212943584e-17,3.3732455167034233e-18,-6.534105937486563e-17)
sum e = 1.1963615205947244
sum de = 6.288372600415926e-18
Info: CFL hydro = 0.00271149567916097 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00271149567916097 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7539e+04 | 13440 | 1 | 2.336e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.95774925519283 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6508834772463478, dt = 0.00271149567916097 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (2.1%)
patch tree reduce : 1943.00 ns (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.4%)
LB compute : 272.54 us (93.1%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1583.00 ns (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: 1.870386904761905
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-3.545741026080303e-19,1.1629970671269304e-18)
sum a = (-5.24386348505714e-17,2.2999401250250612e-17,-1.6875810667371388e-17)
sum e = 1.1963614993838012
sum de = -2.8406096919120216e-17
Info: CFL hydro = 0.0027254357233772683 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027254357233772683 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.4271e+04 | 13440 | 1 | 2.476e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.41702065303703 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6535949729255087, dt = 0.0027254357233772683 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (2.0%)
patch tree reduce : 1922.00 ns (0.6%)
gen split merge : 1101.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1091.00 ns (0.4%)
LB compute : 290.86 us (93.5%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1492.00 ns (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: 1.8717261904761906
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-6.20504679564053e-19,1.177371692908337e-18)
sum a = (-1.8591182677285913e-17,-4.9065389333867974e-18,1.5376058044177962e-17)
sum e = 1.1963614975874244
sum de = 3.415236843329339e-17
Info: CFL hydro = 0.002737899134549009 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002737899134549009 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.3687e+04 | 13440 | 1 | 2.503e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.19272476969623 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.656320408648886, dt = 0.002737899134549009 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 1783.00 ns (0.6%)
gen split merge : 1091.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.4%)
LB compute : 291.83 us (93.7%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1633.00 ns (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: 1.8739583333333334
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,-4.959245894585289e-19,1.2651168044490066e-18)
sum a = (-4.18972426108732e-17,4.13989222504511e-17,4.124798867974633e-17)
sum e = 1.1963615048231369
sum de = -2.677979366039196e-17
Info: CFL hydro = 0.002740462155620149 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002740462155620149 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8879e+04 | 13440 | 1 | 2.750e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.84607829400404 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.659058307783435, dt = 0.0009416922165652597 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (2.0%)
patch tree reduce : 1733.00 ns (0.6%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.4%)
LB compute : 264.51 us (93.0%)
LB move op cnt : 0
LB apply : 3.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1503.00 ns (63.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8735863095238097
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.9166167708542177e-20,1.3315994486880124e-18)
sum a = (9.353089841768582e-18,-4.75320959171846e-18,2.827009737009971e-18)
sum e = 1.1963607409999715
sum de = -1.9081958235744878e-17
Info: CFL hydro = 0.0027446110057810203 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027446110057810203 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0926e+04 | 13440 | 1 | 2.639e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.845406175557148 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 300 [SPH][rank=0]
Info: time since start : 311.263778205 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 2.00 s [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1993.99 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1924.53 ms [sph::CartesianRender][rank=0]
---------------- t = 0.6600000000000003, dt = 0.0027446110057810203 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.15 us (3.5%)
patch tree reduce : 1913.00 ns (0.5%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 348.55 us (92.7%)
LB move op cnt : 0
LB apply : 4.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1863.00 ns (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: 1.8661458333333336
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,-3.1145022526381037e-19,1.329128809881833e-18)
sum a = (1.5907919198090007e-18,-3.449910187537592e-17,-5.719184444228986e-17)
sum e = 1.1963615173963875
sum de = 6.396792817664476e-18
Info: CFL hydro = 0.002747657673758072 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002747657673758072 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2871e+04 | 13440 | 1 | 3.135e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.517009591947254 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6627446110057813, dt = 0.002747657673758072 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.0%)
patch tree reduce : 1983.00 ns (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.4%)
LB compute : 300.74 us (92.5%)
LB move op cnt : 0
LB apply : 6.25 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1733.00 ns (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: 1.8642857142857143
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.827009737009971e-19,1.0789953477168353e-18)
sum a = (-3.6415718646230135e-19,1.0886383258451956e-17,4.9580480091035044e-17)
sum e = 1.1963615746205354
sum de = 3.0791341698588326e-17
Info: CFL hydro = 0.0027359517057194546 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027359517057194546 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7448e+04 | 13440 | 1 | 2.340e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.28056362475857 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6654922686795394, dt = 0.0027359517057194546 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.5%)
patch tree reduce : 1472.00 ns (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1362.00 ns (0.4%)
LB compute : 347.39 us (94.6%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1773.00 ns (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: 1.8639880952380954
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.593656445351658e-20,1.3661883919745221e-18)
sum a = (6.886404057679204e-17,-1.303299404180868e-17,-1.6396656474657833e-17)
sum e = 1.1963616324235788
sum de = -1.691355389077387e-17
Info: CFL hydro = 0.0027378899982584493 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027378899982584493 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1849e+04 | 13440 | 1 | 2.592e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.99708929423465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6682282203852589, dt = 0.0027378899982584493 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.7%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 1091.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.3%)
LB compute : 312.83 us (94.2%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 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: 1.867782738095238
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,5.15090757167071e-20,1.2356188744600785e-18)
sum a = (-1.2381344339718247e-17,-1.7019556925185454e-17,1.2958725141938079e-17)
sum e = 1.1963617145231698
sum de = 1.452830911130576e-17
Info: CFL hydro = 0.0027282787385919326 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027282787385919326 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7675e+04 | 13440 | 1 | 2.330e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.29699230129488 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6709661103835173, dt = 0.0027282787385919326 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (2.0%)
patch tree reduce : 1632.00 ns (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.4%)
LB compute : 273.62 us (93.5%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1533.00 ns (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: 1.8783482142857144
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229113,-6.983672358800056e-19,1.3125830166646932e-18)
sum a = (1.109721110324592e-17,1.6252910216843767e-17,-2.0437124204714882e-17)
sum e = 1.1963617962929207
sum de = -7.48099499014998e-18
Info: CFL hydro = 0.0027303486050954465 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027303486050954465 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6518e+04 | 13440 | 1 | 2.378e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.30282194554329 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6736943891221092, dt = 0.0027303486050954465 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.5%)
patch tree reduce : 1682.00 ns (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 339.48 us (94.7%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1472.00 ns (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: 1.8793898809523812
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.934819430370521e-19,1.2088161868051641e-18)
sum a = (1.2304679668884078e-17,-8.27978445009022e-18,-3.649597697350966e-17)
sum e = 1.1963618866485015
sum de = 9.432558900623889e-18
Info: CFL hydro = 0.002726506885219223 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002726506885219223 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2608e+04 | 13440 | 1 | 3.154e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.160956317285066 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6764247377272047, dt = 0.002726506885219223 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.8%)
patch tree reduce : 1822.00 ns (0.6%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.4%)
LB compute : 308.22 us (94.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1412.00 ns (63.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.878869047619048
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-6.656874225800889e-19,1.0760006340123757e-18)
sum a = (2.1676935678361204e-17,-1.9932814416883864e-17,-4.162891626295361e-17)
sum e = 1.1963619670217003
sum de = 1.3877787807814457e-17
Info: CFL hydro = 0.0027352367038401635 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027352367038401635 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.4774e+04 | 13440 | 1 | 2.454e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.00189061085367 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6791512446124239, dt = 0.0008487553875763387 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.8%)
patch tree reduce : 1773.00 ns (0.6%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.4%)
LB compute : 270.71 us (87.4%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1592.00 ns (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: 1.8787202380952381
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-5.978945910953821e-19,1.0354971311595581e-18)
sum a = (2.963089527740621e-17,3.265914977535587e-17,-2.534725679454703e-18)
sum e = 1.196360917676638
sum de = 6.396792817664476e-18
Info: CFL hydro = 0.0027379530484625287 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027379530484625287 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.3441e+04 | 13440 | 1 | 2.515e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.149447117082016 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 308 [SPH][rank=0]
Info: time since start : 320.42386768800003 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1966.15 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1943.78 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1924.85 ms [sph::CartesianRender][rank=0]
---------------- t = 0.6800000000000003, dt = 0.0027379530484625287 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.19 us (3.5%)
patch tree reduce : 1532.00 ns (0.4%)
gen split merge : 600.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.4%)
LB compute : 317.59 us (92.4%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.869717261904762
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.731413275756805e-19,1.0529413384880358e-18)
sum a = (9.06559732614045e-18,1.0886383258451956e-17,-7.922814576518622e-18)
sum e = 1.196362036852728
sum de = 1.940721888749053e-17
Info: CFL hydro = 0.0027200812719815662 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027200812719815662 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.2958e+04 | 13440 | 1 | 2.538e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.83833364687857 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6827379530484629, dt = 0.0027200812719815662 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.8%)
patch tree reduce : 1833.00 ns (0.6%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.4%)
LB compute : 288.94 us (93.6%)
LB move op cnt : 0
LB apply : 3.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 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: 1.8578125
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-3.4019947682662363e-19,1.0146090030709515e-18)
sum a = (-2.3382724604421456e-17,2.974589228365746e-17,5.069451358909406e-17)
sum e = 1.1963621033239185
sum de = 6.830473686658678e-18
Info: CFL hydro = 0.002727078017838692 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002727078017838692 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8391e+04 | 13440 | 1 | 2.302e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.543594842747886 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6854580343204444, dt = 0.002727078017838692 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (2.0%)
patch tree reduce : 1552.00 ns (0.5%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.4%)
LB compute : 264.34 us (93.3%)
LB move op cnt : 0
LB apply : 3.59 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1572.00 ns (57.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.856696428571429
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.599411495471033e-19,1.2434051300916737e-18)
sum a = (-9.391422177185667e-18,-4.75320959171846e-18,6.232837738817917e-17)
sum e = 1.1963621645199092
sum de = 2.5153490401663703e-17
Info: CFL hydro = 0.0027342101924043042 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027342101924043042 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8869e+04 | 13440 | 1 | 2.283e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.00209714078265 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6881851123382831, dt = 0.0027342101924043042 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (2.0%)
patch tree reduce : 1752.00 ns (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.4%)
LB compute : 267.60 us (93.1%)
LB move op cnt : 0
LB apply : 3.84 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1512.00 ns (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: 1.8587797619047617
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-2.228066996118028e-19,1.4278794942863923e-18)
sum a = (8.145621276130426e-18,-1.9319497050210515e-17,-2.191651277471798e-17)
sum e = 1.1963622207487434
sum de = 6.288372600415926e-18
Info: CFL hydro = 0.0027233235253716834 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027233235253716834 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8843e+04 | 13440 | 1 | 2.284e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.095225441381665 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6909193225306873, dt = 0.0027233235253716834 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.6%)
patch tree reduce : 1763.00 ns (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 316.10 us (89.9%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 1.8741815476190475
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-2.7311788984672605e-19,1.2478972006483633e-18)
sum a = (-1.5869586862672924e-17,1.5332934166833741e-18,3.8725241855109467e-17)
sum e = 1.1963622522148198
sum de = -1.0462550964485118e-17
Info: CFL hydro = 0.002713833152189568 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002713833152189568 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.3648e+04 | 13440 | 1 | 2.505e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.134173379111246 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.693642646056059, dt = 0.002713833152189568 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 1532.00 ns (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1141.00 ns (0.4%)
LB compute : 289.57 us (93.8%)
LB move op cnt : 0
LB apply : 4.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1653.00 ns (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: 1.8753720238095235
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.983203604220967e-19,1.4287779083977302e-18)
sum a = (8.183953611547509e-18,-1.425962877515538e-17,-2.281732265701946e-17)
sum e = 1.1963622752806842
sum de = 8.673617379884035e-19
Info: CFL hydro = 0.002718610169845697 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002718610169845697 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.4586e+04 | 13440 | 1 | 2.462e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.6792895071485 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6963564792082485, dt = 0.002718610169845697 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 1031.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 344.73 us (94.7%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1863.00 ns (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: 1.8754464285714285
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-5.079034442763677e-19,1.2989570693094015e-18)
sum a = (3.693320517436078e-17,1.0733053916783619e-18,-5.61185390506115e-17)
sum e = 1.1963623007508026
sum de = -7.643625316022806e-18
Info: CFL hydro = 0.002727274400269127 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002727274400269127 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.3425e+04 | 13440 | 1 | 2.516e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.90406759019626 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6990750893780941, dt = 0.0009249106219061387 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (2.1%)
patch tree reduce : 1682.00 ns (0.6%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1362.00 ns (0.5%)
LB compute : 260.35 us (93.0%)
LB move op cnt : 0
LB apply : 3.67 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1743.00 ns (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: 1.8757440476190474
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-3.7374027031657247e-19,1.1829119132615874e-18)
sum a = (1.7057889260602538e-18,-6.133173666733497e-19,9.270675320621852e-17)
sum e = 1.19636106719933
sum de = -1.1844908734404136e-17
Info: CFL hydro = 0.0027305945432045315 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027305945432045315 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8320e+04 | 13440 | 1 | 2.305e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.448512105576025 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 316 [SPH][rank=0]
Info: time since start : 329.515449558 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1970.21 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1950.42 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1907.19 ms [sph::CartesianRender][rank=0]
---------------- t = 0.7000000000000003, dt = 0.0027305945432045315 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.12 us (3.6%)
patch tree reduce : 1562.00 ns (0.4%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 335.88 us (92.6%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 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: 1.874404761904762
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-3.6894872838943693e-19,1.5285018747562386e-18)
sum a = (-9.583083854271088e-19,1.3799640750150368e-18,1.6003750036632717e-17)
sum e = 1.19636230468417
sum de = 3.458604930228759e-17
Info: CFL hydro = 0.002731338651376989 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002731338651376989 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8668e+04 | 13440 | 1 | 2.762e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.59628926380336 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7027305945432049, dt = 0.002731338651376989 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (2.0%)
patch tree reduce : 1642.00 ns (0.5%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 285.90 us (93.5%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1482.00 ns (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: 1.8627232142857144
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.9645321901255733e-19,1.440756763215569e-18)
sum a = (1.4868154599901595e-17,2.4226035983597312e-17,5.89359657037672e-17)
sum e = 1.196362293718079
sum de = -1.0360907010814602e-17
Info: CFL hydro = 0.002718899820940013 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002718899820940013 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.4833e+04 | 13440 | 1 | 2.451e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.116500922281 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7054619331945818, dt = 0.002718899820940013 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (2.1%)
patch tree reduce : 1572.00 ns (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1081.00 ns (0.4%)
LB compute : 270.93 us (93.2%)
LB move op cnt : 0
LB apply : 3.75 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1863.00 ns (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: 1.8622023809523809
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,4.31238773442199e-20,1.6665581765318314e-18)
sum a = (-1.5867191091709355e-17,2.9132574916984108e-18,5.450858096309395e-17)
sum e = 1.1963622427280012
sum de = 4.3503612170980865e-18
Info: CFL hydro = 0.0026969549626084275 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026969549626084275 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8376e+04 | 13440 | 1 | 2.302e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.514128628133555 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7081808330155218, dt = 0.0026969549626084275 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (2.1%)
patch tree reduce : 1462.00 ns (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1201.00 ns (0.4%)
LB compute : 258.63 us (93.0%)
LB move op cnt : 0
LB apply : 3.85 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1513.00 ns (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: 1.8626488095238096
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,5.270696119849099e-20,1.8124007339390197e-18)
sum a = (-2.1082784479396394e-17,-1.778620363352714e-17,-3.7263821567333125e-17)
sum e = 1.1963621671518279
sum de = 4.607859233063394e-19
Info: CFL hydro = 0.0027059108130421962 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027059108130421962 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0511e+04 | 13440 | 1 | 2.661e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.48924551009022 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7108777879781303, dt = 0.0027059108130421962 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.8%)
patch tree reduce : 1692.00 ns (0.5%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.4%)
LB compute : 293.67 us (94.0%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 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: 1.873065476190476
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-3.25824851045217e-19,1.588396148845433e-18)
sum a = (3.0876696178461445e-17,3.143251504200917e-17,-2.78771909320746e-17)
sum e = 1.1963621068762171
sum de = 1.1926223897340549e-17
Info: CFL hydro = 0.002703471538277942 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002703471538277942 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0606e+04 | 13440 | 1 | 2.656e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.678825068325324 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7135836987911724, dt = 0.002703471538277942 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.9%)
patch tree reduce : 1933.00 ns (0.6%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 279.47 us (93.4%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1763.00 ns (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: 1.870610119047619
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-1.8207859323115067e-19,1.524309275569995e-18)
sum a = (1.496877698037144e-17,-1.3186323383477017e-17,-3.5828155817415144e-17)
sum e = 1.1963620238004367
sum de = 2.995108501491206e-17
Info: CFL hydro = 0.0027130881685007067 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027130881685007067 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7944e+04 | 13440 | 1 | 2.319e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.960126413726655 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7162871703294504, dt = 0.0027130881685007067 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (2.1%)
patch tree reduce : 1492.00 ns (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.4%)
LB compute : 263.73 us (93.1%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1443.00 ns (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: 1.8715029761904765
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-3.0665868333667484e-19,1.4230879523592567e-18)
sum a = (6.8614880396581e-18,-4.2932215667134474e-18,5.983437981510511e-17)
sum e = 1.1963619415109066
sum de = -3.474867962816042e-17
Info: CFL hydro = 0.00270861995566567 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00270861995566567 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5955e+04 | 13440 | 1 | 2.402e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.66328902694807 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7190002584979511, dt = 0.0009997415020491784 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.7%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 1041.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.4%)
LB compute : 299.03 us (93.8%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1592.00 ns (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: 1.8723958333333333
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-1.5332934166833742e-19,1.6147496294446785e-18)
sum a = (2.606598808361736e-18,1.4566287458492054e-17,2.3363558436712913e-17)
sum e = 1.1963610095189117
sum de = 2.3798237686056822e-17
Info: CFL hydro = 0.00269721980236839 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00269721980236839 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8561e+04 | 13440 | 1 | 2.295e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.682051749786027 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 324 [SPH][rank=0]
Info: time since start : 338.48973610400003 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1983.72 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1986.71 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1962.67 ms [sph::CartesianRender][rank=0]
---------------- t = 0.7200000000000003, dt = 0.00269721980236839 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.25 us (3.4%)
patch tree reduce : 1703.00 ns (0.5%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 338.34 us (92.7%)
LB move op cnt : 0
LB apply : 4.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1852.00 ns (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: 1.8752232142857141
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,-1.9166167708542177e-19,1.6605687491229121e-18)
sum a = (-1.12697066126228e-17,8.433113791758558e-18,2.880914583690246e-17)
sum e = 1.1963618217629766
sum de = -1.3118846287074604e-17
Info: CFL hydro = 0.0027059654120638816 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027059654120638816 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6550e+04 | 13440 | 1 | 2.887e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.63116319898943 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7226972198023687, dt = 0.0027059654120638816 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.8%)
patch tree reduce : 1853.00 ns (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1091.00 ns (0.3%)
LB compute : 297.87 us (93.7%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1532.00 ns (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: 1.865550595238095
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,1.0541392239698198e-19,1.7423244332546625e-18)
sum a = (8.394781456341473e-18,1.0273065891778608e-17,4.949183656538304e-17)
sum e = 1.1963617201520145
sum de = 2.927345865710862e-18
Info: CFL hydro = 0.0026976275022262347 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026976275022262347 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.3702e+04 | 13440 | 1 | 2.503e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.92401626690327 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7254031852144326, dt = 0.0026976275022262347 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (2.2%)
patch tree reduce : 1883.00 ns (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.4%)
LB compute : 272.31 us (92.8%)
LB move op cnt : 0
LB apply : 3.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1822.00 ns (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: 1.863764880952381
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.9166167708542177e-19,1.9016432023319193e-18)
sum a = (-8.471446127175642e-18,2.7599281500300734e-17,2.2592120186444093e-17)
sum e = 1.1963616226124387
sum de = -5.421010862427522e-20
Info: CFL hydro = 0.0027043841970114625 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027043841970114625 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.3962e+04 | 13440 | 1 | 2.491e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.99177695030109 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7281008127166588, dt = 0.0027043841970114625 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (2.1%)
patch tree reduce : 1913.00 ns (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.4%)
LB compute : 276.05 us (93.1%)
LB move op cnt : 0
LB apply : 3.77 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1582.00 ns (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: 1.8628720238095238
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,3.7374027031657247e-19,1.9282961543016106e-18)
sum a = (-4.438884441298368e-17,4.2932215667134474e-18,-2.0709044209079824e-17)
sum e = 1.1963615437243256
sum de = -2.47198095326695e-17
Info: CFL hydro = 0.00271530385333489 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00271530385333489 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.3807e+04 | 13440 | 1 | 2.498e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.97739200544216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7308051969136703, dt = 0.00271530385333489 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (2.1%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.4%)
LB compute : 271.30 us (93.1%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1792.00 ns (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: 1.8722470238095235
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,1.2458009010552416e-19,1.8124007339390197e-18)
sum a = (2.1619437175235577e-17,-4.523215579215954e-17,-2.821259886697408e-17)
sum e = 1.1963614796652824
sum de = 1.702197410802242e-17
Info: CFL hydro = 0.002713928994922592 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002713928994922592 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.2435e+04 | 13440 | 1 | 2.563e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.13679936903029 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7335205007670051, dt = 0.002713928994922592 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.1%)
patch tree reduce : 1683.00 ns (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1363.00 ns (0.4%)
LB compute : 298.96 us (93.4%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1613.00 ns (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: 1.8768601190476188
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,1.4374625781406633e-19,1.7216609086938902e-18)
sum a = (3.2007500073265434e-17,2.74459521586324e-17,2.5994114954710327e-17)
sum e = 1.196361427253693
sum de = -1.680513367352532e-17
Info: CFL hydro = 0.0027078512809555404 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027078512809555404 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6674e+04 | 13440 | 1 | 2.371e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.19906839581168 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7362344297619278, dt = 0.0027078512809555404 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.7%)
patch tree reduce : 1613.00 ns (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1191.00 ns (0.3%)
LB compute : 338.27 us (94.6%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1783.00 ns (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: 1.8769345238095236
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-2.9707559948240377e-19,1.8764876072144576e-18)
sum a = (2.5136428949753065e-17,2.069946112522555e-17,-7.326267606590248e-17)
sum e = 1.196361393863216
sum de = 9.75781955236954e-19
Info: CFL hydro = 0.002710199388427753 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002710199388427753 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6677e+04 | 13440 | 1 | 2.879e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.85587755018499 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7389422810428833, dt = 0.0010577189571170376 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.6%)
patch tree reduce : 1682.00 ns (0.5%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 352.92 us (94.7%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1472.00 ns (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: 1.8765624999999997
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,1.629124255226085e-19,1.6680555333840613e-18)
sum a = (-1.6770396744974405e-18,1.5639592850170416e-17,-2.5907867200021888e-17)
sum e = 1.196360934874284
sum de = -3.9302328752599536e-17
Info: CFL hydro = 0.002715247347567795 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002715247347567795 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3461e+04 | 13440 | 1 | 3.092e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.31326251643485 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 332 [SPH][rank=0]
Info: time since start : 347.70480243900005 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1972.73 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1964.03 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1929.91 ms [sph::CartesianRender][rank=0]
---------------- t = 0.7400000000000003, dt = 0.002715247347567795 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.59 us (3.0%)
patch tree reduce : 1662.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 357.94 us (93.3%)
LB move op cnt : 0
LB apply : 4.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1963.00 ns (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: 1.87641369047619
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,1.0541392239698198e-19,1.6168459290378002e-18)
sum a = (3.514596003553922e-18,7.819796425085208e-18,1.5864795320745787e-17)
sum e = 1.1963613816008432
sum de = -6.071532165918825e-18
Info: CFL hydro = 0.0027198298917871194 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027198298917871194 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7130e+04 | 13440 | 1 | 2.353e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.55060277739269 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7427152473475681, dt = 0.0027198298917871194 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.9%)
patch tree reduce : 1983.00 ns (0.7%)
gen split merge : 1111.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1131.00 ns (0.4%)
LB compute : 264.07 us (92.8%)
LB move op cnt : 0
LB apply : 4.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1643.00 ns (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: 1.8743303571428571
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,2.0124476093969286e-19,1.7159709526554168e-18)
sum a = (9.156636622756025e-18,2.2232754541908925e-17,-1.4875341912792297e-17)
sum e = 1.1963614061893921
sum de = -7.643625316022806e-18
Info: CFL hydro = 0.0027019972146421736 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027019972146421736 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.2600e+04 | 13440 | 1 | 2.555e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.320599314179724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7454350772393552, dt = 0.0027019972146421736 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.9%)
patch tree reduce : 1673.00 ns (0.6%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.4%)
LB compute : 268.65 us (93.2%)
LB move op cnt : 0
LB apply : 4.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1522.00 ns (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: 1.857217261904762
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.9290643802511465e-19,1.6366110394872344e-18)
sum a = (-8.8164371459294e-19,-2.606598808361736e-18,-1.8255774742386424e-18)
sum e = 1.196361435624697
sum de = 1.870248747537495e-17
Info: CFL hydro = 0.002721051581059155 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002721051581059155 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7105e+04 | 13440 | 1 | 2.354e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.329376155264896 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7481370744539974, dt = 0.002721051581059155 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (2.0%)
patch tree reduce : 2.11 us (0.7%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1292.00 ns (0.4%)
LB compute : 274.51 us (92.9%)
LB move op cnt : 0
LB apply : 3.89 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1642.00 ns (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: 1.8555059523809523
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,2.2999401250250614e-19,1.6503867225277491e-18)
sum a = (-2.0162808429386372e-17,-2.86725868919791e-17,3.949428433441472e-17)
sum e = 1.196361493653637
sum de = -3.946495907847236e-17
Info: CFL hydro = 0.002714829400535794 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002714829400535794 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1557e+04 | 13440 | 1 | 2.607e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.5771529679103 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7508581260350565, dt = 0.002714829400535794 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.8%)
patch tree reduce : 1412.00 ns (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.4%)
LB compute : 311.95 us (94.1%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1442.00 ns (63.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8612351190476193
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.4374625781406633e-19,1.8159943903843712e-18)
sum a = (2.138944316273307e-17,-6.792489835907348e-17,4.678940691847859e-17)
sum e = 1.1963615529462963
sum de = 4.87890977618477e-19
Info: CFL hydro = 0.002724063875067531 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002724063875067531 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 5.7130e+04 | 13440 | 1 | 2.353e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.54380337139355 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7535729554355923, dt = 0.002724063875067531 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.9%)
patch tree reduce : 1743.00 ns (0.5%)
gen split merge : 1001.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 305.60 us (93.8%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1623.00 ns (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: 1.8744791666666667
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.6957110885928335e-19,1.9486602074919366e-18)
sum a = (3.239082342743628e-17,-1.1844691643879065e-17,-2.466925361185735e-17)
sum e = 1.1963616265265542
sum de = -1.5341460740669888e-17
Info: CFL hydro = 0.0026821351100924516 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026821351100924516 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2225e+04 | 13440 | 1 | 3.183e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.80970149768544 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7562970193106598, dt = 0.0026821351100924516 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.7%)
patch tree reduce : 1723.00 ns (0.5%)
gen split merge : 1011.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1071.00 ns (0.3%)
LB compute : 319.90 us (94.1%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1902.00 ns (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: 1.874330357142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-1.5332934166833742e-19,1.7818546541535305e-18)
sum a = (-4.0555610871275245e-17,-1.8706179683537164e-17,1.9152990968242555e-17)
sum e = 1.1963616788817741
sum de = 1.3552527156068805e-17
Info: CFL hydro = 0.0026902960158081747 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026902960158081747 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6774e+04 | 13440 | 1 | 2.367e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.787948545332156 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7589791544207523, dt = 0.0010208455792480864 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.8%)
patch tree reduce : 1552.00 ns (0.5%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.4%)
LB compute : 323.13 us (94.3%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1563.00 ns (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: 1.874404761904762
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.0541392239698198e-19,1.8663055806192944e-18)
sum a = (2.0392802441888877e-17,-1.3377985060562439e-17,2.4218848670706607e-17)
sum e = 1.1963610959717765
sum de = -2.4448758989548125e-17
Info: CFL hydro = 0.002694699973330651 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002694699973330651 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7785e+04 | 13440 | 1 | 2.326e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.800858996163436 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 340 [SPH][rank=0]
Info: time since start : 356.750885288 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 2.02 s [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 2.01 s [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1959.95 ms [sph::CartesianRender][rank=0]
---------------- t = 0.7600000000000003, dt = 0.002694699973330651 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.58 us (3.6%)
patch tree reduce : 1832.00 ns (0.5%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1051.00 ns (0.3%)
LB compute : 319.19 us (92.4%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1682.00 ns (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: 1.8750744047619043
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.8749251562813265e-19,1.934884524451422e-18)
sum a = (1.0503059904281113e-17,3.1547512048260424e-17,5.881018772817988e-17)
sum e = 1.1963617511750153
sum de = 8.456776945386935e-18
Info: CFL hydro = 0.0026970728153278348 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026970728153278348 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6980e+04 | 13440 | 1 | 2.359e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.127570969197855 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.762694699973331, dt = 0.0026970728153278348 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.5%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.4%)
LB compute : 330.86 us (94.5%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1773.00 ns (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: 1.875297619047619
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.3416317395979523e-19,2.135829814020669e-18)
sum a = (2.7407619823215314e-17,-4.0095622846270236e-17,-7.235228309974671e-18)
sum e = 1.196361841236054
sum de = 3.810970636286548e-17
Info: CFL hydro = 0.0026903725207966162 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026903725207966162 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3299e+04 | 13440 | 1 | 3.104e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.280705590508745 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7653917727886588, dt = 0.0026903725207966162 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.4%)
patch tree reduce : 1442.00 ns (0.4%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 358.67 us (95.1%)
LB move op cnt : 0
LB apply : 3.27 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1743.00 ns (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: 1.8623511904761902
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-2.779094317738616e-19,2.02053333639897e-18)
sum a = (-3.760402104415975e-17,3.035920965033081e-17,-3.2247077169622213e-18)
sum e = 1.196361902578585
sum de = 3.108949729602184e-17
Info: CFL hydro = 0.002686949684520318 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002686949684520318 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6314e+04 | 13440 | 1 | 2.387e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.581530385974744 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7680821453094554, dt = 0.002686949684520318 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.81 us (3.7%)
patch tree reduce : 1502.00 ns (0.4%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.4%)
LB compute : 307.44 us (87.9%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1683.00 ns (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: 1.8613095238095236
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,-1.9166167708542177e-20,2.028169856345342e-18)
sum a = (-6.51649702090434e-19,-1.346423281525088e-17,-2.674638703727061e-17)
sum e = 1.1963619579387055
sum de = -9.432558900623889e-18
Info: CFL hydro = 0.0026871411026583173 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026871411026583173 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5709e+04 | 13440 | 1 | 2.413e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.095069789899235 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7707690949939757, dt = 0.0026871411026583173 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.9%)
patch tree reduce : 1662.00 ns (0.5%)
gen split merge : 1072.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.4%)
LB compute : 295.78 us (93.7%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1692.00 ns (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: 1.8616071428571428
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.724955093768796e-19,1.9208093700404612e-18)
sum a = (-5.378026659016935e-17,-6.20504679564053e-18,1.5102940154331236e-17)
sum e = 1.1963620065329896
sum de = 1.259029772798792e-17
Info: CFL hydro = 0.002716897760149905 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002716897760149905 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7228e+04 | 13440 | 1 | 2.349e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.19082150679842 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.773456236096634, dt = 0.002716897760149905 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (2.0%)
patch tree reduce : 1752.00 ns (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.4%)
LB compute : 268.87 us (93.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1792.00 ns (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: 1.8720982142857145
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,0,2.0266724994931123e-18)
sum a = (8.735939241553525e-17,-2.0370042617734982e-17,7.474805406331449e-19)
sum e = 1.196362067363285
sum de = -5.033916805532307e-18
Info: CFL hydro = 0.002715423131851626 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002715423131851626 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.2446e+04 | 13440 | 1 | 2.563e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.166870252324834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.776173133856784, dt = 0.002715423131851626 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (2.1%)
patch tree reduce : 1903.00 ns (0.7%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.4%)
LB compute : 267.74 us (92.9%)
LB move op cnt : 0
LB apply : 3.68 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1493.00 ns (61.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8694940476190478
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-5.174865281306388e-19,2.0090036886368e-18)
sum a = (-7.532303909457076e-18,-8.941017236034926e-18,3.080961459148155e-17)
sum e = 1.1963620991560844
sum de = -6.938893903907228e-18
Info: CFL hydro = 0.0027154243733457325 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027154243733457325 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7956e+04 | 13440 | 1 | 2.319e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.154398135985524 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7788885569886356, dt = 0.0011114430113647877 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (2.0%)
patch tree reduce : 1663.00 ns (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1101.00 ns (0.4%)
LB compute : 259.72 us (93.1%)
LB move op cnt : 0
LB apply : 3.55 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1842.00 ns (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: 1.8697172619047622
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,5.749850312562653e-20,2.0769836897280355e-18)
sum a = (-2.8749251562813265e-18,3.188291998315991e-17,-1.0038280337348965e-17)
sum e = 1.1963612779408017
sum de = -2.8731357570865868e-18
Info: CFL hydro = 0.0027162804753673637 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027162804753673637 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.2238e+04 | 13440 | 1 | 2.573e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.551649762594835 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 348 [SPH][rank=0]
Info: time since start : 366.090364113 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 2.03 s [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1986.97 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1933.63 ms [sph::CartesianRender][rank=0]
---------------- t = 0.7800000000000004, dt = 0.0027162804753673637 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.91 us (3.2%)
patch tree reduce : 1562.00 ns (0.4%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 341.04 us (93.0%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1742.00 ns (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: 1.8704613095238096
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-2.1082784479396395e-19,2.0247259355852135e-18)
sum a = (2.5184344369024422e-17,2.5222676704441504e-17,1.9515950269223072e-17)
sum e = 1.1963621164641822
sum de = -1.3173056395698879e-17
Info: CFL hydro = 0.0027129334523933284 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027129334523933284 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1608e+04 | 13440 | 1 | 2.604e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.54879137321314 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7827162804753677, dt = 0.0027129334523933284 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (2.1%)
patch tree reduce : 1462.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1442.00 ns (0.5%)
LB compute : 269.23 us (92.9%)
LB move op cnt : 0
LB apply : 4.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1733.00 ns (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: 1.8734374999999999
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-2.779094317738616e-19,2.113219725551998e-18)
sum a = (9.42017142874848e-18,2.1197781485647648e-17,-1.2002812527474538e-17)
sum e = 1.1963621437723566
sum de = 2.5478751053409354e-18
Info: CFL hydro = 0.002718920640758932 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002718920640758932 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7326e+04 | 13440 | 1 | 2.344e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.657938005079835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.785429213927761, dt = 0.002718920640758932 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.8%)
patch tree reduce : 1633.00 ns (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1121.00 ns (0.4%)
LB compute : 290.79 us (93.9%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1693.00 ns (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: 1.8639136904761906
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,-6.133173666733497e-19,2.043143424867641e-18)
sum a = (8.998515739160552e-18,-1.3320486557436814e-17,-1.061326536860523e-17)
sum e = 1.1963621663545487
sum de = 7.860465750519907e-19
Info: CFL hydro = 0.0027109948011855393 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027109948011855393 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.3028e+04 | 13440 | 1 | 2.535e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.61910788303355 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.78814813456852, dt = 0.0027109948011855393 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.6%)
patch tree reduce : 1322.00 ns (0.4%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.4%)
LB compute : 315.49 us (94.3%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1953.00 ns (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: 1.862276785714286
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229102,2.8749251562813265e-19,2.0022655828017657e-18)
sum a = (-6.3919169307988165e-18,7.513137741748534e-18,-1.5522200072955597e-17)
sum e = 1.1963621784163443
sum de = 5.5294310796760726e-18
Info: CFL hydro = 0.0027039894862640134 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027039894862640134 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7844e+04 | 13440 | 1 | 2.809e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.742053831974935 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7908591293697055, dt = 0.0027039894862640134 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (2.0%)
patch tree reduce : 1432.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.4%)
LB compute : 276.85 us (93.6%)
LB move op cnt : 0
LB apply : 3.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1532.00 ns (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: 1.8619791666666667
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,-2.8749251562813265e-19,1.9661044148204145e-18)
sum a = (2.553891847163245e-17,-3.11258563586725e-17,2.1866201584483056e-17)
sum e = 1.196362191791708
sum de = 2.867714746224159e-17
Info: CFL hydro = 0.0027387170902881354 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027387170902881354 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7171e+04 | 13440 | 1 | 2.351e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.40794199090957 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7935631188559695, dt = 0.0027387170902881354 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (2.0%)
patch tree reduce : 1703.00 ns (0.6%)
gen split merge : 1112.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.5%)
LB compute : 262.51 us (92.9%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1792.00 ns (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: 1.8738095238095238
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.7374027031657247e-19,2.081326024599502e-18)
sum a = (-3.989437808533054e-17,1.276466769388909e-17,-6.783026540601254e-17)
sum e = 1.1963622395362095
sum de = 1.2034644114589099e-17
Info: CFL hydro = 0.0027283579614330693 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027283579614330693 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5883e+04 | 13440 | 1 | 2.405e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.99488249502758 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7963018359462577, dt = 0.0027283579614330693 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (2.0%)
patch tree reduce : 1532.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.4%)
LB compute : 276.37 us (93.3%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1993.00 ns (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: 1.8752976190476192
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-3.25824851045217e-19,1.7680041032704045e-18)
sum a = (2.3708549455466672e-17,4.454217375465202e-17,-8.023197379892112e-17)
sum e = 1.196362257782557
sum de = 3.198396408832238e-18
Info: CFL hydro = 0.002734182866595977 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002734182866595977 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.3739e+04 | 13440 | 1 | 2.501e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.27277670502838 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7990301939076908, dt = 0.0009698060923095664 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.8%)
patch tree reduce : 1733.00 ns (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.4%)
LB compute : 289.07 us (93.6%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1522.00 ns (65.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8756696428571427
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,1.724955093768796e-19,1.6741946964782038e-18)
sum a = (1.857201650957737e-17,-3.1355850371175e-17,1.522153081702784e-17)
sum e = 1.1963613370884156
sum de = -4.689174395999807e-18
Info: CFL hydro = 0.0027292889590070546 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027292889590070546 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8056e+04 | 13440 | 1 | 2.315e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.081277458675219 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 356 [SPH][rank=0]
Info: time since start : 375.18408053 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1966.70 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1964.21 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1912.25 ms [sph::CartesianRender][rank=0]
---------------- t = 0.8000000000000004, dt = 0.0027292889590070546 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.55 us (3.5%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 330.42 us (92.6%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 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: 1.8773065476190476
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,2.2999401250250614e-19,1.7493620104601425e-18)
sum a = (4.34880345306822e-17,2.5491003052361097e-17,9.973594521332635e-18)
sum e = 1.1963622808025682
sum de = -1.4203048459560108e-17
Info: CFL hydro = 0.002715536355772136 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002715536355772136 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7594e+04 | 13440 | 1 | 2.334e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.10437020319771 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8027292889590074, dt = 0.002715536355772136 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.8%)
patch tree reduce : 1692.00 ns (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.4%)
LB compute : 313.84 us (93.9%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1472.00 ns (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: 1.8774553571428572
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.8207859323115067e-19,1.777662054967287e-18)
sum a = (1.4029634762652875e-17,9.966407208441932e-18,3.5130387524276025e-17)
sum e = 1.1963623217646224
sum de = 1.485356976305141e-17
Info: CFL hydro = 0.002718889404795724 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002718889404795724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7215e+04 | 13440 | 1 | 2.349e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.61699109444878 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8054448253147796, dt = 0.002718889404795724 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 1713.00 ns (0.5%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1352.00 ns (0.4%)
LB compute : 304.87 us (89.2%)
LB move op cnt : 0
LB apply : 20.63 us (6.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1782.00 ns (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: 1.8730654761904764
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,4.6957110885928335e-19,1.894231285913381e-18)
sum a = (-4.7934585439063984e-17,-8.160954210297259e-17,1.9971146752300948e-17)
sum e = 1.1963623693267949
sum de = -6.0173220572945496e-18
Info: CFL hydro = 0.0027301802443039313 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027301802443039313 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.2253e+04 | 13440 | 1 | 2.572e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.0544487804405 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8081637147195753, dt = 0.0027301802443039313 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (2.1%)
patch tree reduce : 1713.00 ns (0.6%)
gen split merge : 1011.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.4%)
LB compute : 263.56 us (93.1%)
LB move op cnt : 0
LB apply : 3.58 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1502.00 ns (64.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8582589285714288
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,-6.708158697989762e-20,1.9374300311002127e-18)
sum a = (1.3588812905356403e-17,1.4489622787657885e-17,5.739249026048865e-17)
sum e = 1.1963624257617573
sum de = 2.108773225484306e-17
Info: CFL hydro = 0.00271263605208725 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00271263605208725 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.3692e+04 | 13440 | 1 | 2.503e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.26478734992748 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8108938949638792, dt = 0.00271263605208725 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (2.0%)
patch tree reduce : 1673.00 ns (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.4%)
LB compute : 303.63 us (93.7%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1392.00 ns (63.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8581845238095234
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.162417671909459e-19,2.134631928538885e-18)
sum a = (-1.910866920541655e-17,-1.3186323383477017e-17,-1.3347438980776951e-17)
sum e = 1.196362454676831
sum de = 5.3939058081153846e-18
Info: CFL hydro = 0.0026991825690153093 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026991825690153093 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1008e+04 | 13440 | 1 | 2.635e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.06238309620683 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8136065310159665, dt = 0.0026991825690153093 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.10 us (7.8%)
patch tree reduce : 1712.00 ns (0.6%)
gen split merge : 1102.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.4%)
LB compute : 270.79 us (87.7%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1592.00 ns (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: 1.8648809523809522
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.354079348994881e-19,2.019934393658078e-18)
sum a = (-8.816437145929401e-18,-4.3085545008802815e-17,2.4852530090570285e-17)
sum e = 1.196362478112003
sum de = -9.703609443745265e-18
Info: CFL hydro = 0.0027373223453135034 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027373223453135034 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7511e+04 | 13440 | 1 | 2.337e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.58023139497843 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8163057135849818, dt = 0.0027373223453135034 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (2.1%)
patch tree reduce : 1592.00 ns (0.5%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.4%)
LB compute : 272.86 us (93.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1633.00 ns (58.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8754464285714285
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.2999401250250614e-19,2.134332457168439e-18)
sum a = (-1.5984583868924174e-17,-7.819796425085208e-18,-3.919481296396875e-18)
sum e = 1.196362536782279
sum de = -7.535205098774256e-18
Info: CFL hydro = 0.0027179351556986713 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027179351556986713 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0546e+04 | 13440 | 1 | 2.659e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.06081203748541 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8190430359302954, dt = 0.0009569640697050241 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.9%)
patch tree reduce : 1842.00 ns (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 305.89 us (93.7%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1702.00 ns (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: 1.8763392857142855
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.1082784479396395e-19,2.0908342406111615e-18)
sum a = (1.2477175178260957e-17,2.2922736579416443e-17,4.426666009384173e-17)
sum e = 1.1963614667583926
sum de = 1.1600963245594897e-17
Info: CFL hydro = 0.0027134960748494605 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027134960748494605 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0614e+04 | 13440 | 1 | 2.655e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.973894156517806 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 364 [SPH][rank=0]
Info: time since start : 384.20643949400005 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1964.27 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1954.94 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1911.86 ms [sph::CartesianRender][rank=0]
---------------- t = 0.8200000000000004, dt = 0.0027134960748494605 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.50 us (3.5%)
patch tree reduce : 1633.00 ns (0.5%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 330.32 us (92.6%)
LB move op cnt : 0
LB apply : 3.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1692.00 ns (60.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8764880952380953
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,-1.3416317395979523e-19,2.2287408067015316e-18)
sum a = (4.415885040048118e-17,3.3042473129526713e-17,-3.682779125196379e-17)
sum e = 1.1963625175240316
sum de = -1.5178830414797062e-18
Info: CFL hydro = 0.002698201696714125 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002698201696714125 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7459e+04 | 13440 | 1 | 2.339e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.76279893574377 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8227134960748499, dt = 0.002698201696714125 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.9%)
patch tree reduce : 1682.00 ns (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1412.00 ns (0.4%)
LB compute : 303.73 us (93.7%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1522.00 ns (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: 1.8774553571428572
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.8332335417084355e-20,2.0291431382992914e-18)
sum a = (-4.6094633339043936e-18,6.301835942568668e-17,-3.554365801549147e-17)
sum e = 1.1963625164913387
sum de = 1.4799359654427136e-17
Info: CFL hydro = 0.0027236456479483627 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027236456479483627 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.2191e+04 | 13440 | 1 | 2.575e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.72018688057196 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.825411697771564, dt = 0.0027236456479483627 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.9%)
patch tree reduce : 1742.00 ns (0.5%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.4%)
LB compute : 303.27 us (93.6%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1433.00 ns (62.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8761160714285718
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,3.8332335417084355e-20,1.928969964885114e-18)
sum a = (3.2553735852958885e-17,-2.74459521586324e-17,4.430738820022238e-17)
sum e = 1.1963625393409247
sum de = 8.72782748850831e-18
Info: CFL hydro = 0.0027203654043325685 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027203654043325685 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7617e+04 | 13440 | 1 | 2.333e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.03430930409216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8281353434195123, dt = 0.0027203654043325685 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.7%)
patch tree reduce : 1633.00 ns (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 310.29 us (94.2%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1543.00 ns (65.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8639880952380954
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,-1.9166167708542177e-19,2.1570174134797212e-18)
sum a = (6.300877634183241e-18,-1.7556209621024633e-17,-8.739772475095234e-18)
sum e = 1.1963625376516531
sum de = -4.0115480381963664e-18
Info: CFL hydro = 0.002721376845198544 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002721376845198544 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.2073e+04 | 13440 | 1 | 2.581e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.94369693045669 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8308557088238449, dt = 0.002721376845198544 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (2.0%)
patch tree reduce : 1532.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.4%)
LB compute : 269.80 us (93.3%)
LB move op cnt : 0
LB apply : 3.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1703.00 ns (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: 1.8629464285714286
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-5.270696119849099e-19,2.0733151654400723e-18)
sum a = (-8.40915608212288e-18,1.2956329370974512e-17,6.420666182361629e-18)
sum e = 1.1963625404290816
sum de = 1.0842021724855044e-19
Info: CFL hydro = 0.0027261935811478994 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027261935811478994 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7662e+04 | 13440 | 1 | 2.331e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.03220326591776 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8335770856690434, dt = 0.0027261935811478994 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (2.1%)
patch tree reduce : 1562.00 ns (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.4%)
LB compute : 271.39 us (93.2%)
LB move op cnt : 0
LB apply : 3.73 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1452.00 ns (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: 1.864732142857143
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,2.20410928648235e-19,2.1105244832179842e-18)
sum a = (-2.609952887710731e-17,-5.1365329458893034e-17,-9.34063183275803e-17)
sum e = 1.1963625462392906
sum de = -1.463672932855431e-17
Info: CFL hydro = 0.002731310452708893 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002731310452708893 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7413e+04 | 13440 | 1 | 2.341e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.924368250547225 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8363032792501913, dt = 0.002731310452708893 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (2.0%)
patch tree reduce : 1523.00 ns (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.4%)
LB compute : 265.06 us (93.2%)
LB move op cnt : 0
LB apply : 3.67 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 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: 1.874107142857143
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,-4.791541927135544e-19,1.725554036509688e-18)
sum a = (-1.1806359308461982e-17,-2.0009479087718033e-17,-2.882591623364744e-17)
sum e = 1.1963625492936034
sum de = 1.870248747537495e-17
Info: CFL hydro = 0.0027115369789115274 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027115369789115274 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7568e+04 | 13440 | 1 | 2.335e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.116792752259876 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8390345897029002, dt = 0.0009654102971001777 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.9%)
patch tree reduce : 1783.00 ns (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.4%)
LB compute : 269.89 us (93.2%)
LB move op cnt : 0
LB apply : 3.69 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1712.00 ns (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: 1.8721726190476191
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-4.120726057336568e-19,1.7765764712494202e-18)
sum a = (-1.8869092109059772e-17,4.0785604883777753e-17,5.912762738085262e-18)
sum e = 1.19636153363636
sum de = -1.566672139241554e-17
Info: CFL hydro = 0.0026854321316563904 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026854321316563904 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3799e+04 | 13440 | 1 | 3.069e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.326113564438106 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 372 [SPH][rank=0]
Info: time since start : 393.34980715800003 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 2.03 s [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 2.02 s [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1969.24 ms [sph::CartesianRender][rank=0]
---------------- t = 0.8400000000000004, dt = 0.0026854321316563904 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.11 us (3.3%)
patch tree reduce : 1823.00 ns (0.5%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 336.51 us (92.7%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1802.00 ns (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: 1.8720238095238098
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-2.2999401250250614e-19,1.809555755919783e-18)
sum a = (2.4628525505476698e-17,2.4149371312763143e-17,-4.833707496094337e-17)
sum e = 1.1963624900417378
sum de = 1.235990476633475e-17
Info: CFL hydro = 0.002691116873252197 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002691116873252197 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4954e+04 | 13440 | 1 | 2.990e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.33587105091148 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8426854321316568, dt = 0.002691116873252197 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.7%)
patch tree reduce : 1503.00 ns (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1352.00 ns (0.4%)
LB compute : 295.05 us (93.8%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1553.00 ns (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: 1.8734375000000003
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.6832634791959046e-19,1.6050168099051843e-18)
sum a = (1.751787728560755e-17,3.403911385037091e-17,6.454206975851578e-17)
sum e = 1.1963624827733093
sum de = 2.8189256484623115e-18
Info: CFL hydro = 0.002692094333835838 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002692094333835838 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7231e+04 | 13440 | 1 | 2.348e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.254197934424056 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.845376549004909, dt = 0.002692094333835838 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.6%)
patch tree reduce : 1693.00 ns (0.5%)
gen split merge : 1111.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1292.00 ns (0.4%)
LB compute : 306.49 us (94.1%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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: 1.8767113095238093
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,5.174865281306388e-19,1.9390771236376655e-18)
sum a = (5.481523964643063e-18,-8.870102415513319e-17,-3.34449626514061e-17)
sum e = 1.196362461686318
sum de = -1.7564075194265172e-17
Info: CFL hydro = 0.002682865210907082 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002682865210907082 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7631e+04 | 13440 | 1 | 2.332e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.557758976244216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8480686433387449, dt = 0.002682865210907082 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.9%)
patch tree reduce : 1903.00 ns (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.4%)
LB compute : 292.25 us (93.6%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1342.00 ns (62.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8662202380952382
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,2.874925156281327e-20,1.7090831111351594e-18)
sum a = (1.417338102046694e-17,7.05314971674352e-18,3.757527179259694e-17)
sum e = 1.1963624314202592
sum de = -3.2255014631443757e-18
Info: CFL hydro = 0.0026945524823044306 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026945524823044306 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7195e+04 | 13440 | 1 | 2.350e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.10207122139529 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.850751508549652, dt = 0.0026945524823044306 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.9%)
patch tree reduce : 1422.00 ns (0.4%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1061.00 ns (0.3%)
LB compute : 299.44 us (93.8%)
LB move op cnt : 0
LB apply : 3.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1753.00 ns (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: 1.866592261904762
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-6.708158697989762e-20,1.903739501925041e-18)
sum a = (3.459493271391863e-17,7.175813190078191e-17,3.5361579422260315e-18)
sum e = 1.1963624193285318
sum de = 6.640738306473715e-18
Info: CFL hydro = 0.0027088784639396003 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027088784639396003 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9606e+04 | 13440 | 1 | 2.709e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.80323370217976 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8534460610319564, dt = 0.0027088784639396003 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (2.0%)
patch tree reduce : 1653.00 ns (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1372.00 ns (0.5%)
LB compute : 278.61 us (93.2%)
LB move op cnt : 0
LB apply : 3.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1472.00 ns (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: 1.8665178571428571
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,2.6832634791959046e-19,1.8687013515828622e-18)
sum a = (-9.094346577703264e-18,-1.3339652725145356e-17,4.7493763581767514e-17)
sum e = 1.1963624144128404
sum de = 3.290553593493506e-17
Info: CFL hydro = 0.002718096301613522 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002718096301613522 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9118e+04 | 13440 | 1 | 2.736e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.639863791980545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.856154939495896, dt = 0.002718096301613522 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (2.0%)
patch tree reduce : 1703.00 ns (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.4%)
LB compute : 261.09 us (93.0%)
LB move op cnt : 0
LB apply : 3.75 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1472.00 ns (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: 1.8745535714285715
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.4374625781406633e-19,2.0650048349101966e-18)
sum a = (5.55531371032095e-17,-1.4489622787657885e-17,6.7944064526782016e-18)
sum e = 1.1963624128773882
sum de = 2.0316932272841648e-17
Info: CFL hydro = 0.0027085582255004016 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027085582255004016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8725e+04 | 13440 | 1 | 2.758e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.47494454665422 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8588730357975096, dt = 0.00112696420249081 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.9%)
patch tree reduce : 1773.00 ns (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 283.17 us (93.5%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1542.00 ns (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: 1.8783482142857142
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,6.324835343818918e-19,2.0070571247289013e-18)
sum a = (-8.459467272357803e-18,9.583083854271088e-18,2.285086345050941e-17)
sum e = 1.196361612633079
sum de = -4.8043708768263915e-18
Info: CFL hydro = 0.0027010288168703204 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027010288168703204 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.2782e+04 | 13440 | 1 | 2.546e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.933174339641456 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 380 [SPH][rank=0]
Info: time since start : 402.62043021000005 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 2.01 s [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 2.00 s [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1917.21 ms [sph::CartesianRender][rank=0]
---------------- t = 0.8600000000000004, dt = 0.0027010288168703204 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.52 us (3.6%)
patch tree reduce : 1763.00 ns (0.5%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 322.54 us (92.4%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1913.00 ns (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: 1.8808035714285714
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.1082784479396395e-19,2.0801281391177184e-18)
sum a = (8.888310274836434e-18,-1.6482904229346272e-17,5.60370828378502e-17)
sum e = 1.1963623871571307
sum de = 2.256495771485456e-17
Info: CFL hydro = 0.00268243474850154 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00268243474850154 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7359e+04 | 13440 | 1 | 2.343e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.49864282514277 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8627010288168707, dt = 0.00268243474850154 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.8%)
patch tree reduce : 1693.00 ns (0.5%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.4%)
LB compute : 304.28 us (93.9%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1523.00 ns (62.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8810267857142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.9707559948240377e-19,2.272987701684924e-18)
sum a = (3.162417671909459e-18,-5.9798443250651594e-18,3.5615531144398503e-17)
sum e = 1.1963623857829297
sum de = -1.3240819031479223e-17
Info: CFL hydro = 0.002667914086971588 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002667914086971588 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.2013e+04 | 13440 | 1 | 2.584e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.37162998046037 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8653834635653722, dt = 0.002667914086971588 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (2.3%)
patch tree reduce : 1663.00 ns (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.5%)
LB compute : 262.95 us (93.1%)
LB move op cnt : 0
LB apply : 3.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1472.00 ns (65.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8796875000000002
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,3.354079348994881e-19,2.3409677027761593e-18)
sum a = (1.9932814416883866e-18,2.606598808361736e-18,2.3447410420437787e-17)
sum e = 1.1963623828972874
sum de = 4.797594613248357e-18
Info: CFL hydro = 0.002723357500181851 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002723357500181851 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5974e+04 | 13440 | 1 | 2.401e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.00038279584024 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8680513776523437, dt = 0.002723357500181851 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.7%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.4%)
LB compute : 335.44 us (93.9%)
LB move op cnt : 0
LB apply : 4.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1853.00 ns (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: 1.8654761904761907
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,9.583083854271089e-21,2.379000566822798e-18)
sum a = (1.1403869786582596e-17,1.786286830436131e-17,-4.410614343928269e-18)
sum e = 1.1963624300203812
sum de = 7.26415455565288e-18
Info: CFL hydro = 0.002671770368655716 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002671770368655716 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6651e+04 | 13440 | 1 | 2.372e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.32539533931599 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8707747351525256, dt = 0.002671770368655716 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.8%)
patch tree reduce : 1622.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 297.81 us (94.1%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1953.00 ns (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: 1.8607886904761908
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-1.1499700625125307e-19,2.343064002369281e-18)
sum a = (-2.834676204093388e-17,-1.786286830436131e-17,-3.6911643235688665e-17)
sum e = 1.1963624082970952
sum de = -2.4421653935235987e-17
Info: CFL hydro = 0.0026966269685835026 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026966269685835026 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6711e+04 | 13440 | 1 | 2.370e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.58548893668537 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8734465055211813, dt = 0.0026966269685835026 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.8%)
patch tree reduce : 1663.00 ns (0.5%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.4%)
LB compute : 307.13 us (94.1%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1703.00 ns (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: 1.8606398809523808
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,3.8332335417084355e-20,2.1999166872961068e-18)
sum a = (-1.12697066126228e-17,2.3996041971094807e-17,3.646363406550149e-18)
sum e = 1.1963624412000138
sum de = -1.5802246663976227e-17
Info: CFL hydro = 0.0026991586947248073 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026991586947248073 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6872e+04 | 13440 | 1 | 2.363e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.07890815825885 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8761431324897648, dt = 0.0026991586947248073 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.8%)
patch tree reduce : 1663.00 ns (0.5%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 307.94 us (93.9%)
LB move op cnt : 0
LB apply : 4.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1663.00 ns (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: 1.8645089285714285
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.9645321901255733e-19,2.262206732348869e-18)
sum a = (-6.4398323500701715e-18,2.2386083883577264e-17,6.800755245731656e-17)
sum e = 1.196362466892358
sum de = -7.94178091345632e-18
Info: CFL hydro = 0.0026842975940963225 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026842975940963225 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6668e+04 | 13440 | 1 | 2.372e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.97061309694894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8788422911844896, dt = 0.001157708815510805 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (2.1%)
patch tree reduce : 1773.00 ns (0.6%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.4%)
LB compute : 280.92 us (93.2%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1653.00 ns (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: 1.8727678571428572
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.0541392239698198e-19,2.4353011844666405e-18)
sum a = (7.800630257376665e-18,-3.986562883376773e-18,6.230681544950705e-17)
sum e = 1.1963617243220466
sum de = -5.421010862427522e-18
Info: CFL hydro = 0.0026819984042483263 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026819984042483263 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7887e+04 | 13440 | 1 | 2.322e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.950747235270146 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 388 [SPH][rank=0]
Info: time since start : 411.640676754 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1989.78 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1976.32 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1928.09 ms [sph::CartesianRender][rank=0]
---------------- t = 0.8800000000000004, dt = 0.0026819984042483263 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.16 us (3.4%)
patch tree reduce : 1693.00 ns (0.5%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 327.43 us (92.7%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1983.00 ns (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: 1.8790178571428569
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.1499700625125307e-19,2.600010438211925e-18)
sum a = (3.794901206291351e-17,2.1772766516903912e-17,-1.7156115870108816e-17)
sum e = 1.1963624777858362
sum de = -8.40256683676266e-18
Info: CFL hydro = 0.002673156069484836 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002673156069484836 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2351e+04 | 13440 | 1 | 3.174e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.42437572262811 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8826819984042488, dt = 0.002673156069484836 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.9%)
patch tree reduce : 1802.00 ns (0.6%)
gen split merge : 1242.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1141.00 ns (0.4%)
LB compute : 302.32 us (93.4%)
LB move op cnt : 0
LB apply : 4.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1622.00 ns (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: 1.8791666666666664
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-4.887372765678255e-19,2.438894840911992e-18)
sum a = (-1.698122458976837e-17,-5.9798443250651594e-18,-4.3674904665840486e-18)
sum e = 1.1963625244725855
sum de = -1.713039432527097e-17
Info: CFL hydro = 0.0027063739520596162 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027063739520596162 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7179e+04 | 13440 | 1 | 2.351e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.9411810904335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8853551544737336, dt = 0.0027063739520596162 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.9%)
patch tree reduce : 1753.00 ns (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.4%)
LB compute : 297.23 us (93.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1542.00 ns (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: 1.879613095238095
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,6.51649702090434e-19,2.451772109841169e-18)
sum a = (-3.737402703165724e-17,-8.35644912092439e-18,-5.602510398303235e-17)
sum e = 1.1963625941467506
sum de = 1.0462550964485118e-17
Info: CFL hydro = 0.002688178227733337 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002688178227733337 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.6877e+04 | 13440 | 1 | 2.363e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.23167364575927 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8880615284257932, dt = 0.002688178227733337 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.8%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1352.00 ns (0.4%)
LB compute : 303.55 us (94.0%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1642.00 ns (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: 1.8777529761904759
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-4.8394573464069e-19,2.2310617098224877e-18)
sum a = (-3.162417671909459e-18,-6.278836541318417e-17,-2.786281630629319e-17)
sum e = 1.1963626303009778
sum de = -3.4193026014761596e-17
Info: CFL hydro = 0.0027047789226962997 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027047789226962997 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.4610e+04 | 13440 | 1 | 2.461e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.32192965101619 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8907497066535266, dt = 0.0027047789226962997 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.9%)
patch tree reduce : 1703.00 ns (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1101.00 ns (0.4%)
LB compute : 270.35 us (88.4%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1803.00 ns (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: 1.8659970238095238
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.8687013515828623e-19,2.188087568163491e-18)
sum a = (-3.8332335417084355e-20,4.983203604220966e-18,3.1945210028212673e-17)
sum e = 1.196362689395254
sum de = -9.147955830346444e-19
Info: CFL hydro = 0.0026954550150664293 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026954550150664293 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5950e+04 | 13440 | 1 | 2.402e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.535333273639694 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8934544855762229, dt = 0.0026954550150664293 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (2.0%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 1102.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.4%)
LB compute : 281.99 us (93.3%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1512.00 ns (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: 1.8658482142857142
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.0541392239698198e-19,2.3527968219087752e-18)
sum a = (1.9319497050210515e-17,7.359808400080196e-18,-1.8332439413220593e-17)
sum e = 1.1963627245958568
sum de = 5.251604272976662e-18
Info: CFL hydro = 0.0026863483021003155 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026863483021003155 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.9873e+04 | 13440 | 1 | 2.695e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.007830415343385 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8961499405912893, dt = 0.0026863483021003155 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.1%)
patch tree reduce : 1783.00 ns (0.6%)
gen split merge : 1021.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1101.00 ns (0.3%)
LB compute : 301.00 us (93.6%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1442.00 ns (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: 1.866220238095238
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,4.6957110885928335e-19,2.240944265047205e-18)
sum a = (-3.998062584001898e-17,-6.056508995899328e-17,2.0392802441888877e-17)
sum e = 1.196362751483726
sum de = -8.754932542820448e-18
Info: CFL hydro = 0.0026792714529594534 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026792714529594534 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7966e+04 | 13440 | 1 | 2.802e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.51462029092091 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8988362888933896, dt = 0.001163711106610843 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.8%)
patch tree reduce : 1843.00 ns (0.6%)
gen split merge : 1072.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1051.00 ns (0.3%)
LB compute : 287.75 us (93.3%)
LB move op cnt : 0
LB apply : 4.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1592.00 ns (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: 1.8662946428571425
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-6.51649702090434e-19,2.3156623719734747e-18)
sum a = (-3.0435874321164975e-17,-3.82173384108331e-17,-2.015082957456853e-17)
sum e = 1.1963618940822476
sum de = -1.111307226797642e-18
Info: CFL hydro = 0.00267742896808829 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00267742896808829 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8123e+04 | 13440 | 1 | 2.312e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.11727271109458 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 396 [SPH][rank=0]
Info: time since start : 420.79053505400003 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1984.90 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1996.58 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1949.18 ms [sph::CartesianRender][rank=0]
---------------- t = 0.9000000000000005, dt = 0.00267742896808829 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.07 us (3.2%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 610.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 379.34 us (93.3%)
LB move op cnt : 0
LB apply : 4.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 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: 1.875372023809524
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,4.791541927135544e-21,2.2631051464602067e-18)
sum a = (7.275477262162611e-17,1.3607979073064945e-17,-3.4990234922907314e-17)
sum e = 1.1963627567370605
sum de = -8.131516293641283e-20
Info: CFL hydro = 0.002672491796199398 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002672491796199398 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3265e+04 | 13440 | 1 | 3.106e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.02824470596779 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9026774289680888, dt = 0.002672491796199398 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.8%)
patch tree reduce : 1863.00 ns (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1151.00 ns (0.3%)
LB compute : 317.32 us (93.9%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1652.00 ns (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: 1.8764136904761906
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,5.174865281306388e-19,2.1349313999093308e-18)
sum a = (-1.460461979390914e-17,-9.813077866773595e-18,-1.472201257112396e-17)
sum e = 1.1963627775958634
sum de = -2.268693045925918e-17
Info: CFL hydro = 0.0026900124241959456 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026900124241959456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.2340e+04 | 13440 | 1 | 2.568e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.46705433569368 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9053499207642882, dt = 0.0026900124241959456 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.9%)
patch tree reduce : 1873.00 ns (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1081.00 ns (0.3%)
LB compute : 291.15 us (93.5%)
LB move op cnt : 0
LB apply : 3.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1532.00 ns (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: 1.876190476190476
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-3.8332335417084353e-19,2.1144176110337817e-18)
sum a = (3.82173384108331e-17,-4.944871268803882e-17,-2.79586471448359e-18)
sum e = 1.1963628010518432
sum de = -1.2549640146519714e-17
Info: CFL hydro = 0.002661362262510422 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002661362262510422 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7683e+04 | 13440 | 1 | 2.330e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.56293175251088 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9080399331884842, dt = 0.002661362262510422 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.0%)
patch tree reduce : 1593.00 ns (0.5%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.4%)
LB compute : 301.41 us (93.5%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1552.00 ns (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: 1.8752232142857141
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,5.318611539120454e-19,2.135829814020669e-18)
sum a = (-3.8753991106672285e-17,-9.008098823014823e-18,-2.3913387872851717e-17)
sum e = 1.1963627866360302
sum de = -6.776263578034403e-19
Info: CFL hydro = 0.0026376198841102007 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026376198841102007 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7404e+04 | 13440 | 1 | 2.341e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.92133798010724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9107012954509947, dt = 0.0026376198841102007 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (1.9%)
patch tree reduce : 1833.00 ns (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 310.81 us (93.8%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1542.00 ns (65.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.867708333333333
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,-3.545741026080303e-19,2.050330737758344e-18)
sum a = (2.9515898271154955e-17,-3.449910187537592e-19,-6.289617510654472e-17)
sum e = 1.1963627761310685
sum de = 1.0245710529988017e-17
Info: CFL hydro = 0.0026185861005046333 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026185861005046333 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1873e+04 | 13440 | 1 | 2.591e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.64849257879071 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9133389153351048, dt = 0.0026185861005046333 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (2.2%)
patch tree reduce : 1993.00 ns (0.7%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1221.00 ns (0.4%)
LB compute : 257.43 us (92.7%)
LB move op cnt : 0
LB apply : 3.50 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1783.00 ns (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: 1.8680803571428566
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-1.082888475532633e-18,1.830369016165778e-18)
sum a = (2.2501080889828518e-17,-5.24386348505714e-17,3.3271269256547436e-18)
sum e = 1.1963627710866263
sum de = -2.2659825404947043e-17
Info: CFL hydro = 0.0026881354068596123 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026881354068596123 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8186e+04 | 13440 | 1 | 2.310e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.811965430193354 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9159575014356094, dt = 0.0026881354068596123 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.7%)
patch tree reduce : 1682.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1392.00 ns (0.4%)
LB compute : 316.70 us (94.1%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1783.00 ns (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: 1.8683035714285712
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.8687013515828623e-19,1.9050871230920477e-18)
sum a = (5.519856300060147e-18,-4.408218572964701e-17,-4.688164410057595e-17)
sum e = 1.196362836724194
sum de = 1.089623183347932e-17
Info: CFL hydro = 0.0026834724350653636 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026834724350653636 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.2028e+04 | 13440 | 1 | 2.583e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.462211604150035 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.918645636842469, dt = 0.0013543631575314574 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.6%)
patch tree reduce : 1272.00 ns (0.4%)
gen split merge : 1041.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1523.00 ns (0.5%)
LB compute : 315.16 us (94.4%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1643.00 ns (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: 1.8683035714285712
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.791541927135544e-21,1.7917372093782477e-18)
sum a = (-1.0733053916783619e-18,3.3732455167034233e-18,6.110413842579603e-18)
sum e = 1.1963620590215045
sum de = -2.9815559743351372e-18
Info: CFL hydro = 0.0026734000504259636 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026734000504259636 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7072e+04 | 13440 | 1 | 2.355e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.704440844729575 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 404 [SPH][rank=0]
Info: time since start : 430.086672812 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1997.55 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1999.86 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1951.55 ms [sph::CartesianRender][rank=0]
---------------- t = 0.9200000000000005, dt = 0.0026734000504259636 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.27 us (3.5%)
patch tree reduce : 1723.00 ns (0.5%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 320.18 us (92.4%)
LB move op cnt : 0
LB apply : 4.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1653.00 ns (63.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8751488095238091
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-6.037342828190786e-19,1.8430965494097316e-18)
sum a = (5.803515582146571e-17,-1.8859509025205503e-17,9.029660761686934e-18)
sum e = 1.1963628289403838
sum de = -1.1438332919722072e-17
Info: CFL hydro = 0.0026820437151953724 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026820437151953724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.3523e+04 | 13440 | 1 | 2.511e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.32689631518895 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9226734000504264, dt = 0.0026820437151953724 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (2.0%)
patch tree reduce : 1692.00 ns (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 272.60 us (93.3%)
LB move op cnt : 0
LB apply : 3.81 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1743.00 ns (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: 1.8805059523809522
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,4.31238773442199e-20,1.8728939507691058e-18)
sum a = (-4.1245592908782763e-17,4.808791478073232e-17,-6.247212364599323e-17)
sum e = 1.196362857543049
sum de = 5.421010862427522e-18
Info: CFL hydro = 0.0026714684851302023 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026714684851302023 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7729e+04 | 13440 | 1 | 2.328e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.472576215025654 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9253554437656218, dt = 0.0026714684851302023 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.9%)
patch tree reduce : 1442.00 ns (0.5%)
gen split merge : 1041.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.4%)
LB compute : 289.95 us (93.5%)
LB move op cnt : 0
LB apply : 3.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1683.00 ns (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: 1.8798363095238089
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-7.810213341230937e-19,1.6000755322928259e-18)
sum a = (-2.315273059191895e-17,-4.038311536189837e-17,-2.856717296958212e-17)
sum e = 1.1963628628109473
sum de = 1.4474099002681484e-17
Info: CFL hydro = 0.002664359132673927 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002664359132673927 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7592e+04 | 13440 | 1 | 2.334e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.211295511424574 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9280269122507521, dt = 0.002664359132673927 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.8%)
patch tree reduce : 1512.00 ns (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1402.00 ns (0.5%)
LB compute : 269.52 us (88.3%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1682.00 ns (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: 1.87641369047619
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.629124255226085e-19,1.5851019637705273e-18)
sum a = (-3.0512538991999144e-17,-1.2228014998049908e-17,-1.0771386252200704e-17)
sum e = 1.1963628727276083
sum de = -2.1141942363467336e-17
Info: CFL hydro = 0.0026527935255396505 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026527935255396505 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7305e+04 | 13440 | 1 | 2.345e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.896947544711324 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.930691271383426, dt = 0.0026527935255396505 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (2.0%)
patch tree reduce : 1692.00 ns (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.4%)
LB compute : 272.39 us (93.5%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1693.00 ns (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: 1.863392857142857
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-8.672690888115335e-19,1.556801919263383e-18)
sum a = (3.216082941493377e-17,1.7192052434562332e-17,3.153792896440615e-17)
sum e = 1.1963628846262488
sum de = -8.72782748850831e-18
Info: CFL hydro = 0.002646290398203003 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002646290398203003 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7005e+04 | 13440 | 1 | 2.358e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.50604968657491 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9333440649089656, dt = 0.002646290398203003 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (2.0%)
patch tree reduce : 1733.00 ns (0.6%)
gen split merge : 1001.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.4%)
LB compute : 284.60 us (93.1%)
LB move op cnt : 0
LB apply : 3.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1903.00 ns (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: 1.8625744047619046
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-4.024895218793857e-19,1.7075857542829297e-18)
sum a = (-1.092471559386904e-17,-2.298023508254207e-17,-1.2759876151961954e-17)
sum e = 1.1963629095508999
sum de = 3.480288973678469e-17
Info: CFL hydro = 0.0026445962409340456 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026445962409340456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7921e+04 | 13440 | 1 | 2.320e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.055744974935024 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9359903553071686, dt = 0.0026445962409340456 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.9%)
patch tree reduce : 1423.00 ns (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.4%)
LB compute : 274.99 us (93.4%)
LB move op cnt : 0
LB apply : 3.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1692.00 ns (60.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.862425595238095
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-3.78531812243708e-19,1.597080818588366e-18)
sum a = (-1.5907919198090008e-17,2.972672611594892e-17,-1.669852361606737e-17)
sum e = 1.1963629506617708
sum de = -2.6020852139652106e-17
Info: CFL hydro = 0.0026473587349010834 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026473587349010834 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7436e+04 | 13440 | 1 | 2.340e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.68612626815613 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9386349515481026, dt = 0.0013650484518978878 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (2.0%)
patch tree reduce : 1763.00 ns (0.6%)
gen split merge : 1011.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1231.00 ns (0.4%)
LB compute : 290.22 us (93.4%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1903.00 ns (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: 1.862202380952381
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,1.4374625781406633e-19,1.5860003778818652e-18)
sum a = (-4.906538933386797e-17,6.560579206633988e-17,3.0263378811788097e-17)
sum e = 1.1963622045699867
sum de = -1.951563910473908e-18
Info: CFL hydro = 0.0027040786173096144 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027040786173096144 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8234e+04 | 13440 | 1 | 2.308e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.29247442484985 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 412 [SPH][rank=0]
Info: time since start : 439.094928598 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1994.85 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 2.00 s [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1948.97 ms [sph::CartesianRender][rank=0]
---------------- t = 0.9400000000000005, dt = 0.0027040786173096144 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.24 us (3.6%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.4%)
LB compute : 314.06 us (92.4%)
LB move op cnt : 0
LB apply : 4.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1673.00 ns (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: 1.865029761904762
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-8.62477546884398e-20,1.6878206438334955e-18)
sum a = (8.37561528863293e-18,4.164808243066215e-17,-3.0342439253585833e-18)
sum e = 1.1963630590058265
sum de = -3.0140820395097023e-17
Info: CFL hydro = 0.002693868024892852 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002693868024892852 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0807e+04 | 13440 | 1 | 2.645e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.7997047940603 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9427040786173101, dt = 0.002693868024892852 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (2.0%)
patch tree reduce : 1663.00 ns (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.4%)
LB compute : 277.56 us (93.2%)
LB move op cnt : 0
LB apply : 3.73 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1453.00 ns (62.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8765625
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,-4.504049411507412e-19,1.649488308416411e-18)
sum a = (1.4585453626200597e-17,2.3401890772129998e-17,-1.748673226308117e-17)
sum e = 1.196363142606634
sum de = -2.168404344971009e-18
Info: CFL hydro = 0.0026969341399963637 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026969341399963637 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8166e+04 | 13440 | 1 | 2.311e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.971218287294285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9453979466422029, dt = 0.0026969341399963637 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.8%)
patch tree reduce : 1773.00 ns (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 302.76 us (94.0%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1723.00 ns (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: 1.8811011904761903
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-5.510273216205876e-19,1.5800109504729457e-18)
sum a = (3.388578450870257e-17,-2.5567667723195266e-17,2.664816042776433e-17)
sum e = 1.1963632247721616
sum de = -1.8323016715005025e-17
Info: CFL hydro = 0.0027237860091620567 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027237860091620567 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7760e+04 | 13440 | 1 | 2.327e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.725242367735355 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9480948807821993, dt = 0.0027237860091620567 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 1563.00 ns (0.5%)
gen split merge : 821.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 296.21 us (94.0%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1993.00 ns (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: 1.8779761904761902
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,-5.845681151105364e-19,1.7114788820987272e-18)
sum a = (8.394781456341473e-18,2.085279046689389e-17,-3.6439676355865814e-17)
sum e = 1.1963633276441827
sum de = 8.673617379884035e-19
Info: CFL hydro = 0.0027023577248523048 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027023577248523048 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.2672e+04 | 13440 | 1 | 2.552e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.4285961856042 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9508186667913613, dt = 0.0027023577248523048 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (2.0%)
patch tree reduce : 1573.00 ns (0.5%)
gen split merge : 1091.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1211.00 ns (0.4%)
LB compute : 295.08 us (93.6%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1553.00 ns (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: 1.8695684523809522
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-4.4082185729647e-19,1.5285018747562386e-18)
sum a = (-1.2036353320964487e-17,1.5984583868924174e-17,-4.2426707993821677e-17)
sum e = 1.1963633767534323
sum de = 2.873135757086587e-17
Info: CFL hydro = 0.0026839824458098393 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026839824458098393 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0340e+04 | 13440 | 1 | 2.670e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.438040326019824 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9535210245162136, dt = 0.0026839824458098393 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.8%)
patch tree reduce : 1592.00 ns (0.5%)
gen split merge : 1011.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 299.27 us (94.1%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1923.00 ns (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: 1.8676339285714283
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.4436863828391274e-19,1.4021249564280386e-18)
sum a = (-3.014838180553684e-17,5.769016480271195e-18,3.1878128441232777e-17)
sum e = 1.196363413466048
sum de = -7.047314121155779e-18
Info: CFL hydro = 0.002726341128091294 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002726341128091294 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5723e+04 | 13440 | 1 | 2.412e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.06070292986156 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9562050069620234, dt = 0.002726341128091294 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.9%)
patch tree reduce : 1623.00 ns (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.4%)
LB compute : 300.08 us (93.7%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1492.00 ns (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: 1.866443452380952
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,7.187312890703316e-20,1.5749199371753643e-18)
sum a = (3.6760709664983895e-17,2.5203510536732965e-17,-6.448936279731729e-17)
sum e = 1.1963634993538377
sum de = -7.48099499014998e-18
Info: CFL hydro = 0.0026988464989783495 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026988464989783495 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.2866e+04 | 13440 | 1 | 2.542e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.60611727861486 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9589313480901147, dt = 0.0010686519098858094 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.6%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1342.00 ns (0.4%)
LB compute : 316.32 us (94.5%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1953.00 ns (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: 1.865252976190476
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,-9.583083854271089e-21,1.3893974231840848e-18)
sum a = (-5.4776907311013544e-17,-5.640603156623963e-17,-2.7580115332592192e-17)
sum e = 1.1963623123558285
sum de = -2.981555974335137e-17
Info: CFL hydro = 0.0026888614622544425 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026888614622544425 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.3081e+04 | 13440 | 1 | 2.532e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.194217900932834 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 420 [SPH][rank=0]
Info: time since start : 448.22151231400005 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 2.02 s [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 2.01 s [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1975.67 ms [sph::CartesianRender][rank=0]
---------------- t = 0.9600000000000005, dt = 0.0026888614622544425 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.33 us (3.4%)
patch tree reduce : 1652.00 ns (0.5%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 331.54 us (92.6%)
LB move op cnt : 0
LB apply : 4.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1712.00 ns (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: 1.8627232142857142
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,-3.4019947682662363e-19,1.3435783035058513e-18)
sum a = (-5.609937288290296e-17,5.918512588397825e-17,2.2338168464305906e-17)
sum e = 1.1963634797466476
sum de = -4.0440741033709315e-17
Info: CFL hydro = 0.0026639390249552815 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026639390249552815 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7897e+04 | 13440 | 1 | 2.321e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.699194477140345 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.962688861462255, dt = 0.0026639390249552815 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.7%)
patch tree reduce : 1733.00 ns (0.5%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 327.80 us (94.3%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1492.00 ns (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: 1.8644345238095237
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,1.4374625781406634e-20,1.472350992797619e-18)
sum a = (-1.69045599189342e-17,-9.027264990723365e-18,2.407749818385611e-17)
sum e = 1.196363489176349
sum de = 5.4643789493269423e-17
Info: CFL hydro = 0.0026413878167017347 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026413878167017347 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.4203e+04 | 13440 | 1 | 2.480e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.67685294104391 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9653528004872103, dt = 0.0026413878167017347 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (2.0%)
patch tree reduce : 1922.00 ns (0.7%)
gen split merge : 1092.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.4%)
LB compute : 268.43 us (93.0%)
LB move op cnt : 0
LB apply : 3.70 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1462.00 ns (62.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8746279761904763
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.724955093768796e-19,1.5518606416510244e-18)
sum a = (2.0086143758552202e-17,3.334913181286339e-18,-8.854769481346486e-18)
sum e = 1.1963634838258312
sum de = 4.0115480381963664e-18
Info: CFL hydro = 0.0026208979122514554 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026208979122514554 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7056e+04 | 13440 | 1 | 2.356e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.36781766117338 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.967994188303912, dt = 0.0026208979122514554 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (1.9%)
patch tree reduce : 1422.00 ns (0.4%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1342.00 ns (0.4%)
LB compute : 313.45 us (94.0%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1512.00 ns (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: 1.8743303571428571
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,-2.922840575552682e-19,1.4458477765131505e-18)
sum a = (5.3281946229747256e-18,3.415411085662216e-17,-4.168641476607924e-18)
sum e = 1.1963634777965204
sum de = 2.2768245622195593e-17
Info: CFL hydro = 0.002602521046410193 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002602521046410193 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.3522e+04 | 13440 | 1 | 2.511e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.573515277633085 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9706150862161635, dt = 0.002602521046410193 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.8%)
patch tree reduce : 1943.00 ns (0.5%)
gen split merge : 1182.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.4%)
LB compute : 336.31 us (93.8%)
LB move op cnt : 0
LB apply : 4.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1733.00 ns (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: 1.8633184523809527
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-9.343506757914312e-20,1.4765435919838626e-18)
sum a = (1.4566287458492054e-17,5.949178456731491e-17,4.2448269932493784e-17)
sum e = 1.1963634701929438
sum de = 2.222614453595284e-17
Info: CFL hydro = 0.002586307716598754 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002586307716598754 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1062e+04 | 13440 | 1 | 2.632e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.59526948612086 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9732176072625738, dt = 0.002586307716598754 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.7%)
patch tree reduce : 1562.00 ns (0.5%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.4%)
LB compute : 310.14 us (94.0%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1783.00 ns (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: 1.8650297619047616
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,2.20410928648235e-19,1.6351136826350045e-18)
sum a = (2.9515898271154954e-18,2.1811098852320997e-17,3.6269576617452505e-17)
sum e = 1.1963634598140462
sum de = 2.5370330836160804e-17
Info: CFL hydro = 0.0026645612895063128 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026645612895063128 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.2463e+04 | 13440 | 1 | 2.562e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.34437391773389 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9758039149791725, dt = 0.0026645612895063128 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.7%)
patch tree reduce : 1512.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.4%)
LB compute : 312.36 us (94.2%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1482.00 ns (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: 1.8678571428571429
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,2.395770963567772e-20,1.7294471643254855e-18)
sum a = (2.5299341375275673e-17,6.382333846944545e-17,6.172464310536008e-17)
sum e = 1.1963635381282587
sum de = 1.1709383462843448e-17
Info: CFL hydro = 0.002651834244124205 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002651834244124205 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.0711e+04 | 13440 | 1 | 2.650e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.19344799493422 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9784684762686788, dt = 0.0015315237313217045 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.6%)
patch tree reduce : 1582.00 ns (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1572.00 ns (0.5%)
LB compute : 311.76 us (94.2%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1843.00 ns (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: 1.867857142857143
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.2342908008164923e-19,1.842797078039286e-18)
sum a = (1.705788926060254e-17,-3.819817224312456e-17,-1.2168120723960715e-17)
sum e = 1.1963626316891576
sum de = -2.873135757086587e-17
Info: CFL hydro = 0.0026474668242792276 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026474668242792276 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.2890e+04 | 13440 | 1 | 2.541e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.697022755902847 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 428 [SPH][rank=0]
Info: time since start : 457.572140272 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 2.08 s [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 2.02 s [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1991.49 ms [sph::CartesianRender][rank=0]
---------------- t = 0.9800000000000005, dt = 0.0026474668242792276 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.32 us (3.5%)
patch tree reduce : 1723.00 ns (0.5%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 328.42 us (92.5%)
LB move op cnt : 0
LB apply : 4.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1582.00 ns (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: 1.8683035714285714
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-6.708158697989762e-20,1.7643355789824413e-18)
sum a = (1.1557199128250933e-17,-5.5083565994350215e-17,-3.0881487720388584e-18)
sum e = 1.1963634951585025
sum de = 1.2034644114589099e-17
Info: CFL hydro = 0.0026395000554499675 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026395000554499675 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3532e+04 | 13440 | 1 | 3.087e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.870652403639387 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9826474668242797, dt = 0.0026395000554499675 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.9%)
patch tree reduce : 1792.00 ns (0.6%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.4%)
LB compute : 292.73 us (93.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1482.00 ns (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: 1.86875
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.8332335417084355e-20,1.757298001776961e-18)
sum a = (-3.595573062122512e-17,-4.576880848799872e-17,-2.0071769132770796e-17)
sum e = 1.1963634732559179
sum de = 5.9631119486702744e-18
Info: CFL hydro = 0.0026367272971855008 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026367272971855008 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5238e+04 | 13440 | 1 | 2.433e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.054108539519945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9852869668797297, dt = 0.0026367272971855008 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.9%)
patch tree reduce : 1832.00 ns (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.4%)
LB compute : 292.64 us (93.7%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1472.00 ns (63.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8787946428571427
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,-7.187312890703317e-21,1.6896174720561713e-18)
sum a = (3.0474206656582063e-18,-3.1355850371175e-17,-2.3996041971094807e-17)
sum e = 1.1963634471097344
sum de = 1.951563910473908e-18
Info: CFL hydro = 0.002723007628674846 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002723007628674846 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7934e+04 | 13440 | 1 | 2.804e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.85449282628773 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9879236941769152, dt = 0.002723007628674846 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.4%)
patch tree reduce : 1552.00 ns (0.4%)
gen split merge : 981.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1091.00 ns (0.3%)
LB compute : 388.06 us (95.2%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1743.00 ns (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: 1.8786458333333336
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,7.187312890703317e-21,1.6162469862969084e-18)
sum a = (2.2769407237748107e-17,1.2381344339718247e-17,4.781958843281273e-17)
sum e = 1.1963635026931307
sum de = 9.64939933512099e-18
Info: CFL hydro = 0.0027125048451086963 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027125048451086963 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7745e+04 | 13440 | 1 | 2.327e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.11796568281975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.99064670180559, dt = 0.0027125048451086963 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (2.0%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1352.00 ns (0.5%)
LB compute : 276.00 us (92.9%)
LB move op cnt : 0
LB apply : 4.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1942.00 ns (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: 1.8674107142857141
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.6894872838943693e-19,1.827074831090872e-18)
sum a = (-1.5198770992873948e-17,1.0809718587617788e-17,4.1590583927536525e-17)
sum e = 1.1963634676827033
sum de = 3.859759734048396e-17
Info: CFL hydro = 0.0027435418678436376 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027435418678436376 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.8280e+04 | 13440 | 1 | 2.306e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.34443049314997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9933592066506987, dt = 0.0027435418678436376 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (2.1%)
patch tree reduce : 1663.00 ns (0.6%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.4%)
LB compute : 262.64 us (93.2%)
LB move op cnt : 0
LB apply : 3.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1503.00 ns (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: 1.862276785714286
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-1.796828222675829e-19,1.9423713087125713e-18)
sum a = (-1.109721110324592e-17,-2.0737793460642636e-17,3.2323741840456384e-17)
sum e = 1.1963634733433657
sum de = 6.179952383167375e-18
Info: CFL hydro = 0.002736105258684978 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002736105258684978 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.1206e+04 | 13440 | 1 | 2.625e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.63000514507048 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9961027485185423, dt = 0.002736105258684978 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.9%)
patch tree reduce : 1582.00 ns (0.5%)
gen split merge : 1052.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.4%)
LB compute : 270.55 us (93.4%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1432.00 ns (62.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8620535714285715
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-4.048852928429535e-19,2.010950252544699e-18)
sum a = (-1.3684643743899115e-17,-2.1236113821064733e-17,-7.18635458231789e-17)
sum e = 1.1963634491640416
sum de = 1.951563910473908e-17
Info: CFL hydro = 0.002732950173649365 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002732950173649365 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.5135e+04 | 13440 | 1 | 2.438e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.40777932586774 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9988388537772273, dt = 0.0011611462227731906 ----------------
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 13440.0 min = 13440.0 factor = 1
- strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (2.1%)
patch tree reduce : 1873.00 ns (0.7%)
gen split merge : 1062.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.4%)
LB compute : 265.12 us (93.0%)
LB move op cnt : 0
LB apply : 3.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1583.00 ns (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: 1.8619047619047622
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-3.25824851045217e-19,1.7842504251170983e-18)
sum a = (-1.680872908039149e-17,1.0733053916783619e-17,4.6420458190089155e-17)
sum e = 1.1963624686039582
sum de = -1.7672495411513722e-17
Info: CFL hydro = 0.002733653043557096 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002733653043557096 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep 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.7952e+04 | 13440 | 1 | 2.319e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.024285057881798 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 436 [SPH][rank=0]
Info: time since start : 466.91757508100005 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 2.06 s [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 2.06 s [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1996.13 ms [sph::CartesianRender][rank=0]
Convert PNG sequence to Image sequence in mpl#
280 from shamrock.utils.plot import show_image_sequence
281
282 # If the animation is not returned only a static image will be shown in the doc
Rho plot
286 glob_str = os.path.join(dump_folder, f"{sim_name}_rho_*.png")
287 ani = show_image_sequence(glob_str, render_gif=render_gif)
288
289 if render_gif and shamrock.sys.world_rank() == 0:
290 # Show the animation
291 plt.show()
Vy plot
295 glob_str = os.path.join(dump_folder, f"{sim_name}_vy_*.png")
296 ani = show_image_sequence(glob_str, render_gif=render_gif)
297
298 if render_gif and shamrock.sys.world_rank() == 0:
299 # Show the animation
300 plt.show()
alpha plot
304 glob_str = os.path.join(dump_folder, f"{sim_name}_alpha_*.png")
305 ani = show_image_sequence(glob_str, render_gif=render_gif)
306
307 if render_gif and shamrock.sys.world_rank() == 0:
308 # Show the animation
309 plt.show()
Total running time of the script: (8 minutes 34.261 seconds)
Estimated memory usage: 1300 MB