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 : 47.17 us (79.0%)
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 1536 min = 1536 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 1536 min = 1536 [LoadBalance][rank=0]
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 : 3.19 us (0.3%)
patch tree reduce : 1072.00 ns (0.1%)
gen split merge : 711.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.1%)
LB compute : 1033.03 us (98.6%)
LB move op cnt : 0
LB apply : 4.37 us (0.4%)
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 : 4.12 us (69.4%)
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 3072 min = 3072 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 3072 min = 3072 [LoadBalance][rank=0]
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.81 us (0.5%)
patch tree reduce : 492.00 ns (0.1%)
gen split merge : 612.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 631.00 ns (0.1%)
LB compute : 508.47 us (97.8%)
LB move op cnt : 0
LB apply : 3.08 us (0.6%)
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 : 9.12 us (68.1%)
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.03 us (0.4%)
patch tree reduce : 1352.00 ns (0.1%)
gen split merge : 961.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.1%)
LB compute : 888.99 us (98.1%)
LB move op cnt : 0
LB apply : 4.26 us (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 : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 35.73 us (3.7%)
patch tree reduce : 1372.00 ns (0.1%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.1%)
LB compute : 893.90 us (93.2%)
LB move op cnt : 0
LB apply : 5.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (76.8%)
Warning: High interface/patch volume ratio. [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.0877e+04 | 13440 | 1 | 1.236e+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 0x7fb895cbb470>
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 1869.02 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1854.76 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1847.53 ms [sph::CartesianRender][rank=0]
---------------- t = 0, dt = 1.6959368633748e-05 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.58 us (1.6%)
patch tree reduce : 1733.00 ns (0.3%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.1%)
LB compute : 567.15 us (93.7%)
LB move op cnt : 0
LB apply : 4.40 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1738e+04 | 13440 | 1 | 3.220e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.18960278238744074 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6959368633748e-05, dt = 0.0005766286633394807 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 366.57 us (94.8%)
LB move op cnt : 0
LB apply : 4.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 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.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 | 4.4243e+04 | 13440 | 1 | 3.038e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.833552876857877 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0005935880319732287, dt = 0.0009504173631537266 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.4%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 1072.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 402.19 us (95.2%)
LB move op cnt : 0
LB apply : 4.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.3068e+04 | 13440 | 1 | 3.121e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.964070535992416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0015440053951269552, dt = 0.001183423392023894 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.50 us (1.5%)
patch tree reduce : 1753.00 ns (0.4%)
gen split merge : 1373.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1233.00 ns (0.3%)
LB compute : 404.26 us (95.0%)
LB move op cnt : 0
LB apply : 4.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1612e+04 | 13440 | 1 | 3.230e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.190595605821292 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0027274287871508493, dt = 0.0013321235052401233 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.3%)
patch tree reduce : 1704.00 ns (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 440.94 us (95.5%)
LB move op cnt : 0
LB apply : 4.12 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 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.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 | 4.3758e+04 | 13440 | 1 | 3.071e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.613665467763818 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.004059552292390973, dt = 0.0014517457261939495 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.44 us (1.6%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 373.27 us (94.7%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 3.2296e+04 | 13440 | 1 | 4.161e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.558818983136995 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.005511298018584922, dt = 0.0007674045592355258 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.77 us (1.7%)
patch tree reduce : 1783.00 ns (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 388.66 us (94.9%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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.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 | 4.3591e+04 | 13440 | 1 | 3.083e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.960411617997012 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.006278702577820448, dt = 0.001066093231945647 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1303.00 ns (0.3%)
LB compute : 383.38 us (94.9%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0169e+04 | 13440 | 1 | 3.346e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.470596582685584 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.007344795809766096, dt = 0.0012616150352869704 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.2%)
patch tree reduce : 1543.00 ns (0.3%)
gen split merge : 1172.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 450.55 us (95.8%)
LB move op cnt : 0
LB apply : 3.71 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1944.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.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 | 3.1589e+04 | 13440 | 1 | 4.255e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.67493124513675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.008606410845053066, dt = 0.0006909728549565848 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.2%)
patch tree reduce : 1904.00 ns (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.2%)
LB compute : 470.77 us (96.0%)
LB move op cnt : 0
LB apply : 3.78 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (65.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 3.9645e+04 | 13440 | 1 | 3.390e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.337496915359549 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.00929738370000965, dt = 0.0010028304874655524 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 387.06 us (95.0%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0556e+04 | 13440 | 1 | 3.314e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.89407219499979 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.010300214187475202, dt = 0.0012050701391501297 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.3%)
patch tree reduce : 1974.00 ns (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 411.71 us (95.4%)
LB move op cnt : 0
LB apply : 3.95 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1772e+04 | 13440 | 1 | 3.218e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.483282518459674 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.011505284326625332, dt = 0.0013343524074419953 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.4%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 389.82 us (95.2%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 3.2909e+04 | 13440 | 1 | 4.084e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.762303932152033 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.012839636734067328, dt = 0.0007116148707606397 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.3%)
patch tree reduce : 1273.00 ns (0.3%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 415.13 us (95.4%)
LB move op cnt : 0
LB apply : 4.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (65.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2433e+04 | 13440 | 1 | 3.167e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.0882224173839 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.013551251604827967, dt = 0.0010138488734798446 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.0%)
patch tree reduce : 1743.00 ns (0.3%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.2%)
LB compute : 556.85 us (96.6%)
LB move op cnt : 0
LB apply : 3.71 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1944.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.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 | 4.1735e+04 | 13440 | 1 | 3.220e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.333729103710501 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.014565100478307813, dt = 0.0012140161439088862 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.3%)
patch tree reduce : 1823.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 428.44 us (95.7%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (65.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.2360e+04 | 13440 | 1 | 3.173e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.774793015155781 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.015779116622216698, dt = 0.0013514695226909445 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1332.00 ns (0.3%)
LB compute : 370.91 us (94.8%)
LB move op cnt : 0
LB apply : 4.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2294e+04 | 13440 | 1 | 3.178e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.31046801596909 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.01713058614490764, dt = 0.0014501049557003444 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.3%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 1232.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 393.01 us (95.3%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1684e+04 | 13440 | 1 | 3.224e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.191018958119386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.018580691100607987, dt = 0.0014193088993920133 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.2%)
patch tree reduce : 1563.00 ns (0.3%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.2%)
LB compute : 477.81 us (95.7%)
LB move op cnt : 0
LB apply : 4.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (73.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1524e+04 | 13440 | 1 | 3.237e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.786300449986971 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 20 [SPH][rank=0]
Info: time since start : 25.216035992000002 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1852.45 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1815.08 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1869.06 ms [sph::CartesianRender][rank=0]
---------------- t = 0.02, dt = 0.0016009811815893937 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.84 us (2.2%)
patch tree reduce : 1683.00 ns (0.4%)
gen split merge : 551.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 431.39 us (94.9%)
LB move op cnt : 0
LB apply : 4.17 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 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.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 | 4.2438e+04 | 13440 | 1 | 3.167e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.198825374849555 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.021600981181589395, dt = 0.0016578154489938772 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.3%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 379.17 us (91.3%)
LB move op cnt : 0
LB apply : 20.47 us (4.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1595e+04 | 13440 | 1 | 3.231e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.470451416667395 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.02325879663058327, dt = 0.0017127056318353199 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.4%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.3%)
LB compute : 386.19 us (95.2%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1984.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.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 | 4.2389e+04 | 13440 | 1 | 3.171e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.44638016564545 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.02497150226241859, dt = 0.0017677005654260394 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.19 us (1.5%)
patch tree reduce : 1994.00 ns (0.5%)
gen split merge : 1012.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 390.07 us (94.9%)
LB move op cnt : 0
LB apply : 4.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1849e+04 | 13440 | 1 | 3.212e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.815209235108334 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.02673920282784463, dt = 0.001863045236962047 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.7%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 355.38 us (94.7%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2470e+04 | 13440 | 1 | 3.165e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.19387176471597 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.028602248064806678, dt = 0.0019187593324731893 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1703.00 ns (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 351.23 us (94.7%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.3048e+04 | 13440 | 1 | 3.122e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.12474029950318 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.030521007397279868, dt = 0.0019628452579179283 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.76 us (1.8%)
patch tree reduce : 1993.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 354.17 us (94.4%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.3152e+04 | 13440 | 1 | 3.115e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.68790722628297 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0324838526551978, dt = 0.001984428908702307 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 353.49 us (94.7%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1974.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.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 | 4.2395e+04 | 13440 | 1 | 3.170e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.534978261235615 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.034468281563900104, dt = 0.0019912964735130357 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.2%)
patch tree reduce : 1412.00 ns (0.3%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.2%)
LB compute : 480.90 us (96.0%)
LB move op cnt : 0
LB apply : 4.29 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.2625e+04 | 13440 | 1 | 3.153e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.735567505045122 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03645957803741314, dt = 0.002007812002181347 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.4%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 1213.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 374.36 us (94.9%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.1574e+04 | 13440 | 1 | 3.233e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.35897509520776 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03846739003959449, dt = 0.0015326099604055093 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 378.37 us (94.9%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (66.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2611e+04 | 13440 | 1 | 3.154e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.492556907198697 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 31 [SPH][rank=0]
Info: time since start : 35.465468967 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1828.47 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1829.24 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1843.86 ms [sph::CartesianRender][rank=0]
---------------- t = 0.04, dt = 0.002039782222656882 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.76 us (1.8%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 501.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 516.00 us (95.7%)
LB move op cnt : 0
LB apply : 4.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.1784e+04 | 13440 | 1 | 4.228e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.36610271739037 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.042039782222656884, dt = 0.0010325024709288968 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.3%)
patch tree reduce : 1332.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 392.97 us (95.4%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1903.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.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 | 4.2021e+04 | 13440 | 1 | 3.198e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.621487874377515 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04307228469358578, dt = 0.0013857563958165795 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.2%)
patch tree reduce : 1313.00 ns (0.3%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.2%)
LB compute : 446.95 us (95.7%)
LB move op cnt : 0
LB apply : 4.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1727e+04 | 13440 | 1 | 3.221e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.48841517077811 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.044458041089402364, dt = 0.0016259299273677509 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (0.3%)
patch tree reduce : 1583.00 ns (0.1%)
gen split merge : 972.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.1%)
LB compute : 1629.19 us (98.8%)
LB move op cnt : 0
LB apply : 3.71 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1193e+04 | 13440 | 1 | 3.263e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.94027525791775 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.046083971016770114, dt = 0.0018004902760843833 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.99 us (1.3%)
patch tree reduce : 1562.00 ns (0.3%)
gen split merge : 1032.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1382.00 ns (0.3%)
LB compute : 443.45 us (95.7%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1983.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.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 | 4.1536e+04 | 13440 | 1 | 3.236e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.03189592100203 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0478844612928545, dt = 0.0019066570317068008 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.3%)
patch tree reduce : 1603.00 ns (0.3%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1382.00 ns (0.3%)
LB compute : 473.10 us (95.8%)
LB move op cnt : 0
LB apply : 3.87 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1954.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.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 | 4.1356e+04 | 13440 | 1 | 3.250e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.12084286738603 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.049791118324561304, dt = 0.001964496979870758 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (0.4%)
patch tree reduce : 1613.00 ns (0.1%)
gen split merge : 1233.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.1%)
LB compute : 1485.77 us (98.6%)
LB move op cnt : 0
LB apply : 3.77 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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.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 | 3.9384e+04 | 13440 | 1 | 3.413e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.724060155188315 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05175561530443206, dt = 0.002003189919250456 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.3%)
patch tree reduce : 1513.00 ns (0.3%)
gen split merge : 1092.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 416.72 us (95.6%)
LB move op cnt : 0
LB apply : 3.61 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.1656e+04 | 13440 | 1 | 3.226e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.35108184006076 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05375880522368252, dt = 0.00202973147370055 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.3%)
patch tree reduce : 1573.00 ns (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.2%)
LB compute : 432.93 us (95.7%)
LB move op cnt : 0
LB apply : 3.75 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0947e+04 | 13440 | 1 | 3.282e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.261719880120864 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05578853669738307, dt = 0.0020919736609405987 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.6%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.3%)
LB compute : 368.26 us (94.7%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (65.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1701e+04 | 13440 | 1 | 3.223e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.36736240897826 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.057880510358323665, dt = 0.002112663868943885 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.85 us (1.7%)
patch tree reduce : 1774.00 ns (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 383.94 us (94.6%)
LB move op cnt : 0
LB apply : 4.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (71.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0977e+04 | 13440 | 1 | 3.280e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.188288060560662 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05999317422726755, dt = 6.825772732449442e-06 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (0.1%)
patch tree reduce : 1372.00 ns (0.0%)
gen split merge : 1022.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.0%)
LB compute : 7.49 ms (99.7%)
LB move op cnt : 0
LB apply : 4.47 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (76.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1923e+04 | 13440 | 1 | 3.206e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.0766496640550369 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 43 [SPH][rank=0]
Info: time since start : 46.368087064 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1846.61 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1814.93 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1856.58 ms [sph::CartesianRender][rank=0]
---------------- t = 0.06, dt = 0.002127361697601232 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.67 us (2.3%)
patch tree reduce : 1613.00 ns (0.3%)
gen split merge : 501.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 447.99 us (94.6%)
LB move op cnt : 0
LB apply : 5.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (77.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.1743e+04 | 13440 | 1 | 3.220e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.786213957596903 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06212736169760123, dt = 0.00213811657147329 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.17 us (1.7%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 399.29 us (94.7%)
LB move op cnt : 0
LB apply : 4.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (72.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.0955e+04 | 13440 | 1 | 3.282e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.45559402194167 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06426547826907453, dt = 0.002142340237981182 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.82 us (1.1%)
patch tree reduce : 1573.00 ns (0.3%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 602.16 us (96.5%)
LB move op cnt : 0
LB apply : 3.88 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.0689e+04 | 13440 | 1 | 3.303e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.349038652910295 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06640781850705571, dt = 0.0021833481476595967 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.6%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 402.12 us (94.9%)
LB move op cnt : 0
LB apply : 4.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 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.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 | 4.2172e+04 | 13440 | 1 | 3.187e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.663106236451927 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0685911666547153, dt = 0.002180794229603431 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.54 us (1.8%)
patch tree reduce : 1813.00 ns (0.4%)
gen split merge : 1032.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 363.09 us (87.4%)
LB move op cnt : 0
LB apply : 4.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (72.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1486e+04 | 13440 | 1 | 3.240e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.23376319655196 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07077196088431874, dt = 0.00217066058249493 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.7%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 1142.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1393.00 ns (0.4%)
LB compute : 369.55 us (94.4%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1129e+04 | 13440 | 1 | 3.268e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.913744978736766 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07294262146681367, dt = 0.002173892458537422 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.35 us (1.7%)
patch tree reduce : 1703.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.2%)
LB compute : 398.17 us (94.7%)
LB move op cnt : 0
LB apply : 4.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (63.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1344e+04 | 13440 | 1 | 3.251e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.074315261151643 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0751165139253511, dt = 0.0021794331189129296 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.81 us (0.2%)
patch tree reduce : 1633.00 ns (0.0%)
gen split merge : 972.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.0%)
LB compute : 3.28 ms (99.3%)
LB move op cnt : 0
LB apply : 4.47 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.33 us (76.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0215e+04 | 13440 | 1 | 3.342e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.47642352083841 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07729594704426403, dt = 0.002160361280571982 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (1.8%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 392.92 us (94.7%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1921e+04 | 13440 | 1 | 3.206e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.258234763828185 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07945630832483601, dt = 0.0005436916751639931 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.97 us (2.1%)
patch tree reduce : 1994.00 ns (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1323.00 ns (0.3%)
LB compute : 394.74 us (94.2%)
LB move op cnt : 0
LB apply : 4.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1983e+04 | 13440 | 1 | 3.201e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.114032578692714 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 53 [SPH][rank=0]
Info: time since start : 56.409433565 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1841.74 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1851.51 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1860.13 ms [sph::CartesianRender][rank=0]
---------------- t = 0.08, dt = 0.0021759753338125637 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.58 us (2.0%)
patch tree reduce : 1503.00 ns (0.3%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 513.22 us (95.1%)
LB move op cnt : 0
LB apply : 5.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (74.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1312e+04 | 13440 | 1 | 3.253e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.078494500286467 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08217597533381256, dt = 0.0021849555137885106 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.43 us (1.6%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.3%)
LB compute : 427.55 us (94.8%)
LB move op cnt : 0
LB apply : 4.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (72.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1289e+04 | 13440 | 1 | 3.255e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.16491922256203 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08436093084760107, dt = 0.002202307266014041 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.48 us (1.8%)
patch tree reduce : 2.07 us (0.4%)
gen split merge : 1052.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1013.00 ns (0.2%)
LB compute : 457.68 us (95.0%)
LB move op cnt : 0
LB apply : 4.01 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (65.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 3.7779e+04 | 13440 | 1 | 3.558e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.286122449245585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08656323811361512, dt = 0.002223018841448953 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.92 us (1.8%)
patch tree reduce : 1592.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 428.56 us (95.0%)
LB move op cnt : 0
LB apply : 4.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (67.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0001e+04 | 13440 | 1 | 3.360e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.81836510987135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08878625695506408, dt = 0.0022372274222737863 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.44 us (0.6%)
patch tree reduce : 1652.00 ns (0.1%)
gen split merge : 1051.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.1%)
LB compute : 1171.71 us (98.0%)
LB move op cnt : 0
LB apply : 4.76 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (75.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0670e+04 | 13440 | 1 | 3.305e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.371614660580995 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09102348437733786, dt = 0.0022585965572124197 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.51 us (0.3%)
patch tree reduce : 1934.00 ns (0.1%)
gen split merge : 1012.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1343.00 ns (0.1%)
LB compute : 2.29 ms (98.9%)
LB move op cnt : 0
LB apply : 4.74 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (73.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0993e+04 | 13440 | 1 | 3.279e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.799739383482834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09328208093455027, dt = 0.002281046657683645 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.78 us (0.3%)
patch tree reduce : 1673.00 ns (0.1%)
gen split merge : 982.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.0%)
LB compute : 2.83 ms (99.2%)
LB move op cnt : 0
LB apply : 4.17 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (77.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0949e+04 | 13440 | 1 | 3.282e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.01967824248089 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09556312759223391, dt = 0.00223341840747381 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.7%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 374.52 us (94.5%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0914e+04 | 13440 | 1 | 3.285e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.476494639271063 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09779654599970772, dt = 0.0022034540002922876 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.5%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 981.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 406.73 us (95.2%)
LB move op cnt : 0
LB apply : 4.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0641e+04 | 13440 | 1 | 3.307e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.98666284267536 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 62 [SPH][rank=0]
Info: time since start : 66.243833373 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1843.01 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1838.41 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1850.89 ms [sph::CartesianRender][rank=0]
---------------- t = 0.1, dt = 0.0022720353414706572 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.93 us (2.1%)
patch tree reduce : 1612.00 ns (0.3%)
gen split merge : 752.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 486.23 us (94.9%)
LB move op cnt : 0
LB apply : 4.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 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.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.1247e+04 | 13440 | 1 | 3.258e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.10240646057725 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10227203534147067, dt = 0.002262780169241473 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 391.73 us (95.0%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1595e+04 | 13440 | 1 | 3.231e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.210996206848705 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10453481551071214, dt = 0.002247761320855004 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 384.87 us (94.8%)
LB move op cnt : 0
LB apply : 4.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0682e+04 | 13440 | 1 | 3.304e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.49361392016176 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10678257683156715, dt = 0.002238744411630579 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.7%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1093.00 ns (0.3%)
LB compute : 378.73 us (94.6%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (75.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0621e+04 | 13440 | 1 | 3.309e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.35871125744809 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10902132124319773, dt = 0.0022353393923737544 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.28 us (1.0%)
patch tree reduce : 1933.00 ns (0.3%)
gen split merge : 971.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.2%)
LB compute : 720.65 us (97.0%)
LB move op cnt : 0
LB apply : 3.80 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0223e+04 | 13440 | 1 | 3.341e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.0834899613731 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11125666063557149, dt = 0.0022370742306706205 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.92 us (1.5%)
patch tree reduce : 1843.00 ns (0.4%)
gen split merge : 1193.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.2%)
LB compute : 442.18 us (95.0%)
LB move op cnt : 0
LB apply : 4.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1426e+04 | 13440 | 1 | 3.244e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.8228446776252 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11349373486624212, dt = 0.002310979609685713 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.71 us (1.3%)
patch tree reduce : 1654.00 ns (0.3%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.2%)
LB compute : 512.31 us (96.0%)
LB move op cnt : 0
LB apply : 4.09 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1174e+04 | 13440 | 1 | 3.264e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.487022900374736 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11580471447592783, dt = 0.002318878656330359 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (1.6%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 1032.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 437.92 us (95.2%)
LB move op cnt : 0
LB apply : 4.14 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (67.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1232e+04 | 13440 | 1 | 3.260e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.61045129329865 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11812359313225819, dt = 0.00187640686774182 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.46 us (1.9%)
patch tree reduce : 1993.00 ns (0.5%)
gen split merge : 1143.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.2%)
LB compute : 410.03 us (94.5%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 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.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 | 4.1638e+04 | 13440 | 1 | 3.228e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.92742372344086 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 71 [SPH][rank=0]
Info: time since start : 76.20105054000001 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1872.96 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1856.36 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1905.77 ms [sph::CartesianRender][rank=0]
---------------- t = 0.12000000000000001, dt = 0.0022812681403103436 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.78 us (2.1%)
patch tree reduce : 1793.00 ns (0.4%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1073.00 ns (0.2%)
LB compute : 478.76 us (94.9%)
LB move op cnt : 0
LB apply : 4.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1350e+04 | 13440 | 1 | 3.250e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.26724434214668 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12228126814031036, dt = 0.0023170794340528966 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.40 us (0.9%)
patch tree reduce : 2.04 us (0.3%)
gen split merge : 992.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.1%)
LB compute : 793.69 us (97.3%)
LB move op cnt : 0
LB apply : 3.93 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (75.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0466e+04 | 13440 | 1 | 3.321e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.115358053867794 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12459834757436325, dt = 0.002321063120002645 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.38 us (1.5%)
patch tree reduce : 1373.00 ns (0.3%)
gen split merge : 1222.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.3%)
LB compute : 455.62 us (94.8%)
LB move op cnt : 0
LB apply : 5.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (64.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1326e+04 | 13440 | 1 | 3.252e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.69316433161429 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1269194106943659, dt = 0.0023111832880821415 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.69 us (1.7%)
patch tree reduce : 1853.00 ns (0.5%)
gen split merge : 1262.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 370.39 us (94.4%)
LB move op cnt : 0
LB apply : 4.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (66.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0742e+04 | 13440 | 1 | 3.299e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.22189416456079 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12923059398244804, dt = 0.002288895772943086 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.96 us (1.9%)
patch tree reduce : 1683.00 ns (0.4%)
gen split merge : 1272.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 390.64 us (94.2%)
LB move op cnt : 0
LB apply : 4.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 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.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 | 4.0325e+04 | 13440 | 1 | 3.333e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.723419080259017 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13151948975539113, dt = 0.0022695190253599344 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.82 us (1.6%)
patch tree reduce : 2.08 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 401.03 us (94.6%)
LB move op cnt : 0
LB apply : 4.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (74.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1240e+04 | 13440 | 1 | 3.259e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.069820196553582 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13378900878075106, dt = 0.0023370574029185254 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.63 us (1.8%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1343.00 ns (0.3%)
LB compute : 401.59 us (94.5%)
LB move op cnt : 0
LB apply : 4.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0497e+04 | 13440 | 1 | 3.319e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.35087120600219 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1361260661836696, dt = 0.0023156011848369093 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.58 us (1.7%)
patch tree reduce : 1493.00 ns (0.3%)
gen split merge : 1362.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.2%)
LB compute : 419.29 us (94.6%)
LB move op cnt : 0
LB apply : 4.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 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.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 | 4.1475e+04 | 13440 | 1 | 3.241e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.72469296995203 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1384416673685065, dt = 0.0015583326314935197 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.11 us (1.3%)
patch tree reduce : 1884.00 ns (0.3%)
gen split merge : 951.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 624.63 us (96.4%)
LB move op cnt : 0
LB apply : 4.44 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0752e+04 | 13440 | 1 | 3.298e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.010428653918876 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 80 [SPH][rank=0]
Info: time since start : 86.04722631700001 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1847.55 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1857.05 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1861.61 ms [sph::CartesianRender][rank=0]
---------------- t = 0.14, dt = 0.002288637493517075 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.93 us (2.0%)
patch tree reduce : 1693.00 ns (0.3%)
gen split merge : 581.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 482.67 us (95.2%)
LB move op cnt : 0
LB apply : 5.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (80.1%)
Warning: High interface/patch volume ratio. [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 | 4.1524e+04 | 13440 | 1 | 3.237e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.455164316463772 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.14228863749351708, dt = 0.0022764891433853236 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.55 us (0.1%)
patch tree reduce : 1663.00 ns (0.0%)
gen split merge : 982.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.0%)
LB compute : 7.44 ms (99.7%)
LB move op cnt : 0
LB apply : 4.79 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (76.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 3.9954e+04 | 13440 | 1 | 3.364e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.362921288744232 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1445651266369024, dt = 0.002371944321834541 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.84 us (1.3%)
patch tree reduce : 1593.00 ns (0.3%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1373.00 ns (0.2%)
LB compute : 596.36 us (96.1%)
LB move op cnt : 0
LB apply : 4.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0631e+04 | 13440 | 1 | 3.308e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.814352966623588 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.14693707095873695, dt = 0.002355808051284119 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.72 us (1.6%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 1132.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 456.41 us (95.1%)
LB move op cnt : 0
LB apply : 4.14 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1484e+04 | 13440 | 1 | 3.240e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.177310990047662 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.14929287901002108, dt = 0.002338638753846281 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (1.7%)
patch tree reduce : 2.07 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 396.41 us (95.0%)
LB move op cnt : 0
LB apply : 3.48 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.1196e+04 | 13440 | 1 | 3.262e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.806245881372643 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15163151776386735, dt = 0.0023486702581575897 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 31.61 us (6.6%)
patch tree reduce : 2.18 us (0.5%)
gen split merge : 1022.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 434.21 us (90.3%)
LB move op cnt : 0
LB apply : 3.84 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1301e+04 | 13440 | 1 | 3.254e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.982921630968043 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15398018802202496, dt = 0.0023531476570892765 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.77 us (0.2%)
patch tree reduce : 1683.00 ns (0.1%)
gen split merge : 892.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1333.00 ns (0.0%)
LB compute : 2.71 ms (99.2%)
LB move op cnt : 0
LB apply : 3.98 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0099e+04 | 13440 | 1 | 3.352e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.274442569600527 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15633333567911423, dt = 0.002378029105274268 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (0.3%)
patch tree reduce : 1844.00 ns (0.1%)
gen split merge : 991.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.0%)
LB compute : 2.28 ms (99.1%)
LB move op cnt : 0
LB apply : 4.55 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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.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 | 4.0613e+04 | 13440 | 1 | 3.309e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.869314123386793 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1587113647843885, dt = 0.001288635215611511 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.40 us (0.3%)
patch tree reduce : 1493.00 ns (0.1%)
gen split merge : 1192.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.0%)
LB compute : 2.87 ms (99.2%)
LB move op cnt : 0
LB apply : 4.02 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.16 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.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 | 4.1249e+04 | 13440 | 1 | 3.258e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.237769389314515 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 89 [SPH][rank=0]
Info: time since start : 95.822646266 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1849.70 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1852.04 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1859.77 ms [sph::CartesianRender][rank=0]
---------------- t = 0.16, dt = 0.0023696808830296194 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.41 us (2.1%)
patch tree reduce : 1393.00 ns (0.3%)
gen split merge : 581.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 474.11 us (94.6%)
LB move op cnt : 0
LB apply : 5.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (78.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1970e+04 | 13440 | 1 | 3.202e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.639817842630848 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1623696808830296, dt = 0.002338318802647213 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (0.1%)
patch tree reduce : 1543.00 ns (0.0%)
gen split merge : 892.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 6.27 ms (99.6%)
LB move op cnt : 0
LB apply : 5.25 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.94 us (79.4%)
Warning: High interface/patch volume ratio. [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 | 4.0949e+04 | 13440 | 1 | 3.282e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.647928855877584 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16470799968567681, dt = 0.0023349122382256616 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.97 us (1.9%)
patch tree reduce : 1753.00 ns (0.4%)
gen split merge : 1182.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 393.20 us (94.6%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 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.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 | 4.1594e+04 | 13440 | 1 | 3.231e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.01412584726345 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16704291192390247, dt = 0.0023335694989746925 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1552.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 408.13 us (95.3%)
LB move op cnt : 0
LB apply : 4.07 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1271e+04 | 13440 | 1 | 3.257e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.796679987948927 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16937648142287717, dt = 0.0023322589866446824 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.02 us (1.8%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 360.16 us (94.4%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1908e+04 | 13440 | 1 | 3.207e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.1802550242203 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17170874040952186, dt = 0.002331672562594376 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.8%)
patch tree reduce : 1653.00 ns (0.4%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 352.95 us (94.3%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.48 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1257e+04 | 13440 | 1 | 3.258e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.767438184319996 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17404041297211623, dt = 0.0023325911788819815 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.80 us (0.3%)
patch tree reduce : 1783.00 ns (0.1%)
gen split merge : 982.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.0%)
LB compute : 2.61 ms (99.0%)
LB move op cnt : 0
LB apply : 5.22 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.36 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0756e+04 | 13440 | 1 | 3.298e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.46433568220887 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1763730041509982, dt = 0.002267387981516365 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (0.1%)
patch tree reduce : 1693.00 ns (0.0%)
gen split merge : 1082.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.0%)
LB compute : 5.86 ms (99.6%)
LB move op cnt : 0
LB apply : 5.45 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.56 us (81.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0745e+04 | 13440 | 1 | 3.299e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.746055601907216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1786403921325146, dt = 0.0013596078674854017 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (0.3%)
patch tree reduce : 1683.00 ns (0.1%)
gen split merge : 1071.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.0%)
LB compute : 2.16 ms (99.0%)
LB move op cnt : 0
LB apply : 4.62 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1756e+04 | 13440 | 1 | 3.219e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.20664016632364 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 98 [SPH][rank=0]
Info: time since start : 105.75964051700001 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1838.62 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1846.42 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1849.61 ms [sph::CartesianRender][rank=0]
---------------- t = 0.18, dt = 0.0022741350196644372 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.51 us (2.1%)
patch tree reduce : 1473.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 478.76 us (95.1%)
LB move op cnt : 0
LB apply : 4.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 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.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.1859e+04 | 13440 | 1 | 3.211e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.498028384443817 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18227413501966444, dt = 0.0022810489008999076 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.33 us (1.6%)
patch tree reduce : 1883.00 ns (0.4%)
gen split merge : 1051.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1292.00 ns (0.3%)
LB compute : 438.29 us (95.3%)
LB move op cnt : 0
LB apply : 3.73 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1437e+04 | 13440 | 1 | 3.243e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.3177148264676 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18455518392056436, dt = 0.0022927864132330266 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.59 us (1.8%)
patch tree reduce : 1733.00 ns (0.4%)
gen split merge : 1012.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1473.00 ns (0.3%)
LB compute : 406.47 us (94.7%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (66.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1354e+04 | 13440 | 1 | 3.250e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.396968015405086 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18684797033379738, dt = 0.002308951987650361 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.56 us (1.8%)
patch tree reduce : 1764.00 ns (0.4%)
gen split merge : 1122.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 459.81 us (95.0%)
LB move op cnt : 0
LB apply : 3.98 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (76.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0847e+04 | 13440 | 1 | 3.290e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.262496993371805 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18915692232144773, dt = 0.0022647495346995073 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.89 us (1.6%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 400.23 us (95.0%)
LB move op cnt : 0
LB apply : 4.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1778e+04 | 13440 | 1 | 3.217e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.343816209589452 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19142167185614725, dt = 0.0022813975429532246 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.5%)
patch tree reduce : 1893.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.2%)
LB compute : 416.77 us (95.2%)
LB move op cnt : 0
LB apply : 4.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (65.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1097e+04 | 13440 | 1 | 3.270e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.113644404471945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19370306939910048, dt = 0.0023032053961711337 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.88 us (2.0%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1402.00 ns (0.4%)
LB compute : 367.91 us (94.1%)
LB move op cnt : 0
LB apply : 4.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1378e+04 | 13440 | 1 | 3.248e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.527209336492874 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1960062747952716, dt = 0.0023319517891497313 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.33 us (1.4%)
patch tree reduce : 1893.00 ns (0.4%)
gen split merge : 1182.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1352.00 ns (0.3%)
LB compute : 489.26 us (95.1%)
LB move op cnt : 0
LB apply : 5.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (72.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1533e+04 | 13440 | 1 | 3.236e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.942492547633908 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19833822658442135, dt = 0.0016617734155786323 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.10 us (2.1%)
patch tree reduce : 1863.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 401.76 us (94.2%)
LB move op cnt : 0
LB apply : 4.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (59.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2031e+04 | 13440 | 1 | 3.198e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.70873669175014 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 107 [SPH][rank=0]
Info: time since start : 115.453682189 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1849.52 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1849.70 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1859.28 ms [sph::CartesianRender][rank=0]
---------------- t = 0.19999999999999998, dt = 0.0023307892037228574 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.30 us (2.0%)
patch tree reduce : 1503.00 ns (0.3%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 491.63 us (95.2%)
LB move op cnt : 0
LB apply : 4.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (74.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.0263e+04 | 13440 | 1 | 3.338e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.136876970932516 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20233078920372283, dt = 0.0023489084663178127 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 1012.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1053.00 ns (0.2%)
LB compute : 390.85 us (91.1%)
LB move op cnt : 0
LB apply : 21.04 us (4.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1737e+04 | 13440 | 1 | 3.220e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.259674172281457 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20467969767004063, dt = 0.0023824547302233627 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.5%)
patch tree reduce : 1804.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 394.35 us (95.0%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1964.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.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 | 4.0818e+04 | 13440 | 1 | 3.293e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.048209743635997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.207062152400264, dt = 0.002419098699047534 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.93 us (1.9%)
patch tree reduce : 1572.00 ns (0.4%)
gen split merge : 1022.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 400.66 us (94.7%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (60.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1725e+04 | 13440 | 1 | 3.221e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.036989418299644 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2094812510993115, dt = 0.0024024226608865373 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.5%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 1012.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 415.04 us (95.1%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (65.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1217e+04 | 13440 | 1 | 3.261e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.523603044170834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21188367376019804, dt = 0.0023672985008429456 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.6%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 392.45 us (95.0%)
LB move op cnt : 0
LB apply : 3.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 21.16 us (93.4%)
Warning: High interface/patch volume ratio. [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 | 3.3825e+04 | 13440 | 1 | 3.973e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.44857590143451 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21425097226104098, dt = 0.002368798532240056 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.39 us (1.9%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 1202.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 426.52 us (94.9%)
LB move op cnt : 0
LB apply : 4.03 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (66.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1499e+04 | 13440 | 1 | 3.239e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.3311462283707 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21661977079328104, dt = 0.002369940516030401 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.68 us (0.1%)
patch tree reduce : 1693.00 ns (0.0%)
gen split merge : 1002.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.0%)
LB compute : 5.41 ms (99.6%)
LB move op cnt : 0
LB apply : 5.22 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.93 us (76.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0722e+04 | 13440 | 1 | 3.300e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.850697632184655 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21898971130931144, dt = 0.0010102886906885322 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.04 us (1.1%)
patch tree reduce : 1673.00 ns (0.2%)
gen split merge : 1031.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.1%)
LB compute : 698.56 us (96.6%)
LB move op cnt : 0
LB apply : 4.87 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2005e+04 | 13440 | 1 | 3.200e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.367088624915752 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 116 [SPH][rank=0]
Info: time since start : 125.261145247 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1889.48 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1890.69 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1903.28 ms [sph::CartesianRender][rank=0]
---------------- t = 0.21999999999999997, dt = 0.0023310832188742124 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.14 us (1.9%)
patch tree reduce : 1323.00 ns (0.2%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 518.85 us (95.2%)
LB move op cnt : 0
LB apply : 5.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (73.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.0469e+04 | 13440 | 1 | 3.321e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.269044509437695 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22233108321887418, dt = 0.002308956863108604 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.79 us (1.6%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 1042.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 408.67 us (95.1%)
LB move op cnt : 0
LB apply : 4.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (72.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0058e+04 | 13440 | 1 | 3.355e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.77440821029932 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2246400400819828, dt = 0.002314729059828116 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.92 us (1.8%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 1282.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1183.00 ns (0.3%)
LB compute : 429.28 us (94.9%)
LB move op cnt : 0
LB apply : 4.20 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (65.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0855e+04 | 13440 | 1 | 3.290e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.330851744170563 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2269547691418109, dt = 0.0023720288434061565 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 378.01 us (90.5%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.0808e+04 | 13440 | 1 | 3.293e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.928159674148898 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22932679798521705, dt = 0.0023624615635410126 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.5%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1513.00 ns (0.3%)
LB compute : 431.00 us (95.4%)
LB move op cnt : 0
LB apply : 3.80 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1619e+04 | 13440 | 1 | 3.229e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.336823410158658 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23168925954875805, dt = 0.0023566248850863726 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (1.7%)
patch tree reduce : 1652.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 408.25 us (94.7%)
LB move op cnt : 0
LB apply : 4.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.37 us (75.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1636e+04 | 13440 | 1 | 3.228e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.282335730501867 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23404588443384441, dt = 0.002354772945024539 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (1.6%)
patch tree reduce : 1653.00 ns (0.4%)
gen split merge : 1032.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 436.38 us (95.0%)
LB move op cnt : 0
LB apply : 4.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 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.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.1048e+04 | 13440 | 1 | 3.274e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.89056826727996 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23640065737886895, dt = 0.0023620306199504753 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.88 us (0.2%)
patch tree reduce : 1903.00 ns (0.0%)
gen split merge : 991.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.0%)
LB compute : 4.26 ms (99.4%)
LB move op cnt : 0
LB apply : 4.84 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 3.9159e+04 | 13440 | 1 | 3.432e-01 | 0.0% | 0.9% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.7753779518116 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23876268799881942, dt = 0.001237312001180546 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.62 us (1.4%)
patch tree reduce : 1933.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.2%)
LB compute : 517.00 us (95.6%)
LB move op cnt : 0
LB apply : 4.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.85 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0410e+04 | 13440 | 1 | 3.326e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.392806723637927 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 125 [SPH][rank=0]
Info: time since start : 135.424062031 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1873.03 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1863.38 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1887.75 ms [sph::CartesianRender][rank=0]
---------------- t = 0.23999999999999996, dt = 0.0024229837663664548 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.36 us (2.3%)
patch tree reduce : 1413.00 ns (0.3%)
gen split merge : 531.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 435.75 us (94.8%)
LB move op cnt : 0
LB apply : 3.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 3.9727e+04 | 13440 | 1 | 3.383e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.783465422118017 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24242298376636642, dt = 0.002441916439473056 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.00 us (1.7%)
patch tree reduce : 1654.00 ns (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1073.00 ns (0.3%)
LB compute : 393.14 us (94.9%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (60.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1140e+04 | 13440 | 1 | 3.267e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.909359925947754 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24486490020583948, dt = 0.0024463322651481476 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.22 us (1.9%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 981.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 402.99 us (94.5%)
LB move op cnt : 0
LB apply : 4.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0445e+04 | 13440 | 1 | 3.323e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.502309407680055 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24731123247098763, dt = 0.0024488749541099544 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.49 us (1.9%)
patch tree reduce : 1744.00 ns (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 380.47 us (94.5%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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.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 | 3.9997e+04 | 13440 | 1 | 3.360e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.236106754575413 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24976010742509758, dt = 0.0024666984269286524 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.72 us (1.3%)
patch tree reduce : 1693.00 ns (0.2%)
gen split merge : 982.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.1%)
LB compute : 666.33 us (96.5%)
LB move op cnt : 0
LB apply : 4.54 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (73.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0649e+04 | 13440 | 1 | 3.306e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.85800121960113 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2522268058520262, dt = 0.0024405694879043433 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.02 us (1.6%)
patch tree reduce : 1482.00 ns (0.3%)
gen split merge : 1001.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 404.33 us (94.8%)
LB move op cnt : 0
LB apply : 4.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1160e+04 | 13440 | 1 | 3.265e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.906996889569637 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.25466737533993056, dt = 0.0024496404504118358 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.07 us (1.9%)
patch tree reduce : 1943.00 ns (0.5%)
gen split merge : 1051.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 408.09 us (94.6%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.23 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1591e+04 | 13440 | 1 | 3.231e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.29005946433729 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2571170157903424, dt = 0.002463989787874663 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.12 us (2.1%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1193.00 ns (0.3%)
LB compute : 404.52 us (94.3%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (73.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0531e+04 | 13440 | 1 | 3.316e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.75005267493564 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.25958100557821706, dt = 0.00041899442178289226 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.84 us (0.2%)
patch tree reduce : 1533.00 ns (0.0%)
gen split merge : 972.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.0%)
LB compute : 3.22 ms (99.2%)
LB move op cnt : 0
LB apply : 4.87 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1219e+04 | 13440 | 1 | 3.261e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.626061855939548 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 134 [SPH][rank=0]
Info: time since start : 145.28723277 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1896.27 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1900.40 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1897.47 ms [sph::CartesianRender][rank=0]
---------------- t = 0.25999999999999995, dt = 0.0024853943108783484 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.22 us (2.1%)
patch tree reduce : 1673.00 ns (0.3%)
gen split merge : 521.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 464.55 us (95.2%)
LB move op cnt : 0
LB apply : 3.99 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.1552e+04 | 13440 | 1 | 3.234e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.66254154508092 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2624853943108783, dt = 0.002493799778354429 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.2%)
patch tree reduce : 1623.00 ns (0.3%)
gen split merge : 1022.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.2%)
LB compute : 505.74 us (96.1%)
LB move op cnt : 0
LB apply : 3.67 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.12 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 3.8588e+04 | 13440 | 1 | 3.483e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.775907820624255 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.26497919408923276, dt = 0.0024385754997967323 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.82 us (1.9%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 378.28 us (94.2%)
LB move op cnt : 0
LB apply : 4.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (73.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.0727e+04 | 13440 | 1 | 3.300e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.602419000551876 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2674177695890295, dt = 0.002453975179176348 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.47 us (1.9%)
patch tree reduce : 1864.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 426.83 us (94.6%)
LB move op cnt : 0
LB apply : 4.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0828e+04 | 13440 | 1 | 3.292e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.83655108346624 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.26987174476820586, dt = 0.002475358766399354 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (0.6%)
patch tree reduce : 1603.00 ns (0.2%)
gen split merge : 561.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.1%)
LB compute : 887.58 us (97.8%)
LB move op cnt : 0
LB apply : 4.28 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (78.3%)
Warning: High interface/patch volume ratio. [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 | 4.0783e+04 | 13440 | 1 | 3.295e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.041192065159652 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27234710353460523, dt = 0.0024766384480020996 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.51 us (1.8%)
patch tree reduce : 1583.00 ns (0.3%)
gen split merge : 1393.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1253.00 ns (0.3%)
LB compute : 439.60 us (94.4%)
LB move op cnt : 0
LB apply : 4.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 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.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 | 4.1036e+04 | 13440 | 1 | 3.275e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.22286321059633 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27482374198260734, dt = 0.002483273394033677 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.64 us (1.8%)
patch tree reduce : 1743.00 ns (0.4%)
gen split merge : 1433.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1363.00 ns (0.3%)
LB compute : 410.17 us (94.4%)
LB move op cnt : 0
LB apply : 4.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 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.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 | 4.1580e+04 | 13440 | 1 | 3.232e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.657710208014038 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27730701537664104, dt = 0.0024991341210149113 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.0%)
patch tree reduce : 1552.00 ns (0.3%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.2%)
LB compute : 579.70 us (96.5%)
LB move op cnt : 0
LB apply : 3.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (66.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1192e+04 | 13440 | 1 | 3.263e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.57427037545345 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.279806149497656, dt = 0.00019385050234399515 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.66 us (1.6%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1253.00 ns (0.3%)
LB compute : 383.62 us (95.0%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (65.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.3047e+04 | 13440 | 1 | 3.122e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.235177178388269 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 143 [SPH][rank=0]
Info: time since start : 155.195509933 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1894.62 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1876.45 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1903.06 ms [sph::CartesianRender][rank=0]
---------------- t = 0.27999999999999997, dt = 0.002472835467588105 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.51 us (2.1%)
patch tree reduce : 1402.00 ns (0.3%)
gen split merge : 501.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 484.46 us (95.1%)
LB move op cnt : 0
LB apply : 4.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (74.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 3.9749e+04 | 13440 | 1 | 3.381e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.328213508387098 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.28247283546758806, dt = 0.0024902344098713444 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.55 us (1.0%)
patch tree reduce : 1653.00 ns (0.2%)
gen split merge : 962.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.1%)
LB compute : 737.57 us (97.0%)
LB move op cnt : 0
LB apply : 3.86 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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.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 | 4.0504e+04 | 13440 | 1 | 3.318e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.01739354797867 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2849630698774594, dt = 0.002488037388301505 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.78 us (1.8%)
patch tree reduce : 1523.00 ns (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 415.33 us (94.8%)
LB move op cnt : 0
LB apply : 3.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (76.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0706e+04 | 13440 | 1 | 3.302e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.128081472518463 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2874511072657609, dt = 0.0024605524301107677 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.79 us (1.5%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 435.62 us (95.1%)
LB move op cnt : 0
LB apply : 4.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1707e+04 | 13440 | 1 | 3.223e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.48784625847071 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2899116596958717, dt = 0.002469390596922942 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (0.2%)
patch tree reduce : 1313.00 ns (0.0%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.0%)
LB compute : 3.31 ms (99.4%)
LB move op cnt : 0
LB apply : 3.76 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 3.9084e+04 | 13440 | 1 | 3.439e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.851550688549235 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2923810502927946, dt = 0.002456992184894072 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.4%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.2%)
LB compute : 406.10 us (95.3%)
LB move op cnt : 0
LB apply : 3.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (74.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0300e+04 | 13440 | 1 | 3.335e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.522495836262433 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2948380424776887, dt = 0.0024552260234267805 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (0.1%)
patch tree reduce : 1332.00 ns (0.0%)
gen split merge : 921.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1342.00 ns (0.0%)
LB compute : 5.05 ms (99.6%)
LB move op cnt : 0
LB apply : 3.93 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0558e+04 | 13440 | 1 | 3.314e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.672886118765117 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2972932685011155, dt = 0.0024604107801398565 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 372.89 us (95.0%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1964.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.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 | 4.1757e+04 | 13440 | 1 | 3.219e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.51974950578119 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.29975367928125535, dt = 0.00024632071874464145 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.6%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 1173.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 390.94 us (94.9%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2551e+04 | 13440 | 1 | 3.159e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8074635722862764 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 152 [SPH][rank=0]
Info: time since start : 165.113222779 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1902.40 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1918.84 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1912.11 ms [sph::CartesianRender][rank=0]
---------------- t = 0.3, dt = 0.0024165648484479724 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.27 us (2.0%)
patch tree reduce : 1413.00 ns (0.3%)
gen split merge : 561.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 500.71 us (95.4%)
LB move op cnt : 0
LB apply : 4.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.63 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.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 | 3.9763e+04 | 13440 | 1 | 3.380e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.738270389356558 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.302416564848448, dt = 0.002418677873877673 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.99 us (1.4%)
patch tree reduce : 1372.00 ns (0.3%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 421.32 us (95.4%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 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.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 | 4.0430e+04 | 13440 | 1 | 3.324e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.192914269422243 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.30483524272232565, dt = 0.002403058272908256 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.2%)
patch tree reduce : 1412.00 ns (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.2%)
LB compute : 443.28 us (95.8%)
LB move op cnt : 0
LB apply : 3.77 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1119e+04 | 13440 | 1 | 3.269e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.467489237333112 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3072383009952339, dt = 0.002392841673149007 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (0.2%)
patch tree reduce : 1713.00 ns (0.1%)
gen split merge : 941.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1213.00 ns (0.0%)
LB compute : 2.91 ms (99.3%)
LB move op cnt : 0
LB apply : 4.29 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (72.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0731e+04 | 13440 | 1 | 3.300e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.106338926657795 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.30963114266838293, dt = 0.002399108306923122 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.0%)
patch tree reduce : 1913.00 ns (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 567.51 us (96.6%)
LB move op cnt : 0
LB apply : 3.73 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1914.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.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 | 4.0679e+04 | 13440 | 1 | 3.304e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.140782756046512 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.31203025097530607, dt = 0.0024078999842634704 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1813.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 391.61 us (95.1%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (65.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1642e+04 | 13440 | 1 | 3.227e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.858275377952456 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.31443815095956956, dt = 0.002410729692780658 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1492.00 ns (0.4%)
LB compute : 363.71 us (94.8%)
LB move op cnt : 0
LB apply : 4.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (66.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2062e+04 | 13440 | 1 | 3.195e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.16050580516025 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.31684888065235023, dt = 0.002428572963633682 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (0.4%)
patch tree reduce : 1482.00 ns (0.1%)
gen split merge : 931.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.1%)
LB compute : 1514.27 us (98.7%)
LB move op cnt : 0
LB apply : 3.83 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (66.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1091e+04 | 13440 | 1 | 3.271e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.72986587875433 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3192774536159839, dt = 0.0007225463840160873 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.0%)
patch tree reduce : 1614.00 ns (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 19.78 us (3.3%)
LB compute : 566.09 us (93.6%)
LB move op cnt : 0
LB apply : 3.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2151e+04 | 13440 | 1 | 3.189e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.157916583597784 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 161 [SPH][rank=0]
Info: time since start : 175.19343742700002 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1896.59 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1903.80 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1899.24 ms [sph::CartesianRender][rank=0]
---------------- t = 0.32, dt = 0.0023836948386717596 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.12 us (2.1%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.2%)
LB compute : 452.93 us (95.0%)
LB move op cnt : 0
LB apply : 4.12 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 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.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 | 4.2654e+04 | 13440 | 1 | 3.151e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.234042854570813 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.32238369483867174, dt = 0.0023963465294955704 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.25 us (0.3%)
patch tree reduce : 1483.00 ns (0.1%)
gen split merge : 862.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.1%)
LB compute : 1600.45 us (98.8%)
LB move op cnt : 0
LB apply : 3.94 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 3.6718e+04 | 13440 | 1 | 3.660e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.568481119867837 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3247800413681673, dt = 0.002416264192067409 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.4%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1303.00 ns (0.3%)
LB compute : 398.13 us (95.4%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1974.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.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 | 4.2083e+04 | 13440 | 1 | 3.194e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.236594205600625 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3271963055602347, dt = 0.0024393805922127273 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.54 us (0.1%)
patch tree reduce : 1462.00 ns (0.0%)
gen split merge : 911.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.0%)
LB compute : 3.89 ms (99.5%)
LB move op cnt : 0
LB apply : 3.88 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1383e+04 | 13440 | 1 | 3.248e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.04008279902954 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3296356861524474, dt = 0.002437341812669415 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.4%)
patch tree reduce : 1253.00 ns (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 360.81 us (95.2%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2261e+04 | 13440 | 1 | 3.180e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.59019419914944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.33207302796511684, dt = 0.0024267983158224385 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1263.00 ns (0.3%)
LB compute : 385.32 us (94.9%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2455e+04 | 13440 | 1 | 3.166e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.597012195928176 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.33449982628093927, dt = 0.0024397619183437994 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1393.00 ns (0.4%)
LB compute : 369.38 us (95.0%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (66.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2434e+04 | 13440 | 1 | 3.167e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.731194379109 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.33693958819928305, dt = 0.002458420802525946 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.3%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1213.00 ns (0.3%)
LB compute : 400.66 us (95.4%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (66.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2804e+04 | 13440 | 1 | 3.140e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.186541785726778 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.339398009001809, dt = 0.0006019909981910265 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.20 us (1.3%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 388.88 us (95.3%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.3358e+04 | 13440 | 1 | 3.100e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.991319986073204 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 170 [SPH][rank=0]
Info: time since start : 184.987370642 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1888.30 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1907.85 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1911.28 ms [sph::CartesianRender][rank=0]
---------------- t = 0.34, dt = 0.0024863808070178907 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.72 us (2.1%)
patch tree reduce : 1443.00 ns (0.3%)
gen split merge : 490.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 433.59 us (95.0%)
LB move op cnt : 0
LB apply : 4.01 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 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.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 | 4.2992e+04 | 13440 | 1 | 3.126e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.63251030256123 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.34248638080701793, dt = 0.002477366562436926 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1432.00 ns (0.3%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 391.72 us (95.3%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (66.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.3011e+04 | 13440 | 1 | 3.125e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.5410171813503 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.34496374736945484, dt = 0.00245846844757421 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 : 1473.00 ns (0.4%)
gen split merge : 1262.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 355.74 us (94.8%)
LB move op cnt : 0
LB apply : 4.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1853.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.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 | 4.2704e+04 | 13440 | 1 | 3.147e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.12149837682626 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.34742221581702903, dt = 0.00244924547012866 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (0.3%)
patch tree reduce : 1693.00 ns (0.1%)
gen split merge : 932.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.1%)
LB compute : 1820.01 us (98.9%)
LB move op cnt : 0
LB apply : 3.93 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1739e+04 | 13440 | 1 | 3.220e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.38247105407142 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3498714612871577, dt = 0.002447985260739115 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (0.5%)
patch tree reduce : 1854.00 ns (0.2%)
gen split merge : 1032.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.1%)
LB compute : 1170.20 us (98.3%)
LB move op cnt : 0
LB apply : 4.14 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1370e+04 | 13440 | 1 | 3.249e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.126568373944302 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3523194465478968, dt = 0.0024918669146929426 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.3%)
patch tree reduce : 1843.00 ns (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1253.00 ns (0.3%)
LB compute : 409.69 us (95.5%)
LB move op cnt : 0
LB apply : 4.03 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1908e+04 | 13440 | 1 | 3.207e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.971942314474546 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35481131346258976, dt = 0.00247842355929617 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.1%)
patch tree reduce : 1913.00 ns (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 451.21 us (96.0%)
LB move op cnt : 0
LB apply : 3.57 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2020e+04 | 13440 | 1 | 3.198e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.895624343753962 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35728973702188593, dt = 0.0024720674467772798 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.3%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 410.69 us (95.7%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (66.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.2145e+04 | 13440 | 1 | 3.189e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.906571542024096 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35976180446866324, dt = 0.0002381955313368045 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (0.1%)
patch tree reduce : 1492.00 ns (0.0%)
gen split merge : 811.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.0%)
LB compute : 3.93 ms (99.5%)
LB move op cnt : 0
LB apply : 3.72 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2213e+04 | 13440 | 1 | 3.184e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.693278547824554 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 179 [SPH][rank=0]
Info: time since start : 194.75652198600002 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1942.35 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1931.39 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1937.36 ms [sph::CartesianRender][rank=0]
---------------- t = 0.36000000000000004, dt = 0.002468268144170938 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.80 us (2.0%)
patch tree reduce : 1724.00 ns (0.4%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 468.74 us (95.3%)
LB move op cnt : 0
LB apply : 4.21 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (71.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.3165e+04 | 13440 | 1 | 3.114e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.53804834622532 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.362468268144171, dt = 0.0024738791850359887 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.4%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1533.00 ns (0.4%)
LB compute : 392.00 us (95.2%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1894.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.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.3209e+04 | 13440 | 1 | 3.110e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.632236632911248 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.364942147329207, dt = 0.002478350088569283 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.00 us (1.1%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.2%)
LB compute : 430.81 us (95.9%)
LB move op cnt : 0
LB apply : 4.05 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2101e+04 | 13440 | 1 | 3.192e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.94853953359634 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.36742049741777627, dt = 0.0024877516507984636 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (0.6%)
patch tree reduce : 1703.00 ns (0.2%)
gen split merge : 932.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.1%)
LB compute : 1022.77 us (98.1%)
LB move op cnt : 0
LB apply : 4.41 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1592e+04 | 13440 | 1 | 3.231e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.715063805288167 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3699082490685747, dt = 0.0024767783150275212 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
patch tree reduce : 1894.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 367.38 us (94.6%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2741e+04 | 13440 | 1 | 3.145e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.35521564175639 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.37238502738360224, dt = 0.0024713774707146256 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.15 us (1.3%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 382.01 us (95.3%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1874.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.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 | 4.2838e+04 | 13440 | 1 | 3.137e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.357737971016856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.37485640485431687, dt = 0.002476126783251731 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.15 us (1.4%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 356.49 us (95.2%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1984.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.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 | 4.2743e+04 | 13440 | 1 | 3.144e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.349466501197973 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3773325316375686, dt = 0.0024834787082119152 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.11 us (0.9%)
patch tree reduce : 1673.00 ns (0.3%)
gen split merge : 821.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 572.15 us (96.9%)
LB move op cnt : 0
LB apply : 3.80 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2570e+04 | 13440 | 1 | 3.157e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.31810220465564 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3798160103457805, dt = 0.00018398965421956293 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (0.2%)
patch tree reduce : 1322.00 ns (0.0%)
gen split merge : 822.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1293.00 ns (0.0%)
LB compute : 2.72 ms (99.3%)
LB move op cnt : 0
LB apply : 3.77 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2842e+04 | 13440 | 1 | 3.137e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.111370354946531 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 188 [SPH][rank=0]
Info: time since start : 204.761778716 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1917.28 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1921.60 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1912.38 ms [sph::CartesianRender][rank=0]
---------------- t = 0.38000000000000006, dt = 0.002522232240535449 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.68 us (1.9%)
patch tree reduce : 1412.00 ns (0.3%)
gen split merge : 501.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.2%)
LB compute : 484.90 us (95.3%)
LB move op cnt : 0
LB apply : 4.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (73.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2333e+04 | 13440 | 1 | 3.175e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.59986384228263 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3825222322405355, dt = 0.0025196695333797956 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.0%)
patch tree reduce : 1493.00 ns (0.2%)
gen split merge : 1032.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1403.00 ns (0.2%)
LB compute : 589.76 us (96.6%)
LB move op cnt : 0
LB apply : 3.92 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 3.9736e+04 | 13440 | 1 | 3.382e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.818373235622918 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3850419017739153, dt = 0.002515717453237713 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.3%)
patch tree reduce : 1653.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1203.00 ns (0.3%)
LB compute : 398.12 us (95.4%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1334e+04 | 13440 | 1 | 3.252e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.85279118322436 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.387557619227153, dt = 0.0025176537476179726 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.1%)
patch tree reduce : 1442.00 ns (0.3%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 531.82 us (96.6%)
LB move op cnt : 0
LB apply : 3.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (65.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2551e+04 | 13440 | 1 | 3.159e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.695288000717355 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.39007527297477096, dt = 0.0025243275537023555 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.13 us (1.3%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 380.37 us (95.3%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2478e+04 | 13440 | 1 | 3.164e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.721673299669725 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3925996005284733, dt = 0.0025329305812078393 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.3%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 403.49 us (95.4%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2787e+04 | 13440 | 1 | 3.141e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.02910619918616 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.39513253110968116, dt = 0.0025491137219418735 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.77 us (1.2%)
patch tree reduce : 1653.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 376.40 us (95.3%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1904.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.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 | 4.2710e+04 | 13440 | 1 | 3.147e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.162059542830416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.39768164483162305, dt = 0.0023183551683770287 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.4%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 386.58 us (95.2%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.3321e+04 | 13440 | 1 | 3.102e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.90200199730915 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 196 [SPH][rank=0]
Info: time since start : 214.27329092000002 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1897.40 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1893.50 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1895.83 ms [sph::CartesianRender][rank=0]
---------------- t = 0.4000000000000001, dt = 0.0025469566819429504 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.80 us (2.1%)
patch tree reduce : 1574.00 ns (0.3%)
gen split merge : 541.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.2%)
LB compute : 435.55 us (95.0%)
LB move op cnt : 0
LB apply : 4.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.3014e+04 | 13440 | 1 | 3.125e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.34489901596206 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.402546956681943, dt = 0.0025433241224393616 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (0.8%)
patch tree reduce : 1853.00 ns (0.3%)
gen split merge : 841.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.1%)
LB compute : 661.29 us (97.2%)
LB move op cnt : 0
LB apply : 3.56 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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.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 | 4.2685e+04 | 13440 | 1 | 3.149e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.079230527685272 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.40509028080438236, dt = 0.0025570640184367508 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.95 us (0.1%)
patch tree reduce : 1383.00 ns (0.0%)
gen split merge : 902.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.0%)
LB compute : 4.26 ms (99.6%)
LB move op cnt : 0
LB apply : 3.79 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 3.9761e+04 | 13440 | 1 | 3.380e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.233388002990914 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4076473448228191, dt = 0.0025575562129679518 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.43 us (0.2%)
patch tree reduce : 1383.00 ns (0.1%)
gen split merge : 781.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1153.00 ns (0.1%)
LB compute : 1997.88 us (99.1%)
LB move op cnt : 0
LB apply : 4.05 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2453e+04 | 13440 | 1 | 3.166e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.08306986684747 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41020490103578705, dt = 0.002577293801357148 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.75 us (0.1%)
patch tree reduce : 1122.00 ns (0.0%)
gen split merge : 642.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.0%)
LB compute : 3.20 ms (99.5%)
LB move op cnt : 0
LB apply : 3.75 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1758e+04 | 13440 | 1 | 3.219e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.827343430808337 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4127821948371442, dt = 0.002606187275931383 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.46 us (0.8%)
patch tree reduce : 1343.00 ns (0.2%)
gen split merge : 691.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 567.43 us (97.0%)
LB move op cnt : 0
LB apply : 3.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2466e+04 | 13440 | 1 | 3.165e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.64483505917603 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41538838211307555, dt = 0.0026435101909230603 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.69 us (1.1%)
patch tree reduce : 1462.00 ns (0.3%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 401.94 us (95.9%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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.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 | 4.1796e+04 | 13440 | 1 | 3.216e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.595025139559354 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4180318923039986, dt = 0.0019681076960014754 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1893.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 389.46 us (94.9%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (67.6%)
Warning: High interface/patch volume ratio. [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 | 4.2491e+04 | 13440 | 1 | 3.163e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.40031313197402 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 204 [SPH][rank=0]
Info: time since start : 223.74145519200002 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1949.80 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1900.39 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1902.70 ms [sph::CartesianRender][rank=0]
---------------- t = 0.4200000000000001, dt = 0.0026436385938106593 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 16.72 us (3.6%)
patch tree reduce : 1363.00 ns (0.3%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 431.24 us (93.6%)
LB move op cnt : 0
LB apply : 4.32 us (0.9%)
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.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.3134e+04 | 13440 | 1 | 3.116e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.54407889919364 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.42264363859381077, dt = 0.00264101629467724 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 374.61 us (95.3%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (66.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.3209e+04 | 13440 | 1 | 3.110e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.56646709319242 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.425284654888488, dt = 0.00263091470374757 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.4%)
patch tree reduce : 1403.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.3%)
LB compute : 376.37 us (95.1%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (65.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.3037e+04 | 13440 | 1 | 3.123e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.328448033404115 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.42791556959223553, dt = 0.0026212525903669863 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.4%)
patch tree reduce : 1323.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 395.90 us (95.6%)
LB move op cnt : 0
LB apply : 3.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.2062e+04 | 13440 | 1 | 3.195e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.532757207507892 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.43053682218260253, dt = 0.002620616988116301 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.15 us (1.3%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 370.86 us (95.2%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.3691e+04 | 13440 | 1 | 3.076e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.668940977949145 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4331574391707188, dt = 0.002628810942882098 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.4%)
patch tree reduce : 1413.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 364.92 us (95.1%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (66.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1396e+04 | 13440 | 1 | 3.247e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.149011105648377 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4357862501136009, dt = 0.0026378750037212065 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1413.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 360.69 us (94.9%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2505e+04 | 13440 | 1 | 3.162e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.032766398146578 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4384241251173221, dt = 0.001575874882678019 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.12 us (1.3%)
patch tree reduce : 1323.00 ns (0.3%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 363.33 us (95.4%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (66.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.4214e+04 | 13440 | 1 | 3.040e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.66297798495415 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 212 [SPH][rank=0]
Info: time since start : 233.36103532500002 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1901.36 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1903.03 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1896.40 ms [sph::CartesianRender][rank=0]
---------------- t = 0.4400000000000001, dt = 0.0026187808488062764 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.74 us (2.1%)
patch tree reduce : 1613.00 ns (0.3%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 444.24 us (95.1%)
LB move op cnt : 0
LB apply : 4.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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.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 | 4.3914e+04 | 13440 | 1 | 3.061e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.803900970203117 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4426187808488064, dt = 0.0026145385497144337 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (0.1%)
patch tree reduce : 1353.00 ns (0.0%)
gen split merge : 842.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.0%)
LB compute : 5.42 ms (99.6%)
LB move op cnt : 0
LB apply : 4.03 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.2477e+04 | 13440 | 1 | 3.164e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.747546661519248 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.44523331939852084, dt = 0.00260927813726553 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.28 us (1.4%)
patch tree reduce : 1233.00 ns (0.3%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 365.09 us (95.3%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 18.80 us (93.4%)
Warning: High interface/patch volume ratio. [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 | 4.3222e+04 | 13440 | 1 | 3.110e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.208517125014485 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.44784259753578637, dt = 0.0026152051309846366 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (0.9%)
patch tree reduce : 1683.00 ns (0.3%)
gen split merge : 872.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 570.00 us (96.9%)
LB move op cnt : 0
LB apply : 3.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.70 us (77.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2755e+04 | 13440 | 1 | 3.144e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.94980439258384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.450457802666771, dt = 0.002618295783310387 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.04 us (0.9%)
patch tree reduce : 1222.00 ns (0.2%)
gen split merge : 741.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1362.00 ns (0.2%)
LB compute : 531.83 us (96.8%)
LB move op cnt : 0
LB apply : 3.74 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0880e+04 | 13440 | 1 | 3.288e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.67010008535239 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4530760984500814, dt = 0.0025961739576275643 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1683.00 ns (0.4%)
gen split merge : 1162.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 384.63 us (95.0%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0999e+04 | 13440 | 1 | 3.278e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.51058326509734 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.45567227240770897, dt = 0.0025923738827887404 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 373.05 us (94.9%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1933.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 | 3.6175e+04 | 13440 | 1 | 3.715e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.119212795821053 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.45826464629049773, dt = 0.0017353537095023963 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (0.7%)
patch tree reduce : 1192.00 ns (0.2%)
gen split merge : 811.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1382.00 ns (0.2%)
LB compute : 768.25 us (97.6%)
LB move op cnt : 0
LB apply : 4.08 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 3.8527e+04 | 13440 | 1 | 3.489e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.90815653321328 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 220 [SPH][rank=0]
Info: time since start : 242.89974628000002 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1904.74 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1909.88 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1899.60 ms [sph::CartesianRender][rank=0]
---------------- t = 0.46000000000000013, dt = 0.002578020412387697 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.97 us (2.1%)
patch tree reduce : 1493.00 ns (0.3%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 449.72 us (95.3%)
LB move op cnt : 0
LB apply : 3.78 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1901e+04 | 13440 | 1 | 3.208e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.934685206054983 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4625780204123878, dt = 0.0025832222007187737 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.59 us (1.3%)
patch tree reduce : 1253.00 ns (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 332.37 us (95.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1913.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.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.2378e+04 | 13440 | 1 | 3.171e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.322541273985742 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4651612426131066, dt = 0.002589778059885711 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.67 us (1.1%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 410.99 us (96.1%)
LB move op cnt : 0
LB apply : 3.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1863.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.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 | 4.2012e+04 | 13440 | 1 | 3.199e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.143158613435105 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4677510206729923, dt = 0.0025762086731901794 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.00 us (0.9%)
patch tree reduce : 1513.00 ns (0.3%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.2%)
LB compute : 419.41 us (96.6%)
LB move op cnt : 0
LB apply : 2.87 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1972e+04 | 13440 | 1 | 3.202e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.962813875097837 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4703272293461825, dt = 0.002581014433250938 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (1.0%)
patch tree reduce : 1052.00 ns (0.3%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 354.19 us (96.2%)
LB move op cnt : 0
LB apply : 2.79 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1974.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.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 | 4.2792e+04 | 13440 | 1 | 3.141e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.583670148976477 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4729082437794334, dt = 0.002581989160156594 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.89 us (1.0%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 387.65 us (96.3%)
LB move op cnt : 0
LB apply : 2.94 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1117e+04 | 13440 | 1 | 3.269e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.43671479735789 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.47549023293959003, dt = 0.002558892125537261 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.76 us (1.0%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 472.22 us (96.4%)
LB move op cnt : 0
LB apply : 3.77 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0063e+04 | 13440 | 1 | 3.355e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.459859008391163 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4780491250651273, dt = 0.0019508749348728371 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.67 us (0.9%)
patch tree reduce : 1222.00 ns (0.2%)
gen split merge : 752.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 493.16 us (96.7%)
LB move op cnt : 0
LB apply : 3.69 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1375e+04 | 13440 | 1 | 3.248e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.62070404199359 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 228 [SPH][rank=0]
Info: time since start : 252.382263913 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1903.94 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1910.23 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1906.57 ms [sph::CartesianRender][rank=0]
---------------- t = 0.48000000000000015, dt = 0.002560102017302908 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.65 us (2.0%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 467.82 us (95.4%)
LB move op cnt : 0
LB apply : 4.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (75.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2796e+04 | 13440 | 1 | 3.140e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.34722134694757 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.48256010201730304, dt = 0.002559017659657758 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.18 us (0.1%)
patch tree reduce : 1352.00 ns (0.0%)
gen split merge : 762.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.0%)
LB compute : 3.49 ms (99.5%)
LB move op cnt : 0
LB apply : 3.44 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1578e+04 | 13440 | 1 | 3.232e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.49992699277607 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4851191196769608, dt = 0.002556151523586395 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.16 us (1.1%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 682.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 379.83 us (96.2%)
LB move op cnt : 0
LB apply : 2.96 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1903.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.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 | 4.3017e+04 | 13440 | 1 | 3.124e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.453107348474507 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4876752712005472, dt = 0.0025553009180322183 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (1.0%)
patch tree reduce : 1363.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 388.05 us (96.3%)
LB move op cnt : 0
LB apply : 2.96 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.3667e+04 | 13440 | 1 | 3.078e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.88839326945726 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.49023057211857946, dt = 0.0025752481999665876 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 us (1.2%)
patch tree reduce : 1332.00 ns (0.4%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.2%)
LB compute : 325.89 us (95.9%)
LB move op cnt : 0
LB apply : 2.58 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (65.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2681e+04 | 13440 | 1 | 3.149e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.44152737970663 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.49280582031854603, dt = 0.0025860236635264233 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.30 us (1.2%)
patch tree reduce : 1203.00 ns (0.3%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 332.80 us (95.7%)
LB move op cnt : 0
LB apply : 3.01 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (66.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2311e+04 | 13440 | 1 | 3.176e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.308011025118276 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4953918439820725, dt = 0.002595618734067225 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.07 us (0.9%)
patch tree reduce : 1362.00 ns (0.3%)
gen split merge : 591.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 431.01 us (96.5%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1636e+04 | 13440 | 1 | 3.228e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.947518483549064 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4979874627161397, dt = 0.002012537283860416 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.16 us (0.9%)
patch tree reduce : 1062.00 ns (0.2%)
gen split merge : 662.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 460.98 us (96.8%)
LB move op cnt : 0
LB apply : 3.53 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2046e+04 | 13440 | 1 | 3.197e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.665808610102513 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 236 [SPH][rank=0]
Info: time since start : 261.97989843100004 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1908.66 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1895.16 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1894.08 ms [sph::CartesianRender][rank=0]
---------------- t = 0.5000000000000001, dt = 0.0025890845741873966 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.75 us (2.2%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 413.83 us (94.9%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (70.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.3566e+04 | 13440 | 1 | 3.085e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.213461117477443 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5025890845741875, dt = 0.0025941276163005495 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.74 us (1.4%)
patch tree reduce : 1442.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1363.00 ns (0.4%)
LB compute : 331.22 us (95.1%)
LB move op cnt : 0
LB apply : 3.25 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2500e+04 | 13440 | 1 | 3.162e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.531553911627597 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.505183212190488, dt = 0.002606011697104425 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.89 us (1.0%)
patch tree reduce : 1183.00 ns (0.3%)
gen split merge : 602.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 382.05 us (96.4%)
LB move op cnt : 0
LB apply : 2.85 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 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.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 | 4.3373e+04 | 13440 | 1 | 3.099e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.276288837803484 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5077892238875924, dt = 0.0025825991771516225 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.06 us (1.0%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.2%)
LB compute : 376.54 us (96.5%)
LB move op cnt : 0
LB apply : 2.60 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (65.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2582e+04 | 13440 | 1 | 3.156e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.456792482289945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.510371823064744, dt = 0.002576553398051002 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.68 us (1.2%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 662.00 ns (0.2%)
LB compute : 373.25 us (96.0%)
LB move op cnt : 0
LB apply : 3.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1894.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.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 | 4.3086e+04 | 13440 | 1 | 3.119e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.735771605974104 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.512948376462795, dt = 0.0025758529104397045 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.98 us (1.0%)
patch tree reduce : 1342.00 ns (0.3%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 752.00 ns (0.2%)
LB compute : 386.34 us (96.3%)
LB move op cnt : 0
LB apply : 3.08 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2360e+04 | 13440 | 1 | 3.173e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.226773640393024 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5155242293732347, dt = 0.00259165552162409 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (0.9%)
patch tree reduce : 912.00 ns (0.2%)
gen split merge : 511.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 581.00 ns (0.2%)
LB compute : 367.06 us (96.7%)
LB move op cnt : 0
LB apply : 3.08 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (66.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.3323e+04 | 13440 | 1 | 3.102e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.074196998553617 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5181158848948588, dt = 0.001884115105141304 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (1.1%)
patch tree reduce : 952.00 ns (0.3%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 651.00 ns (0.2%)
LB compute : 328.47 us (96.3%)
LB move op cnt : 0
LB apply : 2.82 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (66.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.3549e+04 | 13440 | 1 | 3.086e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.97828470657448 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 244 [SPH][rank=0]
Info: time since start : 271.386292299 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1925.17 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1928.30 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1908.03 ms [sph::CartesianRender][rank=0]
---------------- t = 0.5200000000000001, dt = 0.0026092747237978133 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.06 us (2.2%)
patch tree reduce : 1342.00 ns (0.3%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 429.76 us (95.0%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2775e+04 | 13440 | 1 | 3.142e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.895696397444784 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5226092747237979, dt = 0.0026070764352294448 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.78 us (0.4%)
patch tree reduce : 1052.00 ns (0.1%)
gen split merge : 771.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1033.00 ns (0.1%)
LB compute : 1327.54 us (98.8%)
LB move op cnt : 0
LB apply : 3.84 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (65.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2664e+04 | 13440 | 1 | 3.150e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.792995247919773 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5252163511590273, dt = 0.002590142262359933 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.69 us (0.1%)
patch tree reduce : 972.00 ns (0.0%)
gen split merge : 761.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.0%)
LB compute : 3.69 ms (99.6%)
LB move op cnt : 0
LB apply : 3.62 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2048e+04 | 13440 | 1 | 3.196e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.172290678288014 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5278064934213873, dt = 0.002570475200689667 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.01 us (1.2%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.2%)
LB compute : 410.85 us (96.1%)
LB move op cnt : 0
LB apply : 3.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2367e+04 | 13440 | 1 | 3.172e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.170302855062193 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.530376968622077, dt = 0.0025665559270273367 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.01 us (1.0%)
patch tree reduce : 972.00 ns (0.2%)
gen split merge : 561.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 380.80 us (96.5%)
LB move op cnt : 0
LB apply : 2.93 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (66.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2321e+04 | 13440 | 1 | 3.176e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.094555396656848 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5329435245491043, dt = 0.002613838126534372 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (0.9%)
patch tree reduce : 902.00 ns (0.2%)
gen split merge : 601.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 662.00 ns (0.2%)
LB compute : 401.80 us (96.8%)
LB move op cnt : 0
LB apply : 2.79 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.1945e+04 | 13440 | 1 | 3.204e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.366827711705135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5355573626756387, dt = 0.0026096299664217604 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.80 us (0.1%)
patch tree reduce : 772.00 ns (0.0%)
gen split merge : 771.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 531.00 ns (0.0%)
LB compute : 4.51 ms (99.7%)
LB move op cnt : 0
LB apply : 2.89 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (65.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 3.9932e+04 | 13440 | 1 | 3.366e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.913124958985527 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5381669926420605, dt = 0.0018330073579396755 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (0.1%)
patch tree reduce : 1293.00 ns (0.0%)
gen split merge : 771.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.0%)
LB compute : 5.26 ms (99.6%)
LB move op cnt : 0
LB apply : 4.05 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 3.9374e+04 | 13440 | 1 | 3.413e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.332055860449106 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 252 [SPH][rank=0]
Info: time since start : 280.938245691 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1915.77 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1916.11 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1987.00 ms [sph::CartesianRender][rank=0]
---------------- t = 0.5400000000000001, dt = 0.0025947883802042815 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.86 us (2.0%)
patch tree reduce : 1673.00 ns (0.3%)
gen split merge : 470.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 457.62 us (95.1%)
LB move op cnt : 0
LB apply : 4.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (77.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.2626e+04 | 13440 | 1 | 3.153e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.626169138554758 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5425947883802045, dt = 0.002581459195724069 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.4%)
patch tree reduce : 1853.00 ns (0.4%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 393.40 us (95.2%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2856e+04 | 13440 | 1 | 3.136e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.63321080364675 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5451762475759285, dt = 0.002580692553044151 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.4%)
patch tree reduce : 1794.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 385.66 us (95.3%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1994.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.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 | 4.3094e+04 | 13440 | 1 | 3.119e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.78873950564252 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5477569401289727, dt = 0.002551145819852284 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.25 us (1.3%)
patch tree reduce : 1694.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.3%)
LB compute : 378.66 us (95.4%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (65.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.3360e+04 | 13440 | 1 | 3.100e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.6294218280853 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.550308085948825, dt = 0.0025515046930549186 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.41 us (0.3%)
patch tree reduce : 1293.00 ns (0.1%)
gen split merge : 821.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.1%)
LB compute : 2.15 ms (99.2%)
LB move op cnt : 0
LB apply : 3.69 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (66.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2361e+04 | 13440 | 1 | 3.173e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.951475350172238 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5528595906418798, dt = 0.0025831353124168813 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 378.14 us (95.3%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (66.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0865e+04 | 13440 | 1 | 3.289e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.2749254310278 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5554427259542967, dt = 0.002597350177012989 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.3%)
patch tree reduce : 1783.00 ns (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1053.00 ns (0.2%)
LB compute : 422.29 us (95.6%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 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.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 | 4.0975e+04 | 13440 | 1 | 3.280e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.50681039194046 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5580400761313097, dt = 0.001959923868690483 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.3%)
patch tree reduce : 1523.00 ns (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1123.00 ns (0.2%)
LB compute : 477.80 us (96.1%)
LB move op cnt : 0
LB apply : 3.66 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 3.9505e+04 | 13440 | 1 | 3.402e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.739400539336888 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 260 [SPH][rank=0]
Info: time since start : 290.726259156 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1927.36 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1926.80 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1921.86 ms [sph::CartesianRender][rank=0]
---------------- t = 0.5600000000000002, dt = 0.0025894125304972418 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.10 us (2.1%)
patch tree reduce : 1342.00 ns (0.3%)
gen split merge : 480.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 454.99 us (95.0%)
LB move op cnt : 0
LB apply : 4.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (80.5%)
Warning: High interface/patch volume ratio. [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 | 4.2845e+04 | 13440 | 1 | 3.137e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.717033355766546 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5625894125304974, dt = 0.0025847900064946048 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.4%)
patch tree reduce : 1342.00 ns (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 401.64 us (95.5%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.3027e+04 | 13440 | 1 | 3.124e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.78974193873131 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.565174202536992, dt = 0.0025814436929365906 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.2%)
patch tree reduce : 1443.00 ns (0.3%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 452.73 us (95.8%)
LB move op cnt : 0
LB apply : 4.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2681e+04 | 13440 | 1 | 3.149e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.511985567270997 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5677556462299286, dt = 0.002576691855633511 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.7%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 346.15 us (94.8%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1853.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.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 | 4.3245e+04 | 13440 | 1 | 3.108e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.84682259171127 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.570332338085562, dt = 0.0025673013039902047 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.02 us (1.3%)
patch tree reduce : 1383.00 ns (0.4%)
gen split merge : 1072.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 369.68 us (95.4%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1934.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.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 | 4.3265e+04 | 13440 | 1 | 3.106e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.752227765006413 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5728996393895522, dt = 0.0025556775934270607 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.63 us (1.1%)
patch tree reduce : 1322.00 ns (0.3%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1392.00 ns (0.3%)
LB compute : 424.08 us (96.2%)
LB move op cnt : 0
LB apply : 3.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.3110e+04 | 13440 | 1 | 3.118e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.511397751408214 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5754553169829792, dt = 0.00254596613987566 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.15 us (1.0%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 398.30 us (96.3%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2317e+04 | 13440 | 1 | 3.176e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.85811848318299 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5780012831228549, dt = 0.001998716877145257 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 us (1.1%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 353.65 us (96.1%)
LB move op cnt : 0
LB apply : 2.71 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2739e+04 | 13440 | 1 | 3.145e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.88115741290673 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 268 [SPH][rank=0]
Info: time since start : 300.247723926 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1906.67 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1941.56 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1902.72 ms [sph::CartesianRender][rank=0]
---------------- t = 0.5800000000000002, dt = 0.002645648431567327 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.71 us (2.0%)
patch tree reduce : 1472.00 ns (0.3%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 458.83 us (95.2%)
LB move op cnt : 0
LB apply : 3.93 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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.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.2939e+04 | 13440 | 1 | 3.130e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.428758596884425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5826456484315675, dt = 0.00265570947577367 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.12 us (1.3%)
patch tree reduce : 1262.00 ns (0.3%)
gen split merge : 981.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 383.90 us (95.7%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (65.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2537e+04 | 13440 | 1 | 3.160e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.259004384614936 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5853013579073412, dt = 0.002667695087782433 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.84 us (1.2%)
patch tree reduce : 1262.00 ns (0.3%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 378.52 us (95.6%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 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.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 | 4.2695e+04 | 13440 | 1 | 3.148e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.50842402013717 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5879690529951236, dt = 0.002649919462151927 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.34 us (1.1%)
patch tree reduce : 1352.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 379.01 us (96.0%)
LB move op cnt : 0
LB apply : 3.10 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1983.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.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 | 4.2727e+04 | 13440 | 1 | 3.146e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.32735420300291 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5906189724572755, dt = 0.0026343756399502673 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.41 us (1.2%)
patch tree reduce : 1603.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 414.91 us (95.9%)
LB move op cnt : 0
LB apply : 3.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1934.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.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.2067e+04 | 13440 | 1 | 3.195e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.68375968113176 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5932533480972257, dt = 0.002683419205779012 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.65 us (0.1%)
patch tree reduce : 1333.00 ns (0.0%)
gen split merge : 741.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.0%)
LB compute : 5.37 ms (99.7%)
LB move op cnt : 0
LB apply : 3.87 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1961e+04 | 13440 | 1 | 3.203e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.16017591425686 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5959367673030047, dt = 0.0026739670567986515 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.81 us (1.2%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 401.04 us (96.0%)
LB move op cnt : 0
LB apply : 3.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2661e+04 | 13440 | 1 | 3.150e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.555544777550278 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5986107343598034, dt = 0.0013892656401968129 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (0.7%)
patch tree reduce : 1373.00 ns (0.2%)
gen split merge : 802.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.1%)
LB compute : 831.33 us (97.8%)
LB move op cnt : 0
LB apply : 3.79 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2793e+04 | 13440 | 1 | 3.141e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.92443142911417 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 276 [SPH][rank=0]
Info: time since start : 309.744011365 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1890.60 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1907.38 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1896.13 ms [sph::CartesianRender][rank=0]
---------------- t = 0.6000000000000002, dt = 0.002676943489960692 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.05 us (2.2%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 470.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 431.65 us (95.0%)
LB move op cnt : 0
LB apply : 4.20 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2846e+04 | 13440 | 1 | 3.137e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.722064943855912 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6026769434899609, dt = 0.0026686266540223496 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.47 us (1.1%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 389.82 us (96.0%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2086e+04 | 13440 | 1 | 3.193e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.083431904187286 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6053455701439833, dt = 0.00265983596708053 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.88 us (1.4%)
patch tree reduce : 1252.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1332.00 ns (0.4%)
LB compute : 337.03 us (95.1%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (65.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2938e+04 | 13440 | 1 | 3.130e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.591728735236615 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6080054061110638, dt = 0.00270781825145908 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.45 us (1.2%)
patch tree reduce : 1243.00 ns (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 358.75 us (95.6%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2162e+04 | 13440 | 1 | 3.188e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.580320784378547 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6107132243625228, dt = 0.0026990486652442715 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.35 us (1.5%)
patch tree reduce : 1693.00 ns (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 346.48 us (95.0%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1874.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.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 | 4.2462e+04 | 13440 | 1 | 3.165e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.69852935319029 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6134122730277671, dt = 0.0026892099191715042 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.49 us (1.3%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.4%)
LB compute : 339.99 us (95.5%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (66.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2240e+04 | 13440 | 1 | 3.182e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.426526682812593 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6161014829469387, dt = 0.00270289115950585 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.20 us (1.1%)
patch tree reduce : 1093.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 380.28 us (96.2%)
LB move op cnt : 0
LB apply : 3.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2783e+04 | 13440 | 1 | 3.141e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.974214972022402 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6188043741064445, dt = 0.0011956258935557074 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.24 us (1.2%)
patch tree reduce : 1142.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 347.69 us (95.9%)
LB move op cnt : 0
LB apply : 3.16 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1943.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.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 | 4.3508e+04 | 13440 | 1 | 3.089e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.93371113158469 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 284 [SPH][rank=0]
Info: time since start : 319.20376704 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1917.37 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1913.24 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1913.51 ms [sph::CartesianRender][rank=0]
---------------- t = 0.6200000000000002, dt = 0.0027250952848026553 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.08 us (2.1%)
patch tree reduce : 1613.00 ns (0.3%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 447.39 us (94.9%)
LB move op cnt : 0
LB apply : 4.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (74.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2415e+04 | 13440 | 1 | 3.169e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.960159333049077 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6227250952848029, dt = 0.0027076720432186 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.16 us (1.3%)
patch tree reduce : 1362.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 383.56 us (95.7%)
LB move op cnt : 0
LB apply : 3.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1934.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.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 | 4.2495e+04 | 13440 | 1 | 3.163e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.820654955408994 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6254327673280216, dt = 0.0026925332825730747 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.05 us (1.0%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 681.00 ns (0.2%)
LB compute : 396.77 us (96.3%)
LB move op cnt : 0
LB apply : 3.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.3002e+04 | 13440 | 1 | 3.125e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.01347628875973 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6281253006105947, dt = 0.002715973348698444 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (1.0%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 370.55 us (96.0%)
LB move op cnt : 0
LB apply : 3.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 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.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 | 4.2385e+04 | 13440 | 1 | 3.171e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.834429345014726 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6308412739592931, dt = 0.0027178827058606733 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.92 us (1.4%)
patch tree reduce : 1312.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 343.94 us (95.2%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1943.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.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 | 4.2564e+04 | 13440 | 1 | 3.158e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.986858082994264 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6335591566651538, dt = 0.0027037231046400604 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.01 us (1.4%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1013.00 ns (0.3%)
LB compute : 346.36 us (95.3%)
LB move op cnt : 0
LB apply : 3.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2102e+04 | 13440 | 1 | 3.192e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.490933111102645 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6362628797697939, dt = 0.0027203207446883752 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.57 us (1.3%)
patch tree reduce : 1362.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 336.88 us (95.0%)
LB move op cnt : 0
LB apply : 4.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1933.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.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 | 4.1906e+04 | 13440 | 1 | 3.207e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.53534403972376 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6389832005144823, dt = 0.0010167994855179163 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.65 us (1.2%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 376.68 us (95.8%)
LB move op cnt : 0
LB apply : 3.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.3382e+04 | 13440 | 1 | 3.098e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.815317578457682 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 292 [SPH][rank=0]
Info: time since start : 328.825772448 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1917.11 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1911.62 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1916.50 ms [sph::CartesianRender][rank=0]
---------------- t = 0.6400000000000002, dt = 0.002722060278647723 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.56 us (2.0%)
patch tree reduce : 1624.00 ns (0.3%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.2%)
LB compute : 462.41 us (95.3%)
LB move op cnt : 0
LB apply : 4.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (73.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.2059e+04 | 13440 | 1 | 3.196e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.665917991339366 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.642722060278648, dt = 0.0027218225267530228 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.05 us (1.0%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1363.00 ns (0.3%)
LB compute : 394.40 us (96.0%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2456e+04 | 13440 | 1 | 3.166e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.9531582754296 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.645443882805401, dt = 0.002717248152676945 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.09 us (0.7%)
patch tree reduce : 1002.00 ns (0.2%)
gen split merge : 782.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 661.00 ns (0.1%)
LB compute : 581.90 us (97.5%)
LB move op cnt : 0
LB apply : 3.06 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.1879e+04 | 13440 | 1 | 3.209e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.48116224078827 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6481611309580779, dt = 0.0027223462882698555 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (1.0%)
patch tree reduce : 992.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 651.00 ns (0.2%)
LB compute : 370.95 us (96.5%)
LB move op cnt : 0
LB apply : 2.88 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2552e+04 | 13440 | 1 | 3.159e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.02858899230451 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6508834772463478, dt = 0.00271149567916097 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.23 us (0.9%)
patch tree reduce : 1513.00 ns (0.3%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 751.00 ns (0.2%)
LB compute : 433.69 us (96.5%)
LB move op cnt : 0
LB apply : 3.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2081e+04 | 13440 | 1 | 3.194e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.563497895552285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6535949729255087, dt = 0.0027254357233772683 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.60 us (1.2%)
patch tree reduce : 1332.00 ns (0.3%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 374.62 us (95.9%)
LB move op cnt : 0
LB apply : 3.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (66.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2349e+04 | 13440 | 1 | 3.174e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.915977314067614 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.656320408648886, dt = 0.002737899134549009 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.00 us (1.1%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.3%)
LB compute : 345.19 us (96.0%)
LB move op cnt : 0
LB apply : 3.15 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1944.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.2323e+04 | 13440 | 1 | 3.176e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.03797414214408 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.659058307783435, dt = 0.0009416922165652597 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (0.9%)
patch tree reduce : 1392.00 ns (0.3%)
gen split merge : 752.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 530.59 us (97.0%)
LB move op cnt : 0
LB apply : 3.04 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2553e+04 | 13440 | 1 | 3.158e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.733529004062566 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 300 [SPH][rank=0]
Info: time since start : 338.3297094 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1916.36 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1917.74 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1915.10 ms [sph::CartesianRender][rank=0]
---------------- t = 0.6600000000000003, dt = 0.0027446110057810203 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.01 us (2.3%)
patch tree reduce : 1523.00 ns (0.3%)
gen split merge : 472.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 413.96 us (94.8%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (73.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.2637e+04 | 13440 | 1 | 3.152e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.345225555347447 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6627446110057813, dt = 0.002747657673758072 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.60 us (1.1%)
patch tree reduce : 1342.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 398.49 us (95.7%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2648e+04 | 13440 | 1 | 3.151e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.388277723566052 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6654922686795394, dt = 0.0027359517057194546 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.50 us (1.2%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 367.84 us (96.0%)
LB move op cnt : 0
LB apply : 3.29 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2875e+04 | 13440 | 1 | 3.135e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.420787462326988 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6682282203852589, dt = 0.0027378899982584493 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.62 us (1.3%)
patch tree reduce : 1382.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1372.00 ns (0.4%)
LB compute : 336.82 us (95.3%)
LB move op cnt : 0
LB apply : 3.18 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1954.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.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 | 4.2341e+04 | 13440 | 1 | 3.174e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.051271110507244 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6709661103835173, dt = 0.0027282787385919326 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.04 us (1.3%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 682.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 370.56 us (95.7%)
LB move op cnt : 0
LB apply : 3.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 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.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 | 4.2818e+04 | 13440 | 1 | 3.139e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.29092238176293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6736943891221092, dt = 0.0027303486050954465 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.28 us (1.1%)
patch tree reduce : 1282.00 ns (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 368.88 us (96.0%)
LB move op cnt : 0
LB apply : 3.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (65.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.2430e+04 | 13440 | 1 | 3.168e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.031036663605015 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6764247377272047, dt = 0.002726506885219223 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.46 us (1.2%)
patch tree reduce : 1132.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 368.50 us (95.9%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.3357e+04 | 13440 | 1 | 3.100e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.66420315995266 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6791512446124239, dt = 0.0008487553875763387 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.75 us (1.2%)
patch tree reduce : 1423.00 ns (0.4%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 701.00 ns (0.2%)
LB compute : 372.13 us (95.7%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1994.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.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 | 4.3127e+04 | 13440 | 1 | 3.116e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.80467125161958 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 308 [SPH][rank=0]
Info: time since start : 347.808440103 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1942.19 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1960.91 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1977.76 ms [sph::CartesianRender][rank=0]
---------------- t = 0.6800000000000003, dt = 0.0027379530484625287 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.93 us (2.1%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 445.37 us (93.9%)
LB move op cnt : 0
LB apply : 3.92 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (74.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0372e+04 | 13440 | 1 | 3.329e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.607751822711474 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6827379530484629, dt = 0.0027200812719815662 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.63 us (0.1%)
patch tree reduce : 1192.00 ns (0.0%)
gen split merge : 1112.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.0%)
LB compute : 3.35 ms (99.5%)
LB move op cnt : 0
LB apply : 3.52 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 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.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 | 4.1946e+04 | 13440 | 1 | 3.204e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.561230265780967 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6854580343204444, dt = 0.002727078017838692 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.25 us (0.1%)
patch tree reduce : 1112.00 ns (0.0%)
gen split merge : 671.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.0%)
LB compute : 3.90 ms (99.6%)
LB move op cnt : 0
LB apply : 3.02 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (11.7%)
Warning: High interface/patch volume ratio. [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 | 4.2218e+04 | 13440 | 1 | 3.184e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.83854595577962 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6881851123382831, dt = 0.0027342101924043042 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.62 us (0.1%)
patch tree reduce : 1002.00 ns (0.0%)
gen split merge : 711.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.0%)
LB compute : 7.59 ms (99.8%)
LB move op cnt : 0
LB apply : 3.24 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 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.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 | 4.0522e+04 | 13440 | 1 | 3.317e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.677082670408712 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6909193225306873, dt = 0.0027233235253716834 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.05 us (0.1%)
patch tree reduce : 1513.00 ns (0.0%)
gen split merge : 682.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.0%)
LB compute : 5.83 ms (99.7%)
LB move op cnt : 0
LB apply : 3.85 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2273e+04 | 13440 | 1 | 3.179e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.83619213292199 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.693642646056059, dt = 0.002713833152189568 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.89 us (0.5%)
patch tree reduce : 1463.00 ns (0.2%)
gen split merge : 651.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.1%)
LB compute : 714.74 us (98.0%)
LB move op cnt : 0
LB apply : 3.12 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2211e+04 | 13440 | 1 | 3.184e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.6841017707799 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6963564792082485, dt = 0.002718610169845697 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.27 us (0.2%)
patch tree reduce : 1112.00 ns (0.1%)
gen split merge : 681.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1362.00 ns (0.1%)
LB compute : 2.10 ms (99.3%)
LB move op cnt : 0
LB apply : 3.35 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (67.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2344e+04 | 13440 | 1 | 3.174e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.834915637678503 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6990750893780941, dt = 0.0009249106219061387 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.35 us (0.2%)
patch tree reduce : 1102.00 ns (0.0%)
gen split merge : 732.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.0%)
LB compute : 2.28 ms (99.3%)
LB move op cnt : 0
LB apply : 3.55 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (72.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2460e+04 | 13440 | 1 | 3.165e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.519225299192831 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 316 [SPH][rank=0]
Info: time since start : 357.623004976 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1921.62 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1926.05 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1967.70 ms [sph::CartesianRender][rank=0]
---------------- t = 0.7000000000000003, dt = 0.0027305945432045315 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.52 us (2.0%)
patch tree reduce : 1614.00 ns (0.3%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 448.83 us (95.2%)
LB move op cnt : 0
LB apply : 4.05 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (73.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.3299e+04 | 13440 | 1 | 3.104e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.669352924642034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7027305945432049, dt = 0.002731338651376989 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.11 us (1.0%)
patch tree reduce : 1042.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 393.51 us (96.2%)
LB move op cnt : 0
LB apply : 3.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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.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 | 4.3311e+04 | 13440 | 1 | 3.103e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.68678178925178 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7054619331945818, dt = 0.002718899820940013 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.40 us (1.2%)
patch tree reduce : 1022.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1253.00 ns (0.3%)
LB compute : 344.80 us (95.4%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (65.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2814e+04 | 13440 | 1 | 3.139e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.180182376842705 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7081808330155218, dt = 0.0026969549626084275 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (1.0%)
patch tree reduce : 1062.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 691.00 ns (0.2%)
LB compute : 380.91 us (96.1%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (66.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.3295e+04 | 13440 | 1 | 3.104e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.27623325433977 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7108777879781303, dt = 0.0027059108130421962 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (0.1%)
patch tree reduce : 962.00 ns (0.0%)
gen split merge : 742.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 651.00 ns (0.0%)
LB compute : 3.37 ms (99.6%)
LB move op cnt : 0
LB apply : 3.68 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1581e+04 | 13440 | 1 | 3.232e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.13789344159188 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7135836987911724, dt = 0.002703471538277942 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.34 us (1.1%)
patch tree reduce : 902.00 ns (0.2%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 662.00 ns (0.2%)
LB compute : 386.97 us (96.3%)
LB move op cnt : 0
LB apply : 3.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1993.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.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 | 4.0493e+04 | 13440 | 1 | 3.319e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.322409184703986 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7162871703294504, dt = 0.0027130881685007067 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.53 us (1.2%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 712.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 368.34 us (95.8%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1875e+04 | 13440 | 1 | 3.210e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.431422074299828 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7190002584979511, dt = 0.0009997415020491784 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (1.0%)
patch tree reduce : 931.00 ns (0.2%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.2%)
LB compute : 369.56 us (96.2%)
LB move op cnt : 0
LB apply : 3.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1874.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.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 | 4.3144e+04 | 13440 | 1 | 3.115e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.55332134530148 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 324 [SPH][rank=0]
Info: time since start : 367.206157753 (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 1982.09 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1986.21 ms [sph::CartesianRender][rank=0]
---------------- t = 0.7200000000000003, dt = 0.00269721980236839 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.28 us (2.2%)
patch tree reduce : 1313.00 ns (0.3%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 438.19 us (94.9%)
LB move op cnt : 0
LB apply : 4.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (73.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.0007e+04 | 13440 | 1 | 3.359e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.903975215281015 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7226972198023687, dt = 0.0027059654120638816 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.35 us (0.1%)
patch tree reduce : 1072.00 ns (0.0%)
gen split merge : 721.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 721.00 ns (0.0%)
LB compute : 3.88 ms (99.6%)
LB move op cnt : 0
LB apply : 3.69 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1751e+04 | 13440 | 1 | 3.219e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.26182342475613 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7254031852144326, dt = 0.0026976275022262347 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.76 us (0.1%)
patch tree reduce : 752.00 ns (0.0%)
gen split merge : 662.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.0%)
LB compute : 4.38 ms (99.7%)
LB move op cnt : 0
LB apply : 3.35 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1221e+04 | 13440 | 1 | 3.260e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.785218997193905 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7281008127166588, dt = 0.0027043841970114625 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.05 us (0.2%)
patch tree reduce : 1052.00 ns (0.0%)
gen split merge : 751.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.0%)
LB compute : 2.57 ms (99.4%)
LB move op cnt : 0
LB apply : 3.49 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1687e+04 | 13440 | 1 | 3.224e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.197594430855375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7308051969136703, dt = 0.00271530385333489 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.27 us (0.3%)
patch tree reduce : 792.00 ns (0.1%)
gen split merge : 791.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.1%)
LB compute : 1296.69 us (98.8%)
LB move op cnt : 0
LB apply : 3.41 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 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.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 | 4.1723e+04 | 13440 | 1 | 3.221e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.34584142551033 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7335205007670051, dt = 0.002713928994922592 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.63 us (0.1%)
patch tree reduce : 1091.00 ns (0.0%)
gen split merge : 592.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.0%)
LB compute : 4.76 ms (99.7%)
LB move op cnt : 0
LB apply : 3.19 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0571e+04 | 13440 | 1 | 3.313e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.492651130763317 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7362344297619278, dt = 0.0027078512809555404 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (0.8%)
patch tree reduce : 951.00 ns (0.2%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.2%)
LB compute : 399.17 us (96.5%)
LB move op cnt : 0
LB apply : 3.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.1572e+04 | 13440 | 1 | 3.233e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.1528944758472 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7389422810428833, dt = 0.0010577189571170376 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (0.1%)
patch tree reduce : 972.00 ns (0.0%)
gen split merge : 601.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 571.00 ns (0.0%)
LB compute : 7.80 ms (99.8%)
LB move op cnt : 0
LB apply : 3.25 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.1409e+04 | 13440 | 1 | 3.246e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.731854893696998 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 332 [SPH][rank=0]
Info: time since start : 377.011472685 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1966.72 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1936.29 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1930.27 ms [sph::CartesianRender][rank=0]
---------------- t = 0.7400000000000003, dt = 0.002715247347567795 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.72 us (2.0%)
patch tree reduce : 1543.00 ns (0.3%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 454.50 us (95.2%)
LB move op cnt : 0
LB apply : 4.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (75.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1742e+04 | 13440 | 1 | 3.220e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.358769741043286 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7427152473475681, dt = 0.0027198298917871194 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.64 us (1.2%)
patch tree reduce : 1413.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1033.00 ns (0.3%)
LB compute : 371.16 us (95.6%)
LB move op cnt : 0
LB apply : 3.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1914.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.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 | 4.1950e+04 | 13440 | 1 | 3.204e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.561660603373443 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7454350772393552, dt = 0.0027019972146421736 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.12 us (1.1%)
patch tree reduce : 1042.00 ns (0.3%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.2%)
LB compute : 364.38 us (96.2%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 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.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 | 4.2644e+04 | 13440 | 1 | 3.152e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.863811794697614 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7481370744539974, dt = 0.002721051581059155 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.70 us (1.1%)
patch tree reduce : 931.00 ns (0.3%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 336.92 us (96.0%)
LB move op cnt : 0
LB apply : 3.12 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2785e+04 | 13440 | 1 | 3.141e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.18386019689797 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7508581260350565, dt = 0.002714829400535794 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (1.1%)
patch tree reduce : 962.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 340.74 us (96.0%)
LB move op cnt : 0
LB apply : 3.03 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1974.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.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 | 4.2476e+04 | 13440 | 1 | 3.164e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.88831453625314 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7535729554355923, dt = 0.002724063875067531 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (1.1%)
patch tree reduce : 851.00 ns (0.2%)
gen split merge : 592.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 751.00 ns (0.2%)
LB compute : 331.59 us (96.3%)
LB move op cnt : 0
LB apply : 2.77 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1823.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.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.2528e+04 | 13440 | 1 | 3.160e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.031078724454204 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7562970193106598, dt = 0.0026821351100924516 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.11 us (0.2%)
patch tree reduce : 972.00 ns (0.0%)
gen split merge : 661.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1403.00 ns (0.1%)
LB compute : 2.25 ms (99.3%)
LB move op cnt : 0
LB apply : 3.51 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (86.8%)
Warning: High interface/patch volume ratio. [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 | 4.2134e+04 | 13440 | 1 | 3.190e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.2702199773558 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7589791544207523, dt = 0.0010208455792480864 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.17 us (1.1%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 368.90 us (96.0%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 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.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 | 4.2622e+04 | 13440 | 1 | 3.153e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.654504384139218 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 340 [SPH][rank=0]
Info: time since start : 386.738783859 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1931.73 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1930.34 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1927.44 ms [sph::CartesianRender][rank=0]
---------------- t = 0.7600000000000003, dt = 0.002694699973330651 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.96 us (2.0%)
patch tree reduce : 1263.00 ns (0.3%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 470.87 us (95.3%)
LB move op cnt : 0
LB apply : 4.30 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 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.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 | 4.2805e+04 | 13440 | 1 | 3.140e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.896395317289343 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.762694699973331, dt = 0.0026970728153278348 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.54 us (1.2%)
patch tree reduce : 942.00 ns (0.2%)
gen split merge : 1192.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 374.96 us (95.7%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (64.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.2743e+04 | 13440 | 1 | 3.144e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.878997523739958 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7653917727886588, dt = 0.0026903725207966162 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.35 us (1.1%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 378.36 us (95.8%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2942e+04 | 13440 | 1 | 3.130e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.9456667349316 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7680821453094554, dt = 0.002686949684520318 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.00 us (0.4%)
patch tree reduce : 1042.00 ns (0.1%)
gen split merge : 742.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.1%)
LB compute : 954.98 us (98.5%)
LB move op cnt : 0
LB apply : 3.04 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2443e+04 | 13440 | 1 | 3.167e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.547124858687123 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7707690949939757, dt = 0.0026871411026583173 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (1.1%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 1152.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 742.00 ns (0.2%)
LB compute : 342.27 us (95.9%)
LB move op cnt : 0
LB apply : 2.87 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2615e+04 | 13440 | 1 | 3.154e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.673179906141996 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.773456236096634, dt = 0.002716897760149905 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.20 us (1.2%)
patch tree reduce : 1001.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 651.00 ns (0.2%)
LB compute : 330.53 us (95.7%)
LB move op cnt : 0
LB apply : 3.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1954.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.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 | 4.1858e+04 | 13440 | 1 | 3.211e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.461967763625896 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.776173133856784, dt = 0.002715423131851626 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.25 us (1.0%)
patch tree reduce : 811.00 ns (0.2%)
gen split merge : 602.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.2%)
LB compute : 392.56 us (96.5%)
LB move op cnt : 0
LB apply : 3.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1852e+04 | 13440 | 1 | 3.211e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.440916718062933 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7788885569886356, dt = 0.0011114430113647877 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.09 us (1.2%)
patch tree reduce : 1293.00 ns (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 742.00 ns (0.2%)
LB compute : 338.59 us (95.9%)
LB move op cnt : 0
LB apply : 3.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1984.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.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 | 4.2566e+04 | 13440 | 1 | 3.157e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.67231226183895 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 348 [SPH][rank=0]
Info: time since start : 396.28470503100004 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1946.85 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1935.30 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1945.17 ms [sph::CartesianRender][rank=0]
---------------- t = 0.7800000000000004, dt = 0.0027162804753673637 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.87 us (2.3%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.2%)
LB compute : 411.45 us (94.8%)
LB move op cnt : 0
LB apply : 4.07 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.3042e+04 | 13440 | 1 | 3.123e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.316189752422968 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7827162804753677, dt = 0.0027129334523933284 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.50 us (1.2%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 360.60 us (95.6%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 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.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 | 4.2718e+04 | 13440 | 1 | 3.146e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.04196838182839 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.785429213927761, dt = 0.002718920640758932 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.06 us (1.0%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1323.00 ns (0.3%)
LB compute : 406.69 us (96.0%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2653e+04 | 13440 | 1 | 3.151e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.063176618196646 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.78814813456852, dt = 0.0027109948011855393 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (0.2%)
patch tree reduce : 912.00 ns (0.0%)
gen split merge : 762.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.0%)
LB compute : 2.24 ms (99.4%)
LB move op cnt : 0
LB apply : 3.51 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.2114e+04 | 13440 | 1 | 3.191e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.58176975792564 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7908591293697055, dt = 0.0027039894862640134 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.20 us (0.8%)
patch tree reduce : 1502.00 ns (0.3%)
gen split merge : 711.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 481.00 ns (0.1%)
LB compute : 518.10 us (97.1%)
LB move op cnt : 0
LB apply : 3.27 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1934.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.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 | 4.2476e+04 | 13440 | 1 | 3.164e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.76449054587591 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7935631188559695, dt = 0.0027387170902881354 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.50 us (1.2%)
patch tree reduce : 1363.00 ns (0.4%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 681.00 ns (0.2%)
LB compute : 353.93 us (95.7%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 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.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 | 4.2498e+04 | 13440 | 1 | 3.163e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.175580214139035 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7963018359462577, dt = 0.0027283579614330693 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.04 us (1.2%)
patch tree reduce : 1062.00 ns (0.3%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 671.00 ns (0.2%)
LB compute : 325.88 us (95.6%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2313e+04 | 13440 | 1 | 3.176e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.922773061627463 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7990301939076908, dt = 0.0009698060923095664 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.59 us (1.2%)
patch tree reduce : 1193.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 357.51 us (95.6%)
LB move op cnt : 0
LB apply : 3.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 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.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 | 4.2574e+04 | 13440 | 1 | 3.157e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.059436690501272 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 356 [SPH][rank=0]
Info: time since start : 405.86184584 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1923.85 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1922.37 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1922.98 ms [sph::CartesianRender][rank=0]
---------------- t = 0.8000000000000004, dt = 0.0027292889590070546 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.67 us (1.9%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 477.51 us (95.4%)
LB move op cnt : 0
LB apply : 4.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 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.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 | 4.2541e+04 | 13440 | 1 | 3.159e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.100254540696888 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8027292889590074, dt = 0.002715536355772136 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.36 us (1.2%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 732.00 ns (0.2%)
LB compute : 361.52 us (95.9%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2523e+04 | 13440 | 1 | 3.161e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.9300588301715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8054448253147796, dt = 0.002718889404795724 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.30 us (0.5%)
patch tree reduce : 1583.00 ns (0.2%)
gen split merge : 791.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.1%)
LB compute : 890.89 us (98.1%)
LB move op cnt : 0
LB apply : 3.85 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2560e+04 | 13440 | 1 | 3.158e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.995480326761353 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8081637147195753, dt = 0.0027301802443039313 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.28 us (1.0%)
patch tree reduce : 1011.00 ns (0.2%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 407.61 us (96.5%)
LB move op cnt : 0
LB apply : 3.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2099e+04 | 13440 | 1 | 3.192e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.78700150447331 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8108938949638792, dt = 0.00271263605208725 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.28 us (1.0%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 396.11 us (96.1%)
LB move op cnt : 0
LB apply : 3.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2306e+04 | 13440 | 1 | 3.177e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.739348530785247 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8136065310159665, dt = 0.0026991825690153093 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.63 us (1.1%)
patch tree reduce : 1142.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1343.00 ns (0.3%)
LB compute : 399.95 us (96.0%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (67.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2335e+04 | 13440 | 1 | 3.175e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.607736055631708 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8163057135849818, dt = 0.0027373223453135034 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.01 us (0.9%)
patch tree reduce : 1143.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 409.77 us (96.5%)
LB move op cnt : 0
LB apply : 3.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (65.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1278e+04 | 13440 | 1 | 3.256e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.265703541374606 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8190430359302954, dt = 0.0009569640697050241 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.24 us (0.2%)
patch tree reduce : 1172.00 ns (0.0%)
gen split merge : 731.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.0%)
LB compute : 2.74 ms (99.4%)
LB move op cnt : 0
LB apply : 3.50 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 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.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 | 4.1957e+04 | 13440 | 1 | 3.203e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.754918685969212 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 364 [SPH][rank=0]
Info: time since start : 415.52545857 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1932.72 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1925.16 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1934.51 ms [sph::CartesianRender][rank=0]
---------------- t = 0.8200000000000004, dt = 0.0027134960748494605 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.59 us (2.4%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 410.93 us (94.7%)
LB move op cnt : 0
LB apply : 4.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2970e+04 | 13440 | 1 | 3.128e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.231691269595178 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8227134960748499, dt = 0.002698201696714125 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.51 us (1.3%)
patch tree reduce : 1233.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 337.88 us (95.4%)
LB move op cnt : 0
LB apply : 3.19 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1854.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.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 | 4.2477e+04 | 13440 | 1 | 3.164e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.699660199340116 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.825411697771564, dt = 0.0027236456479483627 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.2%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 387.35 us (95.8%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1844.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.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 | 4.1844e+04 | 13440 | 1 | 3.212e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.527060696295976 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8281353434195123, dt = 0.0027203654043325685 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.28 us (1.1%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 369.81 us (95.8%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0885e+04 | 13440 | 1 | 3.287e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.791434266606615 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8308557088238449, dt = 0.002721376845198544 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.67 us (5.1%)
patch tree reduce : 1223.00 ns (0.3%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 387.49 us (91.9%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (65.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2100e+04 | 13440 | 1 | 3.192e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.68831566267977 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8335770856690434, dt = 0.0027261935811478994 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.03 us (0.9%)
patch tree reduce : 851.00 ns (0.2%)
gen split merge : 601.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 631.00 ns (0.1%)
LB compute : 429.51 us (96.7%)
LB move op cnt : 0
LB apply : 3.65 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1473e+04 | 13440 | 1 | 3.241e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.28515671189552 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8363032792501913, dt = 0.002731310452708893 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.15 us (1.1%)
patch tree reduce : 862.00 ns (0.2%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 550.00 ns (0.2%)
LB compute : 348.34 us (96.1%)
LB move op cnt : 0
LB apply : 3.24 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2326e+04 | 13440 | 1 | 3.175e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.96538156963588 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8390345897029002, dt = 0.0009654102971001777 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (1.2%)
patch tree reduce : 902.00 ns (0.3%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 631.00 ns (0.2%)
LB compute : 325.70 us (96.2%)
LB move op cnt : 0
LB apply : 2.83 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1884.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.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.3250e+04 | 13440 | 1 | 3.107e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.184231832575458 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 372 [SPH][rank=0]
Info: time since start : 425.10044327400004 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1935.43 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1939.32 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1931.87 ms [sph::CartesianRender][rank=0]
---------------- t = 0.8400000000000004, dt = 0.0026854321316563904 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 27.27 us (5.8%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 426.68 us (91.5%)
LB move op cnt : 0
LB apply : 4.05 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.0276e+04 | 13440 | 1 | 3.337e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.970795496522605 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8426854321316568, dt = 0.002691116873252197 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.00 us (1.2%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.3%)
LB compute : 385.05 us (95.7%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1923.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.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 | 4.2249e+04 | 13440 | 1 | 3.181e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.454482362904628 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.845376549004909, dt = 0.002692094333835838 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.51 us (1.1%)
patch tree reduce : 922.00 ns (0.2%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 651.00 ns (0.2%)
LB compute : 391.10 us (96.2%)
LB move op cnt : 0
LB apply : 3.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (66.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2639e+04 | 13440 | 1 | 3.152e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.746808327807027 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8480686433387449, dt = 0.002682865210907082 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.05 us (0.2%)
patch tree reduce : 1113.00 ns (0.0%)
gen split merge : 781.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.0%)
LB compute : 3.20 ms (99.5%)
LB move op cnt : 0
LB apply : 3.53 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1078e+04 | 13440 | 1 | 3.272e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.519492871962473 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.850751508549652, dt = 0.0026945524823044306 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.86 us (0.1%)
patch tree reduce : 1152.00 ns (0.0%)
gen split merge : 762.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.0%)
LB compute : 5.04 ms (99.7%)
LB move op cnt : 0
LB apply : 3.60 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 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.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.1281e+04 | 13440 | 1 | 3.256e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.794543732337825 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8534460610319564, dt = 0.0027088784639396003 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.63 us (0.1%)
patch tree reduce : 1232.00 ns (0.0%)
gen split merge : 621.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.0%)
LB compute : 4.75 ms (99.7%)
LB move op cnt : 0
LB apply : 3.33 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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.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.1352e+04 | 13440 | 1 | 3.250e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.00477179913307 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.856154939495896, dt = 0.002718096301613522 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.65 us (0.2%)
patch tree reduce : 1153.00 ns (0.0%)
gen split merge : 761.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.0%)
LB compute : 2.55 ms (99.3%)
LB move op cnt : 0
LB apply : 3.50 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.1217e+04 | 13440 | 1 | 3.261e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.00816677821302 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8588730357975096, dt = 0.00112696420249081 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.70 us (0.1%)
patch tree reduce : 1453.00 ns (0.0%)
gen split merge : 841.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.0%)
LB compute : 5.53 ms (99.7%)
LB move op cnt : 0
LB apply : 3.61 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 3.9718e+04 | 13440 | 1 | 3.384e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.989363268808143 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 380 [SPH][rank=0]
Info: time since start : 434.744043464 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1987.22 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 1976.95 ms [sph::CartesianRender][rank=0]
---------------- t = 0.8600000000000004, dt = 0.0027010288168703204 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.49 us (2.4%)
patch tree reduce : 1293.00 ns (0.3%)
gen split merge : 480.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.3%)
LB compute : 411.96 us (94.5%)
LB move op cnt : 0
LB apply : 4.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0768e+04 | 13440 | 1 | 3.297e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.4953241198784 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8627010288168707, dt = 0.00268243474850154 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.61 us (0.1%)
patch tree reduce : 1213.00 ns (0.0%)
gen split merge : 751.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.0%)
LB compute : 6.83 ms (99.8%)
LB move op cnt : 0
LB apply : 3.54 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0433e+04 | 13440 | 1 | 3.324e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.051220101069184 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8653834635653722, dt = 0.002667914086971588 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.49 us (0.2%)
patch tree reduce : 1243.00 ns (0.0%)
gen split merge : 741.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.0%)
LB compute : 2.81 ms (99.4%)
LB move op cnt : 0
LB apply : 4.03 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1974.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.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 | 4.0310e+04 | 13440 | 1 | 3.334e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.806340870353623 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8680513776523437, dt = 0.002723357500181851 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.41 us (0.1%)
patch tree reduce : 1403.00 ns (0.0%)
gen split merge : 1042.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.0%)
LB compute : 8.27 ms (99.8%)
LB move op cnt : 0
LB apply : 3.91 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1610e+04 | 13440 | 1 | 3.230e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.353152547243155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8707747351525256, dt = 0.002671770368655716 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.10 us (0.1%)
patch tree reduce : 1253.00 ns (0.0%)
gen split merge : 831.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1013.00 ns (0.0%)
LB compute : 3.82 ms (99.6%)
LB move op cnt : 0
LB apply : 3.25 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 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.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 | 4.0012e+04 | 13440 | 1 | 3.359e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.6347053393468 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8734465055211813, dt = 0.0026966269685835026 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.82 us (0.9%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 392.40 us (96.4%)
LB move op cnt : 0
LB apply : 2.87 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1953.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.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 | 4.0005e+04 | 13440 | 1 | 3.360e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.89610625576337 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8761431324897648, dt = 0.0026991586947248073 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.49 us (0.1%)
patch tree reduce : 861.00 ns (0.0%)
gen split merge : 752.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.0%)
LB compute : 5.01 ms (99.7%)
LB move op cnt : 0
LB apply : 3.18 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1015e+04 | 13440 | 1 | 3.277e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.653390154393257 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8788422911844896, dt = 0.001157708815510805 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.01 us (0.1%)
patch tree reduce : 1433.00 ns (0.0%)
gen split merge : 881.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.0%)
LB compute : 5.22 ms (99.7%)
LB move op cnt : 0
LB apply : 3.94 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1711e+04 | 13440 | 1 | 3.222e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.934563237274135 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 388 [SPH][rank=0]
Info: time since start : 444.73845558200003 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1990.32 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1984.24 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1967.82 ms [sph::CartesianRender][rank=0]
---------------- t = 0.8800000000000004, dt = 0.0026819984042483263 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.31 us (2.2%)
patch tree reduce : 1533.00 ns (0.3%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 439.02 us (94.9%)
LB move op cnt : 0
LB apply : 4.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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.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.2875e+04 | 13440 | 1 | 3.135e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.800769425364056 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8826819984042488, dt = 0.002673156069484836 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.38 us (1.1%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 370.10 us (95.9%)
LB move op cnt : 0
LB apply : 3.29 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1984.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.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 | 4.2322e+04 | 13440 | 1 | 3.176e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.303396157919494 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8853551544737336, dt = 0.0027063739520596162 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (0.1%)
patch tree reduce : 1042.00 ns (0.0%)
gen split merge : 782.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 642.00 ns (0.0%)
LB compute : 2.83 ms (99.5%)
LB move op cnt : 0
LB apply : 3.55 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1381e+04 | 13440 | 1 | 3.248e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.997857825892584 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8880615284257932, dt = 0.002688178227733337 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.64 us (1.2%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 379.60 us (95.7%)
LB move op cnt : 0
LB apply : 3.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (65.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0213e+04 | 13440 | 1 | 3.342e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.95534117810843 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8907497066535266, dt = 0.0027047789226962997 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.04 us (1.0%)
patch tree reduce : 1332.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 400.17 us (96.3%)
LB move op cnt : 0
LB apply : 3.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1964.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.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 | 4.2013e+04 | 13440 | 1 | 3.199e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.438340208960305 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8934544855762229, dt = 0.0026954550150664293 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.89 us (1.1%)
patch tree reduce : 1062.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 324.31 us (95.7%)
LB move op cnt : 0
LB apply : 3.05 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1904.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.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.2237e+04 | 13440 | 1 | 3.182e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.494909051273883 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8961499405912893, dt = 0.0026863483021003155 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.10 us (0.2%)
patch tree reduce : 1012.00 ns (0.0%)
gen split merge : 751.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1013.00 ns (0.0%)
LB compute : 2.17 ms (99.3%)
LB move op cnt : 0
LB apply : 3.37 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.2196e+04 | 13440 | 1 | 3.185e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.362106437292788 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8988362888933896, dt = 0.001163711106610843 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.27 us (1.2%)
patch tree reduce : 732.00 ns (0.2%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.4%)
LB compute : 331.95 us (95.7%)
LB move op cnt : 0
LB apply : 3.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (64.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2759e+04 | 13440 | 1 | 3.143e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.328254621277084 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 396 [SPH][rank=0]
Info: time since start : 454.48389857 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1968.30 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1945.71 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1973.80 ms [sph::CartesianRender][rank=0]
---------------- t = 0.9000000000000005, dt = 0.00267742896808829 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.20 us (2.1%)
patch tree reduce : 1563.00 ns (0.3%)
gen split merge : 470.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.2%)
LB compute : 457.89 us (95.2%)
LB move op cnt : 0
LB apply : 4.21 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.3196e+04 | 13440 | 1 | 3.111e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.978461443954526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9026774289680888, dt = 0.002672491796199398 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.26 us (1.1%)
patch tree reduce : 1012.00 ns (0.3%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 370.09 us (96.0%)
LB move op cnt : 0
LB apply : 3.02 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (64.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2841e+04 | 13440 | 1 | 3.137e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.66788641453991 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9053499207642882, dt = 0.0026900124241959456 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.07 us (1.2%)
patch tree reduce : 671.00 ns (0.2%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 320.18 us (95.8%)
LB move op cnt : 0
LB apply : 2.65 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1914.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.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 | 4.2801e+04 | 13440 | 1 | 3.140e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.839956824977683 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9080399331884842, dt = 0.002661362262510422 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.10 us (1.1%)
patch tree reduce : 972.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.2%)
LB compute : 354.74 us (96.0%)
LB move op cnt : 0
LB apply : 3.00 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (87.1%)
Warning: High interface/patch volume ratio. [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 | 4.3022e+04 | 13440 | 1 | 3.124e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.668967602879647 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9107012954509947, dt = 0.0026376198841102007 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.18 us (1.1%)
patch tree reduce : 811.00 ns (0.2%)
gen split merge : 612.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 471.00 ns (0.1%)
LB compute : 368.26 us (96.4%)
LB move op cnt : 0
LB apply : 3.29 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 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.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 | 4.3086e+04 | 13440 | 1 | 3.119e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.44035244510025 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9133389153351048, dt = 0.0026185861005046333 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.87 us (1.4%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 334.10 us (95.0%)
LB move op cnt : 0
LB apply : 3.26 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1944.00 ns (61.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1904e+04 | 13440 | 1 | 3.207e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.39143876366249 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9159575014356094, dt = 0.0026881354068596123 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.21 us (1.1%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 378.94 us (96.0%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1894.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.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 | 4.2263e+04 | 13440 | 1 | 3.180e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.431047606372047 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.918645636842469, dt = 0.0013543631575314574 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.14 us (1.1%)
patch tree reduce : 691.00 ns (0.2%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.2%)
LB compute : 356.16 us (96.3%)
LB move op cnt : 0
LB apply : 3.04 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2771e+04 | 13440 | 1 | 3.142e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.516207954593614 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 404 [SPH][rank=0]
Info: time since start : 464.126500507 (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 2.00 s [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1990.25 ms [sph::CartesianRender][rank=0]
---------------- t = 0.9200000000000005, dt = 0.0026734000504259636 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.67 us (1.9%)
patch tree reduce : 1453.00 ns (0.3%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 483.27 us (95.4%)
LB move op cnt : 0
LB apply : 4.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (75.9%)
Warning: High interface/patch volume ratio. [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 | 3.9816e+04 | 13440 | 1 | 3.375e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.51210578878346 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9226734000504264, dt = 0.0026820437151953724 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.47 us (0.7%)
patch tree reduce : 1112.00 ns (0.2%)
gen split merge : 792.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.1%)
LB compute : 596.13 us (97.3%)
LB move op cnt : 0
LB apply : 3.23 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0727e+04 | 13440 | 1 | 3.300e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.258521196172623 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9253554437656218, dt = 0.0026714684851302023 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.76 us (1.1%)
patch tree reduce : 1092.00 ns (0.2%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 430.75 us (96.5%)
LB move op cnt : 0
LB apply : 2.88 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1963.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.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 | 4.0295e+04 | 13440 | 1 | 3.335e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.834275805997066 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9280269122507521, dt = 0.002664359132673927 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.48 us (0.4%)
patch tree reduce : 1412.00 ns (0.1%)
gen split merge : 711.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.1%)
LB compute : 1049.32 us (98.5%)
LB move op cnt : 0
LB apply : 3.06 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1122e+04 | 13440 | 1 | 3.268e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.347415330963027 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.930691271383426, dt = 0.0026527935255396505 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.22 us (0.2%)
patch tree reduce : 1272.00 ns (0.1%)
gen split merge : 691.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.0%)
LB compute : 2.26 ms (99.3%)
LB move op cnt : 0
LB apply : 3.22 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0509e+04 | 13440 | 1 | 3.318e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.784516625966933 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9333440649089656, dt = 0.002646290398203003 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.03 us (0.1%)
patch tree reduce : 1393.00 ns (0.0%)
gen split merge : 701.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 752.00 ns (0.0%)
LB compute : 4.22 ms (99.6%)
LB move op cnt : 0
LB apply : 3.06 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (11.7%)
Warning: High interface/patch volume ratio. [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 | 4.0914e+04 | 13440 | 1 | 3.285e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.001144839073717 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9359903553071686, dt = 0.0026445962409340456 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.70 us (0.1%)
patch tree reduce : 1293.00 ns (0.0%)
gen split merge : 751.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.0%)
LB compute : 5.70 ms (99.7%)
LB move op cnt : 0
LB apply : 4.02 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (63.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1780e+04 | 13440 | 1 | 3.217e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.595935331589956 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9386349515481026, dt = 0.0013650484518978878 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.89 us (0.1%)
patch tree reduce : 962.00 ns (0.0%)
gen split merge : 671.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1193.00 ns (0.0%)
LB compute : 6.76 ms (99.8%)
LB move op cnt : 0
LB apply : 3.47 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0698e+04 | 13440 | 1 | 3.302e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.88055415503664 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 412 [SPH][rank=0]
Info: time since start : 474.02145009500003 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1983.38 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1982.86 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1973.05 ms [sph::CartesianRender][rank=0]
---------------- t = 0.9400000000000005, dt = 0.0027040786173096144 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.91 us (2.2%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 425.05 us (95.0%)
LB move op cnt : 0
LB apply : 4.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2432e+04 | 13440 | 1 | 3.167e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.73391047544724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9427040786173101, dt = 0.002693868024892852 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.38 us (1.2%)
patch tree reduce : 1032.00 ns (0.3%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 357.80 us (95.8%)
LB move op cnt : 0
LB apply : 3.29 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2730e+04 | 13440 | 1 | 3.145e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.832882567006163 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9453979466422029, dt = 0.0026969341399963637 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.31 us (0.2%)
patch tree reduce : 1112.00 ns (0.0%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.0%)
LB compute : 2.41 ms (99.4%)
LB move op cnt : 0
LB apply : 2.90 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1636e+04 | 13440 | 1 | 3.228e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.0774846672765 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9480948807821993, dt = 0.0027237860091620567 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.56 us (0.1%)
patch tree reduce : 1202.00 ns (0.0%)
gen split merge : 802.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1313.00 ns (0.0%)
LB compute : 5.11 ms (99.7%)
LB move op cnt : 0
LB apply : 3.52 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 3.7363e+04 | 13440 | 1 | 3.597e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.259443513228927 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9508186667913613, dt = 0.0027023577248523048 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.36 us (1.0%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 403.59 us (96.2%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1547e+04 | 13440 | 1 | 3.235e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.073904458371256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9535210245162136, dt = 0.0026839824458098393 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (0.2%)
patch tree reduce : 932.00 ns (0.1%)
gen split merge : 761.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.0%)
LB compute : 1644.26 us (99.1%)
LB move op cnt : 0
LB apply : 3.13 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (66.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0609e+04 | 13440 | 1 | 3.310e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.194551474137103 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9562050069620234, dt = 0.002726341128091294 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (0.0%)
patch tree reduce : 1173.00 ns (0.0%)
gen split merge : 801.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 762.00 ns (0.0%)
LB compute : 8.96 ms (99.8%)
LB move op cnt : 0
LB apply : 3.17 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2050e+04 | 13440 | 1 | 3.196e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.707868154832394 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9589313480901147, dt = 0.0010686519098858094 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.12 us (0.1%)
patch tree reduce : 1343.00 ns (0.0%)
gen split merge : 821.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.0%)
LB compute : 5.26 ms (99.7%)
LB move op cnt : 0
LB apply : 3.35 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (66.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1638e+04 | 13440 | 1 | 3.228e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.918648301251038 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 420 [SPH][rank=0]
Info: time since start : 483.97172466600006 (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 2.00 s [sph::CartesianRender][rank=0]
---------------- t = 0.9600000000000005, dt = 0.0026888614622544425 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.74 us (2.2%)
patch tree reduce : 1273.00 ns (0.3%)
gen split merge : 721.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 465.77 us (95.0%)
LB move op cnt : 0
LB apply : 4.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (72.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2400e+04 | 13440 | 1 | 3.170e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.537810250528764 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.962688861462255, dt = 0.0026639390249552815 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.56 us (1.2%)
patch tree reduce : 1393.00 ns (0.4%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1373.00 ns (0.4%)
LB compute : 374.04 us (95.7%)
LB move op cnt : 0
LB apply : 3.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1884.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.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 | 4.2549e+04 | 13440 | 1 | 3.159e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.361024184766325 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9653528004872103, dt = 0.0026413878167017347 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.43 us (0.6%)
patch tree reduce : 992.00 ns (0.1%)
gen split merge : 791.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.1%)
LB compute : 751.08 us (97.9%)
LB move op cnt : 0
LB apply : 3.12 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0964e+04 | 13440 | 1 | 3.281e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.982617189384925 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.967994188303912, dt = 0.0026208979122514554 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.03 us (0.1%)
patch tree reduce : 1423.00 ns (0.0%)
gen split merge : 861.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.0%)
LB compute : 6.40 ms (99.7%)
LB move op cnt : 0
LB apply : 3.56 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 3.7542e+04 | 13440 | 1 | 3.580e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.35561289424379 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9706150862161635, dt = 0.002602521046410193 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.64 us (0.1%)
patch tree reduce : 1273.00 ns (0.0%)
gen split merge : 771.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1123.00 ns (0.0%)
LB compute : 3.11 ms (99.4%)
LB move op cnt : 0
LB apply : 3.60 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1699e+04 | 13440 | 1 | 3.223e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.068746225523924 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9732176072625738, dt = 0.002586307716598754 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.28 us (1.1%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 761.00 ns (0.2%)
LB compute : 385.80 us (96.0%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 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.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 | 4.1884e+04 | 13440 | 1 | 3.209e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.015744160037535 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9758039149791725, dt = 0.0026645612895063128 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.55 us (0.2%)
patch tree reduce : 1413.00 ns (0.0%)
gen split merge : 731.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.0%)
LB compute : 2.83 ms (99.4%)
LB move op cnt : 0
LB apply : 3.57 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.1983e+04 | 13440 | 1 | 3.201e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.963833353073728 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9784684762686788, dt = 0.0015315237313217045 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.53 us (0.1%)
patch tree reduce : 1453.00 ns (0.0%)
gen split merge : 742.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.0%)
LB compute : 6.84 ms (99.8%)
LB move op cnt : 0
LB apply : 3.33 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.0867e+04 | 13440 | 1 | 3.289e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.764748736613548 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 428 [SPH][rank=0]
Info: time since start : 493.859751872 (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 1999.07 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 2.01 s [sph::CartesianRender][rank=0]
---------------- t = 0.9800000000000005, dt = 0.0026474668242792276 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.76 us (2.1%)
patch tree reduce : 1342.00 ns (0.3%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 437.65 us (95.2%)
LB move op cnt : 0
LB apply : 4.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.3153e+04 | 13440 | 1 | 3.115e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.601331001536476 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9826474668242797, dt = 0.0026395000554499675 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.17 us (1.1%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.2%)
LB compute : 349.49 us (95.7%)
LB move op cnt : 0
LB apply : 3.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1984.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.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 | 4.3082e+04 | 13440 | 1 | 3.120e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.459044803643803 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9852869668797297, dt = 0.0026367272971855008 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.24 us (1.1%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 386.26 us (95.8%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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.3201e+04 | 13440 | 1 | 3.111e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.511291593819134 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9879236941769152, dt = 0.002723007628674846 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.27 us (0.8%)
patch tree reduce : 881.00 ns (0.2%)
gen split merge : 751.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 531.85 us (97.0%)
LB move op cnt : 0
LB apply : 3.84 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (64.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2931e+04 | 13440 | 1 | 3.131e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.31298151297792 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.99064670180559, dt = 0.0027125048451086963 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (0.6%)
patch tree reduce : 1172.00 ns (0.1%)
gen split merge : 852.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.1%)
LB compute : 874.72 us (97.9%)
LB move op cnt : 0
LB apply : 3.64 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (65.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2951e+04 | 13440 | 1 | 3.129e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.206353941033033 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9933592066506987, dt = 0.0027435418678436376 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 : 1533.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 347.31 us (95.1%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.2654e+04 | 13440 | 1 | 3.151e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.345435603273113 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9961027485185423, dt = 0.002736105258684978 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.3%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 407.12 us (95.7%)
LB move op cnt : 0
LB apply : 3.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (65.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.3420e+04 | 13440 | 1 | 3.095e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.82168401534505 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9988388537772273, dt = 0.0011611462227731906 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.55 us (1.0%)
patch tree reduce : 1483.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 420.45 us (96.0%)
LB move op cnt : 0
LB apply : 3.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 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 | 4.3224e+04 | 13440 | 1 | 3.109e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.443571408385731 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 436 [SPH][rank=0]
Info: time since start : 503.63139295400003 (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 2.00 s [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: (9 minutes 6.201 seconds)
Estimated memory usage: 857 MB